diff --git a/libretroshare/src/retroshare/rsstatus.h b/libretroshare/src/retroshare/rsstatus.h index c87f19935..1ab703e52 100644 --- a/libretroshare/src/retroshare/rsstatus.h +++ b/libretroshare/src/retroshare/rsstatus.h @@ -36,12 +36,14 @@ extern RsStatus *rsStatus; #include -const uint32_t RS_STATUS_OFFLINE = 0x0000; -const uint32_t RS_STATUS_AWAY = 0x0001; -const uint32_t RS_STATUS_BUSY = 0x0002; -const uint32_t RS_STATUS_ONLINE = 0x0003; +const uint32_t RS_STATUS_OFFLINE = 0x0000; +const uint32_t RS_STATUS_AWAY = 0x0001; +const uint32_t RS_STATUS_BUSY = 0x0002; +const uint32_t RS_STATUS_ONLINE = 0x0003; const uint32_t RS_STATUS_INACTIVE = 0x0004; +const uint32_t RS_STATUS_COUNT = 0x0005; // count of status + //! data object for peer status information /*! * data object used for peer status information @@ -95,14 +97,6 @@ class RsStatus * @return will return false if status info does not belong to client */ virtual bool sendStatus(std::string id, uint32_t status) = 0; - - /** - * translates the status field of a peer to a string - * @status the status id that needs to be translated - * @statusString the string translation is passed here - */ - virtual void getStatusString(uint32_t status, std::string& statusString) = 0; - }; diff --git a/libretroshare/src/rsserver/p3status.cc b/libretroshare/src/rsserver/p3status.cc index 3c7c27d42..150854c2c 100644 --- a/libretroshare/src/rsserver/p3status.cc +++ b/libretroshare/src/rsserver/p3status.cc @@ -56,26 +56,3 @@ bool p3Status::sendStatus(std::string id, uint32_t status){ return mStatusSrv->sendStatus(id, status); } - -void p3Status::getStatusString(uint32_t status, std::string& statusString){ - - switch (status) { - case RS_STATUS_OFFLINE: - statusString = "Offline"; - break; - case RS_STATUS_AWAY: - statusString = "Away"; - break; - case RS_STATUS_BUSY: - statusString = "Busy"; - break; - case RS_STATUS_ONLINE: - statusString = "Online"; - break; - case RS_STATUS_INACTIVE: - statusString = "Inactive"; - break; - default: - statusString.erase(); - } -} diff --git a/libretroshare/src/rsserver/p3status.h b/libretroshare/src/rsserver/p3status.h index 346ce7bce..3a65e44a4 100644 --- a/libretroshare/src/rsserver/p3status.h +++ b/libretroshare/src/rsserver/p3status.h @@ -48,8 +48,6 @@ public: virtual bool getStatus(std::string &id, StatusInfo &statusInfo); virtual bool sendStatus(std::string id, uint32_t status); - virtual void getStatusString(uint32_t status, std::string& statusString); - private: p3StatusService* mStatusSrv; diff --git a/retroshare-gui/src/RetroShare.pro b/retroshare-gui/src/RetroShare.pro index afe91381b..6b230754b 100644 --- a/retroshare-gui/src/RetroShare.pro +++ b/retroshare-gui/src/RetroShare.pro @@ -278,6 +278,7 @@ HEADERS += rshare.h \ gui/common/vmessagebox.h \ gui/common/rwindow.h \ gui/common/html.h \ + gui/common/StatusDefs.h \ gui/MessagesDialog.h \ gui/help/browser/helpbrowser.h \ gui/help/browser/helptextbrowser.h \ @@ -467,6 +468,7 @@ SOURCES += main.cpp \ gui/common/vmessagebox.cpp \ gui/common/rwindow.cpp \ gui/common/html.cpp \ + gui/common/StatusDefs.cpp \ gui/settings/rsharesettings.cpp \ gui/settings/RsharePeerSettings.cpp \ gui/settings/rsettings.cpp \ @@ -651,6 +653,7 @@ minimal { gui/settings/rsettings.cpp \ gui/settings/rsharesettings.cpp \ gui/common/rwindow.cpp \ + gui/common/StatusDefs.cpp \ gui/LogoBar.cpp \ gui/RsAutoUpdatePage.cpp \ gui/common/vmessagebox.cpp \ @@ -681,6 +684,7 @@ minimal { gui/settings/rsettings.h \ gui/settings/rsharesettings.h \ gui/common/rwindow.h \ + gui/common/StatusDefs.h \ gui/LogoBar.h \ gui/RsAutoUpdatePage.h \ gui/common/vmessagebox.h \ diff --git a/retroshare-gui/src/gui/MainWindow.cpp b/retroshare-gui/src/gui/MainWindow.cpp index db05798dc..06c300d92 100644 --- a/retroshare-gui/src/gui/MainWindow.cpp +++ b/retroshare-gui/src/gui/MainWindow.cpp @@ -74,6 +74,7 @@ #include "util/rsversion.h" #include "settings/rsettingswin.h" #include "settings/rsharesettings.h" +#include "common/StatusDefs.h" #include #include @@ -1004,22 +1005,19 @@ void MainWindow::initializeStatusObject(QObject *pObject, bool bConnect) /* initialize menu */ QActionGroup *pGroup = new QActionGroup(pMenu); - rsStatus->getStatusString(RS_STATUS_ONLINE, statusString); - QAction *pAction = new QAction(QIcon(":/images/im-user.png"), tr(statusString.c_str()), pMenu); + QAction *pAction = new QAction(QIcon(StatusDefs::imageIM(RS_STATUS_ONLINE)), StatusDefs::name(RS_STATUS_ONLINE), pMenu); pAction->setData(RS_STATUS_ONLINE); pAction->setCheckable(true); pMenu->addAction(pAction); pGroup->addAction(pAction); - rsStatus->getStatusString(RS_STATUS_BUSY, statusString); - pAction = new QAction(QIcon(":/images/im-user-busy.png"), tr(statusString.c_str()), pMenu); + pAction = new QAction(QIcon(StatusDefs::imageIM(RS_STATUS_BUSY)), StatusDefs::name(RS_STATUS_BUSY), pMenu); pAction->setData(RS_STATUS_BUSY); pAction->setCheckable(true); pMenu->addAction(pAction); pGroup->addAction(pAction); - rsStatus->getStatusString(RS_STATUS_AWAY, statusString); - pAction = new QAction(QIcon(":/images/im-user-away.png"), tr(statusString.c_str()), pMenu); + pAction = new QAction(QIcon(StatusDefs::imageIM(RS_STATUS_AWAY)), StatusDefs::name(RS_STATUS_AWAY), pMenu); pAction->setData(RS_STATUS_AWAY); pAction->setCheckable(true); pMenu->addAction(pAction); @@ -1032,12 +1030,9 @@ void MainWindow::initializeStatusObject(QObject *pObject, bool bConnect) /* initialize combobox */ QComboBox *pComboBox = dynamic_cast(pObject); if (pComboBox) { - rsStatus->getStatusString(RS_STATUS_ONLINE, statusString); - pComboBox->addItem(QIcon(":/images/im-user.png"), tr(statusString.c_str()), RS_STATUS_ONLINE); - rsStatus->getStatusString(RS_STATUS_BUSY, statusString); - pComboBox->addItem(QIcon(":/images/im-user-busy.png"), tr(statusString.c_str()), RS_STATUS_BUSY); - rsStatus->getStatusString(RS_STATUS_AWAY, statusString); - pComboBox->addItem(QIcon(":/images/im-user-away.png"), tr(statusString.c_str()), RS_STATUS_AWAY); + pComboBox->addItem(QIcon(StatusDefs::imageIM(RS_STATUS_ONLINE)), StatusDefs::name(RS_STATUS_ONLINE), RS_STATUS_ONLINE); + pComboBox->addItem(QIcon(StatusDefs::imageIM(RS_STATUS_BUSY)), StatusDefs::name(RS_STATUS_BUSY), RS_STATUS_BUSY); + pComboBox->addItem(QIcon(StatusDefs::imageIM(RS_STATUS_AWAY)), StatusDefs::name(RS_STATUS_AWAY), RS_STATUS_AWAY); if (bConnect) { connect(pComboBox, SIGNAL(activated(int)), this, SLOT(statusChangedComboBox(int))); diff --git a/retroshare-gui/src/gui/MessengerWindow.cpp b/retroshare-gui/src/gui/MessengerWindow.cpp index cd5d8a692..815fbc746 100644 --- a/retroshare-gui/src/gui/MessengerWindow.cpp +++ b/retroshare-gui/src/gui/MessengerWindow.cpp @@ -25,6 +25,7 @@ #include #include #include "common/vmessagebox.h" +#include "common/StatusDefs.h" #include #include @@ -69,13 +70,6 @@ #define IMAGE_CONNECT2 ":/images/reload24.png" #define IMAGE_PASTELINK ":/images/pasterslink.png" -/* Images for Status icons */ -#define IMAGE_ONLINE ":/images/im-user.png" -#define IMAGE_OFFLINE ":/images/im-user-offline.png" -#define IMAGE_AWAY ":/images/im-user-away.png" -#define IMAGE_BUSY ":/images/im-user-busy.png" -#define IMAGE_INACTIVE ":/images/im-user-inactive.png" - #define COLUMN_COUNT 3 #define COLUMN_NAME 0 #define COLUMN_STATE 1 @@ -225,7 +219,7 @@ MessengerWindow::MessengerWindow(QWidget* parent, Qt::WFlags flags) std::string ownId = rsPeers->getOwnId(); if (rsPeers->getPeerDetails(ownId, pd)) { /* calculate only once */ - m_nickName = QString::fromStdString(pd.name) + tr(" - ") + QString::fromStdString(pd.location); + m_nickName = QString::fromStdString(pd.name) + " - " + QString::fromStdString(pd.location); #ifdef MINIMAL_RSGUI ui.statusButton->setText(m_nickName); #endif @@ -599,11 +593,11 @@ void MessengerWindow::insertPeers() } #endif // MINIMAL_RSGUI if (sCustomString.isEmpty()) { - sslItem -> setText( COLUMN_NAME, tr("location : ") + QString::fromStdString(sslDetail.location) + " " + QString::fromStdString(sslDetail.autoconnect)); - sslItem -> setToolTip( COLUMN_NAME, tr("location : ") + QString::fromStdString(sslDetail.location)); + sslItem -> setText( COLUMN_NAME, tr("location") + " : " + QString::fromStdString(sslDetail.location) + " " + QString::fromStdString(sslDetail.autoconnect)); + sslItem -> setToolTip( COLUMN_NAME, tr("location") + " : " + QString::fromStdString(sslDetail.location)); } else { - sslItem -> setText( COLUMN_NAME, tr("location : ") + QString::fromStdString(sslDetail.location) + " " + QString::fromStdString(sslDetail.autoconnect) ); - sslItem -> setToolTip( COLUMN_NAME, tr("location : ") + QString::fromStdString(sslDetail.location) + tr(" - ") + sCustomString); + sslItem -> setText( COLUMN_NAME, tr("location") + " : " + QString::fromStdString(sslDetail.location) + " " + QString::fromStdString(sslDetail.autoconnect) ); + sslItem -> setToolTip( COLUMN_NAME, tr("location") + " : " + QString::fromStdString(sslDetail.location) + " - " + sCustomString); /* store custom state string */ sslCustomStateStrings[sslDetail.id] = sCustomString; @@ -621,8 +615,8 @@ void MessengerWindow::insertPeers() QFont font1; font1.setBold(true); - gpg_item->setIcon(COLUMN_NAME,(QIcon(IMAGE_ONLINE))); - gpg_item->setToolTip(COLUMN_NAME, tr("Peer Online")); + gpg_item->setIcon(COLUMN_NAME,(StatusDefs::images(RS_STATUS_ONLINE))); + gpg_item->setToolTip(COLUMN_NAME, StatusDefs::tooltip(RS_STATUS_ONLINE)); gpg_item->setData(COLUMN_NAME, ROLE_SORT, BuildStateSortString(sortState, gpg_item->text(COLUMN_NAME), PEER_STATE_ONLINE)); for(i = 0; i < COLUMN_COUNT; i++) { @@ -680,11 +674,11 @@ void MessengerWindow::insertPeers() if (gpg_connected) { gpg_item->setHidden(false); - //gpg_item -> setText(COLUMN_STATE, tr("Online")); // set to online regardless on update #ifndef MINIMAL_RSGUI - int bestPeerState = 0; // for gpg item - std::string bestSslId; // for gpg item + int bestPeerState = 0; // for gpg item + std::string bestSslId; // for gpg item + unsigned int bestRSState = 0; // for gpg item std::list::iterator it = statusInfo.begin(); for(; it != statusInfo.end() ; it++){ @@ -697,9 +691,7 @@ void MessengerWindow::insertPeers() int peerState = 0; - std::string status; - rsStatus->getStatusString(it->status, status); - gpg_item -> setText(COLUMN_STATE, QString::fromStdString(status)); + gpg_item -> setText(COLUMN_STATE, StatusDefs::name(it->status)); unsigned char *data = NULL; int size = 0 ; @@ -739,10 +731,12 @@ void MessengerWindow::insertPeers() /* first ssl contact */ bestPeerState = peerState; bestSslId = *cont_it; + bestRSState = it->status; } else if (peerState < bestPeerState) { /* higher state */ bestPeerState = peerState; bestSslId = *cont_it; + bestRSState = it->status; } else if (peerState == bestPeerState) { /* equal state */ @@ -769,59 +763,20 @@ void MessengerWindow::insertPeers() if (bestPeerState == 0) { // show as online bestPeerState = PEER_STATE_ONLINE; + bestRSState = RS_STATUS_ONLINE; } - QFont font; - font.setBold(true); - - QString stateString; - - switch (bestPeerState) { - case PEER_STATE_INACTIVE: - gpgIcon = QIcon(IMAGE_INACTIVE); - gpg_item -> setToolTip(COLUMN_NAME, tr("Peer Idle")); - stateString = tr("Idle"); - - for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::gray)); - gpg_item -> setFont(i,font); - } - break; - - case PEER_STATE_ONLINE: - gpgIcon = QIcon(IMAGE_ONLINE); - gpg_item -> setToolTip(COLUMN_NAME, tr("Peer Online")); - stateString = tr("Online"); - - for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::darkBlue)); - gpg_item -> setFont(i,font); - } - break; - - case PEER_STATE_AWAY: - gpgIcon = QIcon(IMAGE_AWAY); - gpg_item -> setToolTip(COLUMN_NAME, tr("Peer Away")); - stateString = tr("Away"); - - for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::gray)); - gpg_item -> setFont(i,font); - } - break; - - case PEER_STATE_BUSY: - gpgIcon = QIcon(IMAGE_BUSY); - gpg_item -> setToolTip(COLUMN_NAME, tr("Peer Busy")); - stateString = tr("Busy"); - - for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::gray)); - gpg_item -> setFont(i,font); - } - break; + QColor textColor = StatusDefs::textColor(bestRSState); + QFont font = StatusDefs::font(bestRSState); + for(i = 0; i < COLUMN_COUNT; i++) { + gpg_item -> setTextColor(i, textColor); + gpg_item -> setFont(i, font); } + + gpgIcon = QIcon(StatusDefs::imageIM(bestRSState)); + gpg_item->setText(COLUMN_NAME, QString::fromStdString(detail.name)); + gpg_item -> setToolTip(COLUMN_NAME, StatusDefs::tooltip(bestRSState)); std::map::iterator customStateString = sslCustomStateStrings.find(bestSslId); if (customStateString == sslCustomStateStrings.end()) { @@ -835,6 +790,9 @@ void MessengerWindow::insertPeers() // } /* use state string for location */ + QString stateString; + stateString = StatusDefs::name(bestRSState); + if (stateString.isEmpty()) { /* show only the name */ gpg_item->setText(COLUMN_NAME, QString::fromStdString(detail.name)); @@ -855,7 +813,6 @@ void MessengerWindow::insertPeers() gpg_item->setText(COLUMN_NAME, QString::fromStdString(detail.name)); gpgIcon = QIcon(IMAGE_AVAIBLE); gpg_item->setData(COLUMN_NAME, ROLE_SORT, BuildStateSortString(sortState, gpg_item->text(COLUMN_NAME), PEER_STATE_ONLINE)); - //gpg_item -> setText(COLUMN_STATE, tr("Available")); QFont font; font.setBold(true); for(i = 0; i < COLUMN_COUNT; i++) { @@ -865,14 +822,14 @@ void MessengerWindow::insertPeers() } else { gpg_item->setHidden(hideOfflineFriends); gpg_item->setText(COLUMN_NAME, QString::fromStdString(detail.name)); - gpgIcon = QIcon(IMAGE_OFFLINE); + gpgIcon = QIcon(StatusDefs::imageIM(RS_STATUS_OFFLINE)); gpg_item->setData(COLUMN_NAME, ROLE_SORT, BuildStateSortString(sortState, gpg_item->text(COLUMN_NAME), PEER_STATE_OFFLINE)); - //gpg_item -> setText(COLUMN_STATE, tr("Offline")); - QFont font; - font.setBold(false); + + QColor textColor = StatusDefs::textColor(RS_STATUS_OFFLINE); + QFont font = StatusDefs::font(RS_STATUS_OFFLINE); for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::black)); - gpg_item -> setFont(i,font); + gpg_item -> setTextColor(i, textColor); + gpg_item -> setFont(i, font); } } @@ -882,7 +839,6 @@ void MessengerWindow::insertPeers() gpg_item -> setIcon(COLUMN_NAME, gpgIcon); - /* add gpg item to the list. If item is already in the list, it won't be duplicated thanks to Qt */ peertreeWidget->addTopLevelItem(gpg_item); @@ -1204,12 +1160,11 @@ void MessengerWindow::savestatusmessage() void MessengerWindow::updateOwnStatus(const QString &peer_id, int status) { // add self nick + own status - if (peer_id.toStdString() == rsPeers->getOwnId()) + if (peer_id.toStdString() == rsPeers->getOwnId()) { // my status has changed - std::string statusString; - rsStatus->getStatusString(status, statusString); - ui.statusButton->setText(m_nickName + " (" + tr(statusString.c_str()) + ")"); + + ui.statusButton->setText(m_nickName + " (" + StatusDefs::name(status) + ")"); switch (status) { case RS_STATUS_OFFLINE: diff --git a/retroshare-gui/src/gui/MessengerWindow.ui b/retroshare-gui/src/gui/MessengerWindow.ui index 88b3c5554..9dca223d5 100644 --- a/retroshare-gui/src/gui/MessengerWindow.ui +++ b/retroshare-gui/src/gui/MessengerWindow.ui @@ -11,7 +11,7 @@ - RetroShare Messenger + RetroShare Messenger @@ -251,7 +251,7 @@ p, li { white-space: pre-wrap; } - ... + diff --git a/retroshare-gui/src/gui/PeersDialog.cpp b/retroshare-gui/src/gui/PeersDialog.cpp index a15147385..cf8442b63 100644 --- a/retroshare-gui/src/gui/PeersDialog.cpp +++ b/retroshare-gui/src/gui/PeersDialog.cpp @@ -29,6 +29,7 @@ #include #include #include "common/vmessagebox.h" +#include "common/StatusDefs.h" #include #include "retroshare/rsinit.h" @@ -73,14 +74,7 @@ #define IMAGE_MSG ":/images/message-mail.png" #define IMAGE_CONNECT ":/images/connect_friend.png" /* Images for Status icons */ -#define IMAGE_ONLINE ":/images/user/identity24.png" -#define IMAGE_AWAY ":/images/user/identity24away.png" -#define IMAGE_BUSY ":/images/user/identity24busy.png" -#define IMAGE_INACTIVE ":/images/user/identity24idle.png" -#define IMAGE_OFFLINE ":/images/user/identityoffline24.png" -#define IMAGE_OFFLINE2 ":/images/user/identitylightgrey24.png" #define IMAGE_AVAILABLE ":/images/user/identityavaiblecyan24.png" -#define IMAGE_UNREACHABLE ":/images/user/identityunreachable24.png" #define IMAGE_CONNECT2 ":/images/reload24.png" #define IMAGE_PASTELINK ":/images/pasterslink.png" @@ -652,9 +646,9 @@ void PeersDialog::insertPeers() if (sslDetail.state & RS_PEER_STATE_CONNECTED) { customStateString = rsMsgs->getCustomStateString(sslDetail.id); } - sText = tr("location : ") + QString::fromStdString(sslDetail.location); + sText = tr("location") + " : " + QString::fromStdString(sslDetail.location); if (customStateString.empty() == false) { - sText += tr(" - ") + QString::fromStdString(customStateString); + sText += " - " + QString::fromStdString(customStateString); } sslItem -> setText( COLUMN_NAME, sText); sslItem -> setToolTip( COLUMN_NAME, sText); @@ -713,13 +707,13 @@ void PeersDialog::insertPeers() if (gpg_connected) { gpg_item->setHidden(false); - int bestPeerState = 0; // for gpg item - std::string bestSslId; // for gpg item + int bestPeerState = 0; // for gpg item + std::string bestSslId; // for gpg item + unsigned int bestRSState = 0; // for gpg item std::list::iterator it; for(it = statusInfo.begin(); it != statusInfo.end() ; it++) { - // don't forget the kids std::list::iterator cont_it; for (cont_it = sslContacts.begin(); cont_it != sslContacts.end(); cont_it++) { @@ -728,9 +722,7 @@ void PeersDialog::insertPeers() int peerState = 0; - std::string status; - rsStatus->getStatusString(it->status, status); - gpg_item -> setText(COLUMN_INFO, QString::fromStdString(status)); + gpg_item -> setText(COLUMN_INFO, StatusDefs::name(it->status)); switch (it->status) { case RS_STATUS_INACTIVE: @@ -755,10 +747,12 @@ void PeersDialog::insertPeers() /* first ssl contact */ bestPeerState = peerState; bestSslId = *cont_it; + bestRSState = it->status; } else if (peerState < bestPeerState) { /* higher state */ bestPeerState = peerState; bestSslId = *cont_it; + bestRSState = it->status; } else if (peerState == bestPeerState) { /* equal state ... use first */ } @@ -769,57 +763,20 @@ void PeersDialog::insertPeers() if (bestPeerState == 0) { // show as online bestPeerState = PEER_STATE_ONLINE; + bestRSState = RS_STATUS_ONLINE; } - QFont font; - font.setBold(true); - - switch (bestPeerState) { - case PEER_STATE_INACTIVE: - gpgIcon = QIcon(IMAGE_INACTIVE); - gpg_item -> setToolTip(COLUMN_NAME, tr("Peer Idle")); - gpg_item -> setText(COLUMN_STATE, tr("Idle")); - - for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::gray)); - gpg_item -> setFont(i,font); - } - break; - - case PEER_STATE_ONLINE: - gpgIcon = QIcon(IMAGE_ONLINE); - gpg_item -> setToolTip(COLUMN_NAME, tr("Peer Online")); - gpg_item -> setText(COLUMN_STATE, tr("Online")); - - for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::darkBlue)); - gpg_item -> setFont(i,font); - } - break; - - case PEER_STATE_AWAY: - gpgIcon = QIcon(IMAGE_AWAY); - gpg_item -> setToolTip(COLUMN_NAME, tr("Peer Away")); - gpg_item -> setText(COLUMN_STATE, tr("Away")); - - for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::gray)); - gpg_item -> setFont(i,font); - } - break; - - case PEER_STATE_BUSY: - gpgIcon = QIcon(IMAGE_BUSY); - gpg_item -> setToolTip(COLUMN_NAME, tr("Peer Busy")); - gpg_item -> setText(COLUMN_STATE, tr("Busy")); - - for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::gray)); - gpg_item -> setFont(i,font); - } - break; + QColor textColor = StatusDefs::textColor(bestRSState); + QFont font = StatusDefs::font(bestRSState); + for(i = 0; i < COLUMN_COUNT; i++) { + gpg_item -> setTextColor(i, textColor); + gpg_item -> setFont(i, font); } + gpgIcon = QIcon(StatusDefs::imageUser(bestRSState)); + + gpg_item -> setText(COLUMN_STATE, StatusDefs::name(bestRSState)); + gpg_item -> setToolTip(COLUMN_NAME, StatusDefs::tooltip(bestRSState)); gpg_item -> setData(COLUMN_STATE, ROLE_SORT, BuildStateSortString(true, gpg_item->text(COLUMN_NAME), bestPeerState)); } else if (gpg_online) { gpg_item->setHidden(bHideUnconnected); @@ -834,14 +791,15 @@ void PeersDialog::insertPeers() } } else { gpg_item->setHidden(bHideUnconnected); - gpgIcon = QIcon(IMAGE_OFFLINE); - gpg_item -> setText(COLUMN_STATE, tr("Offline")); + gpgIcon = QIcon(StatusDefs::imageUser(RS_STATUS_OFFLINE)); + gpg_item -> setText(COLUMN_STATE, StatusDefs::name(RS_STATUS_OFFLINE)); gpg_item -> setData(COLUMN_STATE, ROLE_SORT, BuildStateSortString(true, gpg_item->text(COLUMN_NAME), PEER_STATE_OFFLINE)); - QFont font; - font.setBold(false); + + QColor textColor = StatusDefs::textColor(RS_STATUS_OFFLINE); + QFont font = StatusDefs::font(RS_STATUS_OFFLINE); for(i = 0; i < COLUMN_COUNT; i++) { - gpg_item -> setTextColor(i,(Qt::black)); - gpg_item -> setFont(i,font); + gpg_item -> setTextColor(i, textColor); + gpg_item -> setFont(i, font); } } diff --git a/retroshare-gui/src/gui/PeersDialog.ui b/retroshare-gui/src/gui/PeersDialog.ui index f01de425d..ff60e2d88 100644 --- a/retroshare-gui/src/gui/PeersDialog.ui +++ b/retroshare-gui/src/gui/PeersDialog.ui @@ -1417,7 +1417,7 @@ p, li { white-space: pre-wrap; } :/images/new_forum16.png:/images/new_forum16.png - Create New Forum + Create new Forum Create new Forum @@ -1432,7 +1432,7 @@ p, li { white-space: pre-wrap; } :/images/add_channel24.png:/images/add_channel24.png - Create New Channel + Create new Channel Create new Channel diff --git a/retroshare-gui/src/gui/chat/PopupChatDialog.cpp b/retroshare-gui/src/gui/chat/PopupChatDialog.cpp index 5c1f12f33..4403bdb48 100644 --- a/retroshare-gui/src/gui/chat/PopupChatDialog.cpp +++ b/retroshare-gui/src/gui/chat/PopupChatDialog.cpp @@ -48,6 +48,7 @@ #include "gui/settings/RsharePeerSettings.h" #include "gui/notifyqt.h" #include "../RsAutoUpdatePage.h" +#include "gui/common/StatusDefs.h" #include "gui/feeds/AttachFileItem.h" #include "gui/msgs/MessageComposer.h" @@ -146,9 +147,9 @@ PopupChatDialog::PopupChatDialog(std::string id, std::string name, //ui.textBrowser->setOpenExternalLinks ( false ); //ui.textBrowser->setOpenLinks ( false ); - QString title = tr("RetroShare - ") + QString::fromStdString(name); + QString title = tr("RetroShare") + " - " + QString::fromStdString(name); setWindowTitle(title); - + setWindowIcon(QIcon(IMAGE_WINDOW)); ui.textboldButton->setIcon(QIcon(QString(":/images/edit-bold.png"))); @@ -385,7 +386,7 @@ void PopupChatDialog::chatFriend(std::string id) if (!oneLocationConnected) { /* info dialog */ - if ((QMessageBox::question(NULL, tr("Friend Not Online"),tr("Your Friend is offline \nDo you want to send them a Message instead"),QMessageBox::Yes|QMessageBox::No, QMessageBox::Yes))== QMessageBox::Yes) { + if ((QMessageBox::question(NULL, tr("Friend not Online"),tr("Your Friend is offline \nDo you want to send them a Message instead"),QMessageBox::Yes|QMessageBox::No, QMessageBox::Yes))== QMessageBox::Yes) { MessageComposer::msgFriend(id); } } @@ -1101,8 +1102,6 @@ void PopupChatDialog::updateStatus(const QString &peer_id, int status) std::string stdPeerId = peer_id.toStdString(); /* set font size for status */ - QString statusString("%1"); - if (stdPeerId == dialogId) { // the peers status has changed switch (status) { @@ -1111,7 +1110,6 @@ void PopupChatDialog::updateStatus(const QString &peer_id, int status) ui.avatarlabel->setEnabled(false); ui.infoframe->setVisible(true); ui.infolabel->setText( QString::fromStdString(dialogName) + " " + tr("apears to be Offline.") +"\n" + tr("Messages you send will be lost and not delivered, rs-Mail this contact instead.")); - ui.friendnamelabel->setText( QString::fromStdString(dialogName) + " " + statusString.arg( tr("(Offline)") )) ; break; case RS_STATUS_INACTIVE: @@ -1119,14 +1117,12 @@ void PopupChatDialog::updateStatus(const QString &peer_id, int status) ui.avatarlabel->setEnabled(true); ui.infoframe->setVisible(true); ui.infolabel->setText( QString::fromStdString(dialogName) + " " + tr("is Idle and may not reply")); - ui.friendnamelabel->setText( QString::fromStdString(dialogName) + " " + statusString.arg( tr("(Idle)") )) ; break; case RS_STATUS_ONLINE: ui.avatarlabel->setStyleSheet("QLabel#avatarlabel{ border-image:url(:/images/avatarstatus_bg_online.png); }"); ui.avatarlabel->setEnabled(true); ui.infoframe->setVisible(false); - ui.friendnamelabel->setText( QString::fromStdString(dialogName) + " " + statusString.arg( tr("(Online)") )) ; break; case RS_STATUS_AWAY: @@ -1134,7 +1130,6 @@ void PopupChatDialog::updateStatus(const QString &peer_id, int status) ui.avatarlabel->setEnabled(true); ui.infolabel->setText( QString::fromStdString(dialogName) + " " + tr("is Away and may not reply")); ui.infoframe->setVisible(true); - ui.friendnamelabel->setText( QString::fromStdString(dialogName) + " " + statusString.arg( tr("(Away)") )) ; break; case RS_STATUS_BUSY: @@ -1142,9 +1137,12 @@ void PopupChatDialog::updateStatus(const QString &peer_id, int status) ui.avatarlabel->setEnabled(true); ui.infolabel->setText( QString::fromStdString(dialogName) + " " + tr("is Busy and may not reply")); ui.infoframe->setVisible(true); - ui.friendnamelabel->setText( QString::fromStdString(dialogName) + " " + statusString.arg( tr("(Busy)") )) ; break; } + + QString statusString("%1"); + ui.friendnamelabel->setText( QString::fromStdString(dialogName) + " (" + statusString.arg(StatusDefs::name(status)) + ")") ; + return; } diff --git a/retroshare-gui/src/gui/common/StatusDefs.cpp b/retroshare-gui/src/gui/common/StatusDefs.cpp new file mode 100644 index 000000000..22ab2817d --- /dev/null +++ b/retroshare-gui/src/gui/common/StatusDefs.cpp @@ -0,0 +1,140 @@ +/**************************************************************** + * This file is distributed under the following license: + * + * Copyright (c) 2010, RetroShare Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + ****************************************************************/ + +#include +#include + +#include "StatusDefs.h" + +const QString StatusDefs::name(unsigned int status) +{ + switch (status) { + case RS_STATUS_OFFLINE: + return QObject::tr("Offline"); + case RS_STATUS_AWAY: + return QObject::tr("Away"); + case RS_STATUS_BUSY: + return QObject::tr("Busy"); + case RS_STATUS_ONLINE: + return QObject::tr("Online"); + case RS_STATUS_INACTIVE: + return QObject::tr("Idle"); + } + + std::cerr << "StatusDefs::name: Unknown status requested " << status; + return ""; +} + +const char *StatusDefs::imageIM(unsigned int status) +{ + switch (status) { + case RS_STATUS_OFFLINE: + return ":/images/im-user-offline.png"; + case RS_STATUS_AWAY: + return ":/images/im-user-away.png"; + case RS_STATUS_BUSY: + return ":/images/im-user-busy.png"; + case RS_STATUS_ONLINE: + return ":/images/im-user.png"; + case RS_STATUS_INACTIVE: + return ":/images/im-user-inactive.png"; + } + + std::cerr << "StatusDefs::imageIM: Unknown status requested " << status; + return ""; +} + +const char *StatusDefs::imageUser(unsigned int status) +{ + switch (status) { + case RS_STATUS_OFFLINE: + return ":/images/user/identityoffline24.png"; + case RS_STATUS_AWAY: + return ":/images/user/identity24away.png"; + case RS_STATUS_BUSY: + return ":/images/user/identity24busy.png"; + case RS_STATUS_ONLINE: + return ":/images/user/identity24.png"; + case RS_STATUS_INACTIVE: + return ":/images/user/identity24idle.png"; + } + + std::cerr << "StatusDefs::imageUser: Unknown status requested " << status; + return ""; +} + +const QString StatusDefs::tooltip(unsigned int status) +{ + switch (status) { + case RS_STATUS_OFFLINE: + return QObject::tr("Peer is offline"); + case RS_STATUS_AWAY: + return QObject::tr("Peer is away"); + case RS_STATUS_BUSY: + return QObject::tr("Peer is busy"); + case RS_STATUS_ONLINE: + return QObject::tr("Peer is online"); + case RS_STATUS_INACTIVE: + return QObject::tr("Peer is idle"); + } + + std::cerr << "StatusDefs::tooltip: Unknown status requested " << status; + return ""; +} + +const QColor StatusDefs::textColor(unsigned int status) +{ + switch (status) { + case RS_STATUS_OFFLINE: + return Qt::black; + case RS_STATUS_AWAY: + return Qt::gray; + case RS_STATUS_BUSY: + return Qt::gray; + case RS_STATUS_ONLINE: + return Qt::darkBlue; + case RS_STATUS_INACTIVE: + return Qt::gray; + } + + std::cerr << "StatusDefs::textColor: Unknown status requested " << status; + return Qt::black; +} + +const QFont StatusDefs::font(unsigned int status) +{ + QFont font; + + switch (status) { + case RS_STATUS_AWAY: + case RS_STATUS_BUSY: + case RS_STATUS_ONLINE: + case RS_STATUS_INACTIVE: + font.setBold(true); + return font; + case RS_STATUS_OFFLINE: + font.setBold(false); + return font; + } + + std::cerr << "StatusDefs::font: Unknown status requested " << status; + return font; +} diff --git a/retroshare-gui/src/gui/common/StatusDefs.h b/retroshare-gui/src/gui/common/StatusDefs.h new file mode 100644 index 000000000..2b841baad --- /dev/null +++ b/retroshare-gui/src/gui/common/StatusDefs.h @@ -0,0 +1,42 @@ +/**************************************************************** + * This file is distributed under the following license: + * + * Copyright (c) 2010, RetroShare Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + ****************************************************************/ + + +#ifndef _STATUSDEFS_H +#define _STATUSDEFS_H + +#include +#include + +class StatusDefs +{ +public: + static const QString name(unsigned int status); + static const char* imageIM(unsigned int status); + static const char* imageUser(unsigned int status); + static const QString tooltip(unsigned int status); + + static const QColor textColor(unsigned int status); + static const QFont font(unsigned int status); +}; + +#endif + diff --git a/retroshare-gui/src/gui/images.qrc b/retroshare-gui/src/gui/images.qrc index e438a10fa..7aac518fb 100644 --- a/retroshare-gui/src/gui/images.qrc +++ b/retroshare-gui/src/gui/images.qrc @@ -423,9 +423,7 @@ images/user/identity24away.png images/user/identity24busy.png images/user/identity24idle.png - images/user/identitylightgrey24.png images/user/identityavaiblecyan24.png - images/user/identityunreachable24.png images/user/agt_forum24.png images/user/identity32.png images/user/identitygray16.png diff --git a/retroshare-gui/src/gui/images/user/identitylightgrey24.png b/retroshare-gui/src/gui/images/user/identitylightgrey24.png deleted file mode 100644 index 98d9cc40c..000000000 Binary files a/retroshare-gui/src/gui/images/user/identitylightgrey24.png and /dev/null differ diff --git a/retroshare-gui/src/gui/images/user/identityunreachable24.png b/retroshare-gui/src/gui/images/user/identityunreachable24.png deleted file mode 100644 index 99cba375f..000000000 Binary files a/retroshare-gui/src/gui/images/user/identityunreachable24.png and /dev/null differ diff --git a/retroshare-gui/src/lang/retroshare_de.qm b/retroshare-gui/src/lang/retroshare_de.qm index 8d75b83a0..e2b7dc2df 100644 Binary files a/retroshare-gui/src/lang/retroshare_de.qm and b/retroshare-gui/src/lang/retroshare_de.qm differ diff --git a/retroshare-gui/src/lang/retroshare_de.ts b/retroshare-gui/src/lang/retroshare_de.ts index 5b8f0bb81..a1303a970 100644 --- a/retroshare-gui/src/lang/retroshare_de.ts +++ b/retroshare-gui/src/lang/retroshare_de.ts @@ -71,18 +71,6 @@ Add a new Link Neuen Link hinzufügen - - Title: - Titel: - - - Url: - URL: - - - Score: - Punkte: - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -138,22 +126,10 @@ p, li { white-space: pre-wrap; } AdvancedSearchDialog - - RetrosShare: Advanced Search - Retroshare: Erweiterte Suche - Add a further search criterion. Ein weiteres Such-Kriterium hinzufügen. - - Add a selection criterion - Ein Auswahl-Kriterium hinzufügen - - - Reset - Zurücksetzen - Cancels the search. Bricht die Suche ab. @@ -234,18 +210,6 @@ p, li { white-space: pre-wrap; } Games Launcher Spielestarter - - Peers - Nachbarn - - - Transfers - Transfers - - - Messages - Nachrichten - Shared Calendars Verteilter Kalender @@ -384,53 +348,6 @@ p, li { white-space: pre-wrap; } Schliessen - - BlogDialog - - Form - Formular - - - Blogs - Blogs - - - Last Month - Letzter Monat - - - Last Week - Letzte Woche - - - Last Day - Letzter Tag - - - All Users - Alle Benutzer - - - Jimmy - Jimmy - - - John - John - - - Jacki - Jacki - - - No Feeds - Keine Feeds - - - Post Blog - Blog schreiben - - BlogMsgItem @@ -538,10 +455,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'DejaVu Sans'; font-size:14pt; color:#ffffff;">Blog Name</span></p></body></html> - - Post To Channel - In Kanal schreiben - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -750,10 +663,6 @@ p, li { white-space: pre-wrap; } Certificate files Zertifikat-Dateien - - Use XPGP certificates saved in files. - Nutze in Dateien gespeicherte XPGP Zertifikate - Use PGP certificates saved in files. Nutze in Dateien gespeicherte PGP Zertifikate. @@ -766,10 +675,6 @@ p, li { white-space: pre-wrap; } Export my certificate... Exportiere mein Zertifikat... - - Specify path to your friend's certificate in the box below - Geben sie den Pfad zum Zertifikat Ihres Freundes unten in der Box an. - Browse Durchsuchen @@ -778,18 +683,6 @@ p, li { white-space: pre-wrap; } Select Certificate Zertifikat auswählen - - RetroShare Certificates (*.rsc) - RetroShare Zertifikate - - - Not implemented - Nicht implementiert - - - Certificates (*.pqi *.pem) - Zertifikate (*.pqi *.pem) - Please choose a filename Bitte wählen sie einen Dateinamen @@ -835,283 +728,6 @@ p, li { white-space: pre-wrap; } - - ChanMsgDialog - - Compose - Erstellen - - - Select Color - Text-Farbe auswählen - - - Recommended Files - Empfohlene Dateien - - - Send To: - Senden An: - - - Send - Senden - - - Delete Channel - Kanal löschen - - - Create Channel MSG - Erstelle eine Nachricht für den Kanal - - - Reply - Antworten - - - &Left - &Links - - - &Center - &Zentriert - - - &Right - &Rechts - - - &Justify - &Blocksatz - - - Send this message now - Diese Nachricht jetzt senden - - - Toggle Contacts View - Kontakt-Ansicht umschalten - - - Save this message - Diese Nachricht speichern - - - Compose: - Verfassen: - - - &File - &Datei - - - &New - &Neu - - - &Open... - &Öffnen... - - - &Save - &Speichern - - - Save &As... - Speichern &als... - - - &Print... - &Drucken... - - - &Export PDF... - PDF &exportieren... - - - &Quit - &Schliessen - - - &Edit - &Bearbeiten - - - &Undo - &Rückgängig - - - &Redo - &Wiederholen - - - &Cut - &Ausschneiden - - - &Copy - &Kopieren - - - &Paste - &Einfügen - - - &View - Anse&hen - - - &Contacts Sidebar - &Kontakt-Sidebar - - - &Insert - Ein&fügen - - - &Image - &Bild - - - Open File... - Datei öffnen... - - - HTML-Files (*.htm *.html);;All Files (*) - HTML-Dateien (*.htm *.html);;Alle Dateien (*) - - - Save as... - Speichern als... - - - Print Document - Dokument drucken - - - Save Message - Nachricht speichern - - - Message has not been Sent. -Do you want to save message ? - Nachricht noch nicht versandt. -Wollen Sie sie speichern? - - - Choose Image - Bild wählen - - - Image Files supported (*.png *.jpeg *.jpg *.gif) - Unterstützte Bilddateien (*.png *.jpeg *.jpg *.gif) - - - Add Extra File - Zusätzliche Datei hinzufügen - - - Contacts - Kontakte - - - Font size - Schriftgröße - - - Blockquote - Zitat - - - Increase font size - Schrift vergrößern - - - Decrease font size - Schrift verkleinern - - - Bold - Fett - - - Underline - Unterstrichen - - - Italic - Kursiv - - - Color - Farbe - - - Alignment - Ausrichtung - - - Add a Image - Ein Bild hinzufügen - - - Sets text font to code style - Setzt Schriftart auf Codestil - - - Split text - Text teilen - - - File Name - Dateiname - - - Size - Größe - - - Sources - Quellen - - - Hash - Prüfsumme - - - Save - Speichern - - - Attach - Anhängen - - - Attach File - Datei anhängen - - - Quote - Blockquote - - - Add Blockquote - Blockquote hinzufügen - - - Subject: - Betreff: - - - C&enter - &Zentriert - - - Cu&t - Auss&chneiden - - ChanMsgItem @@ -1122,10 +738,6 @@ Wollen Sie sie speichern? Remove Item Eintrag entfernen - - Connected - Verbunden - Expand Erweitern @@ -1158,14 +770,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; color:#666666;">Short Description</span></p></body></html> - - Download - Herunterladen - - - Play Media - Medium abspielen - TextLabel @@ -1191,10 +795,6 @@ Nachricht hier Remove Item Eintrag entfernen - - Connected - Verbunden - name Name @@ -1211,15 +811,9 @@ Nachricht hier Channel Decscription Kanalbeschreibung - - Description - of Forum - Beschreibung -des Forums - New Channel - + Neuer Kanal Logo @@ -1241,10 +835,6 @@ des Forums Channel Info Kanal Info - - Forum Name - Kanal Name - Popularity Beliebtheit @@ -1300,22 +890,10 @@ p, li { white-space: pre-wrap; } Add Hinzufügen - - Auto Download On - Auto Download an - - - Auto Download Off - Auto Download aus - Create Channel Kanal erstellen - - Channel Name - Kanal-Name - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1344,10 +922,6 @@ p, li { white-space: pre-wrap; } Subscribe Abonnieren - - Create New Channel - Erstelle neuen Kanal - Unsubcribe To Channel Kanal verlassen @@ -1463,6 +1037,22 @@ Verfügbar: %3 Start Chat Chat starten + + Write a quick Message + + + + Send + Senden + + + Cancel + Abbrechen + + + Quick Message + + ChatPage @@ -1498,6 +1088,81 @@ Verfügbar: %3 Enable GroupChat History + + General + Allgemein + + + Send message with Ctrl+Return + + + + Style + Stil + + + Public + Öffentlich + + + Variant + + + + Author: + + + + Description: + + + + Author + Autor + + + Description + Beschreibung + + + Private + Privat + + + History + + + + Incoming message in history + + + + Outgoing message in history + + + + Incoming message + + + + Outgoing message + + + + + ChatStyle + + Standard style for public chat + + + + Standard style for private chat + + + + Standard style for history + + ChatToaster @@ -1506,21 +1171,6 @@ Verfügbar: %3 Nachricht - - ComboStatus - - Online - Online - - - Away - Abwesend - - - Busy - Beschäftigt - - ConclusionPage @@ -1555,26 +1205,14 @@ Verfügbar: %3 Peer details Nachbar Details - - Trust: - Vertrauen: - Name: Name: - - Org: - Org: - Loc: Ort: - - Country: - Land: - Signers Unterzeichner @@ -1586,26 +1224,6 @@ Verfügbar: %3 Cancel Abbrechen - - Port: - Port: - - - Trust Settings - Vertraulichkeit - - - Trust Level - Höhe der Vertraulichkeit - - - Trust Their Signature - Der Signatur vertrauen - - - Sign The Certificate - Bestätige das Zertifikat - OK OK @@ -1630,18 +1248,10 @@ Verfügbar: %3 Peer ID Peer ID - - Loc: - Stadt: - Peer Address Adresse des Peers - - Local Address: - Lokale Adresse - Deny Friend Blockiere Freund @@ -1658,10 +1268,6 @@ Verfügbar: %3 Your trust in this peer is: Ihr Vertrauen zu diesem Peer ist: - - None - Keine - GPG Key GPG Schlüssel @@ -1678,30 +1284,10 @@ Verfügbar: %3 SignGPG Key Unterzeichne GPG Key - - Name: - Name: - - - Country/State: - Land/Bundesland: - - - External Address: - Externe Adresse: - - - External Name - Externer Name - Last Contact Letzter Kontakt - - Trusting me - Vetraut mir - Version @@ -1821,49 +1407,6 @@ und meinen GPG Schlüssel nicht unterzeichnet - - ConnectDialog - - Peer Details - Peer-Details - - - Make Friend - Als Freund wählen - - - Cancel - Abbrechen - - - Trust: - Vertrauen: - - - Name: - Name: - - - Org: - Org: - - - Loc: - Ort: - - - Country: - Land: - - - signers: - Unterzeichner: - - - AUTH CODE: - AUTH CODE: - - ConnectFriendWizard @@ -1913,10 +1456,6 @@ p, li { white-space: pre-wrap; } Allowed Messages Erlaubte Nachrichten - - Authenticated Messages - Authentifizierte Nachrichten - Anonymous Messages Anonyme Nachrichten @@ -1980,10 +1519,6 @@ p, li { white-space: pre-wrap; } Html Editor - - Attachments - Anhänge - toolBar @@ -2048,14 +1583,6 @@ p, li { white-space: pre-wrap; } Undo Rückgängig - - Drag and Drop Files from Search Results - Drag & Drop Dateien aus den Suchergebnissen - - - Add Extra File - Eine zusätzliche Datei hinzufügen - RetroShare @@ -2215,7 +1742,7 @@ Möchten Sie die Änderungen speichern? CreateChannel Create a new Channel - + Erstelle neuen Kanal <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -2378,10 +1905,6 @@ p, li { white-space: pre-wrap; } CreateForum - - Create a Forum - Ein Forum erstellen - Create new Forum Erstelle neues Forum @@ -2434,14 +1957,6 @@ p, li { white-space: pre-wrap; } Anonymous Messages Anonyme Nachrichten - - Channel Logo - Kanal Logo - - - Add Channel Logo - Kanal Logo hinzufügen - Cancel Abbrechen @@ -2485,10 +2000,6 @@ p, li { white-space: pre-wrap; } Sign Message Nachricht unterschreiben - - Cancel Msg - Abbrechen - Close Schliessen @@ -2521,13 +2032,9 @@ p, li { white-space: pre-wrap; } Add Extra File Zusätzliche Datei hinzufügen - - Clipboard does not contains RetroShare link('s) - Zwischenablage enthält keine RetroShare link('s) - Attach File - + Datei Anhängen Attach files via drag and drop @@ -2539,11 +2046,11 @@ p, li { white-space: pre-wrap; } Drop file error. - + Dateifehler bei drag and drop. File not found or file name not accepted. - + Datei nicht gefunden oder Dateiname nicht akzeptiert. Directory can't be dropped, only files are accepted. @@ -2568,14 +2075,6 @@ p, li { white-space: pre-wrap; } RetroShare Certificate (*.rsc );;All Files (*) - - Certificate file successfully created - Zertifikat-Datei erfolgreich erstellt - - - Sorry, certificate file creation failed - Zertifikat-Datei konnte nicht erstellt werden - Public Key Öffentlicher Schlüssel @@ -2805,14 +2304,6 @@ p, li { white-space: pre-wrap; } Shared Directories Freigegebene Verzeichnisse - - Incoming files - Eingehende Dateien - - - All Files (*) - Alle Dateien (*) - Add a Share Directory Freigabe hinzufügen @@ -2841,14 +2332,6 @@ p, li { white-space: pre-wrap; } Incoming Directory Eingehende Dateien - - Partials Direcrtory - Partielle Dateien - - - Automatically share incoming directory (Recommanded) - Automatisch eingehendes Verzeichnis freigeben - Edit Share Freigaben bearbeiten @@ -3099,10 +2582,6 @@ p, li { white-space: pre-wrap; } Availability map ( Verfügbarkeits map - - sources - Quellen - active sources aktive Quellen @@ -3237,10 +2716,6 @@ p, li { white-space: pre-wrap; } Allowed Messages Erlaubte Nachrichten - - Authenticated Messages - Authentifizierte Nachrichten - Anonymous Messages Anonyme Nachrichten @@ -3333,7 +2808,7 @@ p, li { white-space: pre-wrap; } name - Name + Name Subscribe to Forum @@ -3353,10 +2828,6 @@ p, li { white-space: pre-wrap; } Beschreibung des Forums - - forumname - - ForumPage @@ -3439,34 +2910,6 @@ des Forums You cant reply a Anonymous Author Sie können einem anonymen Autor nicht antworten - - File Request Confirmation - Bestätigung der Dateianforderung - - - The file has been added to your download list. - Die Datei wurde zur Downloadliste hinzugefügt. - - - File Request canceled - Dateianforderung abgebrochen - - - The file has not been added to your download list, because you already have it. - Die Datei wurde nich zur Downloadliste hinzugefügt, da sie schon vorhanden ist. - - - File Request Error - Fehler bei der Dateianforderung - - - The file link is malformed. - Link ist fehlerhaft. - - - View Whole Thread - Zeige ganzes Thema - Your Forums Ihre Foren @@ -3483,18 +2926,6 @@ des Forums Other Forums Andere Foren - - Forum Name - Foren-Name - - - Popularity - Beliebtheit - - - Posts - Beiträge - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3575,10 +3006,6 @@ p, li { white-space: pre-wrap; } Create Forum Erstelle Forum - - Prev - Vorig. - Next Nächst. @@ -3595,17 +3022,6 @@ p, li { white-space: pre-wrap; } Start New Thread Erstelle neues Thema - - New Message - Neue Nachricht - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Forum Post</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Forum Post</span></p></body></html> - Previous Vorig. @@ -3791,10 +3207,6 @@ p, li { white-space: pre-wrap; } All fields are required with a minimum of 3 characters Alle Felder sind mit min. 3 Zeichen zu versehen - - Generating new GPG key, please be patient. Fill in your GPG password when asked. - Generiere neuen GPG Schlüssel. Bitte seien Sie geduldig. Es dauert! Geben Sie ihr Passwort ein, wenn es verlangt wird. - Select Trusted Friend Wähle vertrauten Freund @@ -3803,37 +3215,6 @@ p, li { white-space: pre-wrap; } Certificates (*.pqi *.pem) Zertifikate (*.pqi *.pem) - - RetroShare setup - Retroshare Setup - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Generate a new profile</span><br /><br />Please fill in the information which will<br />allow your RetroShare to connect to</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Friends.</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Generate a new profile</span><br /><br />Please fill in the information which will<br />allow your RetroShare to connect to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Friends.</p></body></html> - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Organisation:</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Organisation:</p></body></html> - - - Password (Again) - Passwort (Wdh) - - - It looks like you don't own any GPG keys. Please fill in the form below to generate one, or use your favorite gnupg key manager. - Es sieht so aus als besäßen sie noch keine GPG Schlüssel. Bitte Füllen sie das Formular unten aus oder verwenden Sie ihren favorisierten Schlüsselmanager. - - - Use GPG key - Benutze GPG Schlüssel - Name Name @@ -3842,38 +3223,14 @@ p, li { white-space: pre-wrap; } Location: Ort: - - Generate a new gpg key - Generiere einen neuen GPG Schlüssel - Email - - GPG Password - GPG Passwort - - - Put a meaningfull location. ex : home, laptop, etc. This field will be used to differentiate different installations with the same gpg key. - Nutzen sie einen aussagekräftigen Ort(z.B. home, laptop). Dieses Feld wird dazu genutzt verschiedene Installationen mit dem selben Schlüssel auseinanderzuhalten. - Generate New Profile Generiere neues Profil - - Load Trusted Certificate (Optional) - Lade vertrautes Zertifikat (Optional) - - - RetroShare : Create new user Profile - RetroShare: Erstelle neues Profil - - - PGP Password - PGP Passwort - Info @@ -3882,49 +3239,6 @@ p, li { white-space: pre-wrap; } Password Passwort - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Friend</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Friend</span></p></body></html> - - - Select File - Wähle Datei - - - Country: - Land: - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Name:</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Name:</p></body></html> - - - Generate New Certificate - Erstelle neues Zertifikat - - - Friend - Freund - - - Name: - Name: - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Generate a new profile</span><br /><br /><span style=" font-size:9pt;">Please fill in the information which will<br />allow your RetroShare to connect to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Friends.</p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt;">Erstelle neues Profil</span><br /><br /><span style=" font-size:9pt;">Please fill in the information which will<br />allow your RetroShare to connect to</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Friends.</p></body></html> - Create new Profile Erstelle neues Profil @@ -4045,91 +3359,8 @@ Fill in your GPG password when asked, to sign your new key. - - GeneralMsgDialog - - Dialog - Dialog - - - Friend - Freund - - - Channel - Kanal - - - Forum - Forum - - - Blog - Blog - - - Add Message Destination - Nachrichten-Ziel hinzufügen - - - Message Destination - Nachrichten-Ziel - - - Attachments - Anhänge - - - Subject : - Betreff: - - - General Message - Allgemeine Nachricht - - - Message - Nachricht - - - Add Extra File - Zusätzliche Datei hinzufügen - - - Drag and Drop Files from Search Results - Drag & Drop Dateien aus den Suchergebnissen - - GeneralPage - - Keys manager - Schlüsselverwaltung - - - Style - Stil - - - Choose RetroShare's interface style - Wähle den Stil der Benutzeroberfläche - - - Language - Sprache - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:Arial; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Changes to language will only take effect after restarting RetroShare!</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:Arial; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Änderungen in der Sprachwahl wirken sich erst nach einem Neustart von Retroshare aus!</p></body></html> - - - Choose the language used in RetroShare - Sprachauswahl für Retroshare - - - Login - Login - Auto Login Automatischer Login @@ -4150,10 +3381,6 @@ Fill in your GPG password when asked, to sign your new key. Do not Minimize to Tray Icon Nicht in den Systemabschnitt mininmieren - - Show MainWindow at Startup - Zeige das Hauptfenster beim Start - Start minimized Minimiert starten @@ -4435,22 +3662,10 @@ p, li { white-space: pre-wrap; } Opening External Link Öffne externe Verknüpfung - - Vidalia can open the link you selected in your default Web browser. If your browser is not currently configured to use Tor then the request will not be anonymous. - Vidalia kann die gewählte Verknüpfung in Ihrem Standard-Browser öffnen. Wenn dieser nicht für die Benutzung von TOR konfiguriert ist, wird diese Anforderung nicht anonym sein. - - - Do you want Vidalia to open the link in your Web browser? - Soll Vidalia die Verknüpfung in Ihrem Browser öffnen? - Unable to Open Link Die Verknüpfung konnte nicht geöffnet werden - - Vidalia was unable to open the selected link in your Web browser. You can still copy the URL and paste it into your browser. - Vidalia konnte die gewünschte Verknüpfung nicht in Ihrem Browser öffnen. Sie können aber die URL kopieren und in die Adresszeile Ihres Webbrowsers einfügen. - RetroShare can open the link you selected in your default Web browser. If your browser is not currently configured to use Tor then the request will not be anonymous. Retroshare kann den Link in ihrem Browser öffnen. Falls dieser nicht z.B. mit TOR konfiguriert ist, wird der Aufruf der Seite nicht anonym sein, @@ -4470,6 +3685,42 @@ p, li { white-space: pre-wrap; } Message History + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt; color:#ffffff;">Message History</span></p></body></html> + + + + Reset + + + + Copy + Kopieren + + + Remove + Entfernen + + + Mark all + + + + Delete + Löschen + + + Clear history + + + + Send + Senden + InfoDialog @@ -4508,10 +3759,6 @@ p, li { white-space: pre-wrap; } This wizard will help you to connect to your friend(s) to RetroShare network. There are three possible ways to do this: Dieser Assistent wird Ihnen helfen, sich mit Ihren Freunden zu verbinden. Es gibt 3 Möglichkeiten: - - &Use *.rsc files with certificates - &Nutze *.rsc Dateien mit Zertifikaten - &Make friend with selected friends of my friends &Fügen sie ausgewählte Freunde Ihrer Freunde hinzu @@ -4520,18 +3767,10 @@ p, li { white-space: pre-wrap; } Add a new Friend Fügen Sie einen neuen Freund hinzu - - This wizard will help you to connect your friend to RetroShare network. There are two possible ways to do this: - Dieser Assistent hilft Ihnen, um Ihre Freunde zu RetroShare Netzwerk einzuladen. Es gibt zwei Möglichkeiten, dies zu tun: - &Enter the certificate manually &Geben Sie das Zertifikat manuell an - - &Use *.pqi files with certificates - &Nutze *.pqi Dateien mit Zertifikaten - &You get a certificate file from your friend &Du hast ein Zertifikat datei vom Freund bekommen @@ -4750,10 +3989,6 @@ p, li { white-space: pre-wrap; } Blogs Blogs - - You have a new message - Du has eine neue Nachricht - Internal Error Interener Fehler @@ -4774,10 +4009,6 @@ p, li { white-space: pre-wrap; } RetroShare RetroShare - - Invite Friend - Freund einladen - MainWindow Hauptfenster @@ -4810,10 +4041,6 @@ p, li { white-space: pre-wrap; } Files Dateien - - Add Shared Directory - Freigabeverzeichnis hinzufügen - Messenger Messenger @@ -4838,10 +4065,6 @@ p, li { white-space: pre-wrap; } Open Messenger Öffne Messenger - - RetroShare %1 - RetroShare %1 - Quit Schliessen @@ -4862,22 +4085,6 @@ p, li { white-space: pre-wrap; } Unfinished unfertig - - Ctrl+T - Strg-T - - - Games - Spiele - - - Photo View - Photo-Ansicht - - - Down: 0.0 | Up: 0.0 - Down: 0.0 | Up: 0.0 - SMPlayer SMPlayer @@ -4886,18 +4093,10 @@ p, li { white-space: pre-wrap; } Help Hilfe - - Color - Farbe - About Über - - News Feed - News Feed - Forums Foren @@ -4914,10 +4113,6 @@ p, li { white-space: pre-wrap; } Applications - - Settings - Einstellungen - Plugins @@ -4962,24 +4157,12 @@ p, li { white-space: pre-wrap; } Status Status - - Online - Online - - - Busy - Beschäftigt - - - Away - Abwesend - MessageComposer Compose - + Verfassen Contacts @@ -5047,7 +4230,7 @@ p, li { white-space: pre-wrap; } Decrease font size - + Verkleinere Schrift Bold @@ -5087,7 +4270,7 @@ p, li { white-space: pre-wrap; } Size - + Grösse Sources @@ -5127,7 +4310,7 @@ p, li { white-space: pre-wrap; } Attach File - + Datei Anhängen Quote @@ -5176,11 +4359,11 @@ Do you want to save message to draft box? &Open... - + O&ffnen... &Save - + S&peichern Save &As File @@ -5208,7 +4391,7 @@ Do you want to save message to draft box? &Undo - + Rü&ckgängig &Redo @@ -5220,11 +4403,11 @@ Do you want to save message to draft box? &Copy - + Ko&pieren &Paste - + Einfü&gen &View @@ -5293,11 +4476,11 @@ Wollen Sie sie speichern? - I recommend a good friend of me, you can trust him too when you trust me. <br> Copy person link and paste to Friends list + No Title - No Title + I recommend a good friend of me, you can trust him too when you trust me. <br> Copy friend link and paste to Friends list @@ -5342,14 +4525,6 @@ Wollen Sie sie speichern? MessageToaster - - message - anschreiben - - - New Message - Neue Nachricht - Play video Video abspielen @@ -5525,10 +4700,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">New Message</p></body></html> <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Eine Neue Nachricht schreiben</p></body></html> - - Download All - Alle herunterladen - Print Document Dokument drucken @@ -5545,10 +4716,6 @@ p, li { white-space: pre-wrap; } From: Von: - - Date: - Datum: - To: An: @@ -5569,14 +4736,6 @@ p, li { white-space: pre-wrap; } Print Drucken - - PrintPreview - Druckvorschau - - - # - # - Forward selected Message Gewählte Nachricht weiterleiten @@ -5617,30 +4776,6 @@ p, li { white-space: pre-wrap; } Anonymous Anonym - - File Request Confirmation - Datei Anforderung - - - The file has been added to your download list. - Die Datei wurde zur Downloadliste hinzugefügt. - - - File Request canceled - Datei Anforderung abgebrochen - - - The file has not been added to your download list, because you already have it. - Die Datei wurde nicht zur Downloadliste hinzugefügt, da Sie sie schon haben. - - - File Request Error - Datei Anforderungs Fehler - - - The file link is malformed. - Dateiverknüpfung ist fehlerhaft. - Save as... Speichern als... @@ -5649,10 +4784,6 @@ p, li { white-space: pre-wrap; } HTML-Files (*.htm *.html);;All Files (*) HTML-Dateien (*.htm *.html);;Alle Dateien (*) - - Replay to All - Antworten an Alle - Reply to All Allen antworten @@ -5696,26 +4827,6 @@ p, li { white-space: pre-wrap; } Folders Ordner - - Important - Wichtig - - - Work - Dienstlich - - - Personal - Persönlich - - - Todo - Zu erledigen - - - Later - Später - Remove All Tags Alle Schlagwörter entfernen @@ -5753,148 +4864,15 @@ p, li { white-space: pre-wrap; } Gesamt: - - MessagesPopupDialog - - New Message - Neue Nachricht - - - Remove Messages - Löschen - - - Reply to Message - Auf die Nachricht antworten - - - Forward Message - Weiterleiten - - - Remove Message - Nachricht entfernen - - - Download All - Alle herunterladen - - - Print Document - Dokument drucken - - - Inbox - E-Mail-Eingang - - - Outbox - E-Mail-Ausgang - - - Draft - Entwürfe - - - Sent - Gesendete E-Mails - - - From - Von - - - Subject - Betreff - - - Date - Datum - - - Subject: - Betreff: - - - From: - Von: - - - Date: - Datum: - - - To: - An: - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Recommended Files</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Empfohlene Dateien</span></p></body></html> - - - File Name - Dateiname - - - Size - Grösse - - - Sources - Quellen - - - Hash - Prüfsumme - - - Compose - Erstellen - - - Forward - Vorwärts - - - Remove - Entfernen - - - Print - Drucken - - - Messages - Nachrichten - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Download all Recommended Files</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Lade alle Dateien runter</p></body></html> - - - Reply - Antwort - - - PrintPreview - Druckvorschau - - MessengerWindow Expand all - Alle ausbreiten + Alle erweitern Collapse all - Alle zusammenfassen + Alle reduzieren Chat @@ -5932,23 +4910,6 @@ p, li { white-space: pre-wrap; } <strong>RetroShare instance</strong> <strong>RetroShare Instanz</strong> - - - - - - - location : - Standort: - - - - - - - - Available - Verfügbar - Save Certificate Zertifikat speichern @@ -5957,94 +4918,16 @@ p, li { white-space: pre-wrap; } Certificates (*.pqi) Zertifikate (*.pqi) - - Friend Not Online - Freund nicht Online - - - Your Friend is offline. Do you want to send them a Message instead - Freund ist Offline. Möchtest du ihm stattdessen eine E-Mail senden? - - - View - Anzeigen - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click to change your avatar</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Klicken, um den Avatar zu ändern</p></body></html> - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Change your Status and your display</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">picture here.</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ändern Sie Ihren Status und zeigen Sie hier</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ihr Bild an.</p></body></html> - - - Online - Online - - - Busy - Beschäftigt - - - Be right Back - Bin gleich wieder da - - - Away - Abwesend - - - In a Call - Telefonieren - - - Out of lunch - Zum Mittagessen - - - Apear Offline - Scheint offline - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Share a personal message with your contacts</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ändern Sie Ihren Status und zeigen Sie hier</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ihr Bild an.</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Add a Friend</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Einen Freund hinzufügen</p></body></html> - - - Send Message - Nachricht senden - - - Remove Friend - Freund entfernen - - - ... - ... - - - RetroShare Messenger - + <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Einen Freund hinzufügen</p></body></html> Click to Change your Avatar - Ändere deinen Avatar + Klick zum Ändern deines Avatars Change your Personal Status here... @@ -6056,11 +4939,11 @@ p, li { white-space: pre-wrap; } Sort Descending Order - Absteigend + Absteigend sortieren Sort Ascending Order - Aufsteigend + Aufsteigend sortieren Set root is Decorated @@ -6084,82 +4967,27 @@ p, li { white-space: pre-wrap; } Reset - - - - Peer Online - Nachbar Online + Zurücksetzen Sort by State - + Sortiere nach Status Recomend this Friend to... - Freund weiterempfehlen... + Freund weiterempfehlen... Paste retroshare Link - + Retroshare Link einfügen - Idle - Untätig - - - - MsgFeed - - Form - Formular + RetroShare Messenger + - Msgs In: - Nchr. ein: - - - Inbox - E-Mail-Eingang - - - Outbox - E-Mail-Ausgang - - - Drafts - Entwürfe - - - Sent - Gesendete E-Mails - - - From: - Von: - - - All - Alle - - - Sort By: - Sortieren nach: - - - Date - Datum - - - Subject - Betreff - - - Received - Erhalten - - - New Msg - Neue Nachricht + location + Standort @@ -6233,46 +5061,6 @@ Nachricht hier No local network Kein lokales Netwerk - - UPNP is active. - UPNP ist aktiv - - - UPNP NOT FOUND. - UPNP wurde nicht gefunden - - - Stable External IP Address - Stabile Externe IP Adresse - - - Not Found External Address - Externe Adresse nicht gefunden - - - UDP Port is reachable - UDP Port ist erreichbar - - - UDP Port is not reachable - UDP Port ist nicht erreichbar - - - TCP Port is reachable - TCP Port ist erreichbar - - - TCP Port is not reachable - TCP Port ist nicht erreichbar - - - Net Limited - Netz limitiert - - - No Conectivity - Keine Verbindung - OK | RetroShare Server @@ -6280,10 +5068,6 @@ Nachricht hier NetworkDialog - - Load Certificate - Zertifikat laden - Select a pem/pqi File Wählen einer PEM- oder PQI-Datei @@ -6304,10 +5088,6 @@ Nachricht hier Unable to create %1 [%2] Kann nicht erstellt werden %1 [%2] - - None - Keine - Has authenticated me Hat mich authentifiziert @@ -6326,49 +5106,10 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. Certificates (*.pqi *.pem) Zertifikate (*.pqi *.pem) - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Network:</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Netzwerk:</span></p></body></html> - - - # - # - - - Accept - Bestätigen - - - Trust - Vertrauen - - - Last Contact - Letzter Kontakt - Name Name - - Peer Address - Adresse des Peers - - - Organisation - Organisation - - - Location - Ort - - - Country - Land - Did I authenticated peer Habe ich den Peer authentifiziert @@ -6421,23 +5162,10 @@ p, li { white-space: pre-wrap; } Create a new Profile Erstelle neues Profil - - RetroShare %1 started. - e.g: RetroShare v0.x started. - RetroShare %1 gestartet. - Welcome to RetroShare. Willkommen bei RetroShare. - - Make Friend / Peer Details - Zum Freund machen / Nachbar-Details - - - Deny - Ablehnen - Form Formular @@ -6458,27 +5186,10 @@ p, li { white-space: pre-wrap; } Log Log - - Network View - Netzwerk-Ansicht - Clear Leeren - - Peer Details - Peer-Details - - - is trusting you. -Right-click and select 'make friend' to be able to connect. - vertraut Ihnen. Drücken Sie die rechte Maustaste und wählen Sie "Freund hinzufügen" , um eine Verbindung herzustellen. - - - View - Anzeige - RetroShare %1 started. RetroShare %1 gestartet. @@ -6491,10 +5202,6 @@ Right-click and select 'make friend' to be able to connect. Deny friend Blockiere Freund - - Accept friend - Akzeptiere Freund - Make friend Freund hinzufügen @@ -6511,26 +5218,10 @@ Right-click and select 'make friend' to be able to connect. Peer details... Peer-Dateils - - Trusted - Vertrauenswürdig - - - Denied - Blockiert - - - Is trusting me - Vertraut mir - Unknown Unbekannt - - Never seen - Noch nie gesehen - Authentication matrix Authentifizierungsmatrix @@ -6599,78 +5290,14 @@ Right-click and select 'make friend' to be able to connect. external address finder didn't found anything Externer IP-Finder hat nichts gefunden - - DHT OK - DHT ist OK - DHT is not working (down). DHT läuft nicht - - Stable External IP Address - Stabile Externe IP Adresse - - - Not Found External Address - Externe Adresse nicht gefunden - - - UDP Port is reachable - UDP Port ist erreichbar - - - UDP Port is not reachable - UDP Port ist nicht erreichbar - - - TCP Port is reachable - TCP Port ist erreichbar - - - TCP Port is not reachable - TCP Port ist nicht erreichbar - - - RetroShare Server - RetroShare Server - - - Net Limited - Netz Limitiert - - - No Conectivity - Keine Verbindung - - - Your trust - Dein Vertrauen - - - Peer's trust - Peers Vertrauen - Network Status Netzwerk-Status - - Limited - Limitiert - - - UDP Connections - UDP Verbindungen - - - Stable External IP Addrress - Stabile Externe IP Adresse - - - UPnP Active - UPnP ist aktive - Set Tabs Right Setze Tabs nach Rechts @@ -6736,24 +5363,6 @@ p, li { white-space: pre-wrap; } RetroShare Zertifikat (*.rsc );;Alle Dateien (*) - - NetworkPage - - Rate Options - Geschwindigkeits-Optionen - - - Max Total Data Rate (KB/S): - Ihre max. Uploadgeschwindigkeit (in KB/S): - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Rate per Person (KB/S):</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Transfer-Geschwindigkeit pro Person (KB/S):</p></body></html> - - NetworkView @@ -6967,14 +5576,6 @@ p, li { white-space: pre-wrap; } Good Gut - - Make Friend - Als Freund wählen - - - Remove Friend - Freund entfernen - Send Mail Nachricht senden @@ -6995,22 +5596,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Peer Id:</span></p></body></html> - - RsId: - RsId: - - - Organisation - Organisation - Location Ort - - Country - Land - IP Address IP-Adresse @@ -7019,10 +5608,6 @@ p, li { white-space: pre-wrap; } Connection Method Verbindungsmethode - - Last Contact: - letzter Kontakt: - TextLabel @@ -7039,13 +5624,25 @@ p, li { white-space: pre-wrap; } Start Chat Chat starten + + Write a quick Message + + + + Send + Senden + + + Cancel + Abbrechen + + + Quick Message + + PeerStatus - - Online: 0 |Friends: 0|Network: 0 - Online: 0 | Freunde: 0 | Netzwerk: 0 - Online: 0 | Friends: 0 | Network: 0 Online: 0 | Freunde: 0 | Netzwerk: 0 @@ -7058,14 +5655,6 @@ p, li { white-space: pre-wrap; } <span style="color:#0000FF"><strong>Online:</strong></span> <span style="color:#0000FF"><strong>Online:</strong></span> - - Friends: - Freunde: - - - Network: - Netzwerk: - PeersDialog @@ -7077,10 +5666,6 @@ p, li { white-space: pre-wrap; } Export Friend Zertifikat des Freundes exportieren - - Remove Friend - Freund entfernen - Save Certificate Zertifikat speichern @@ -7093,32 +5678,17 @@ p, li { white-space: pre-wrap; } Status Status - - Person - Person - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Friends</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Freunde</span></p></body></html> - Connect To Friend Verbinde zum Freund - - # - # - Profile Profil Paste retroshare Link - RetroShare Link Einfügen + Retroshare Link einfügen Welcome to RetroShare's group chat. @@ -7126,11 +5696,11 @@ p, li { white-space: pre-wrap; } Expand all - Alle ausklappen + Alle erweitern Collapse all - Alle einklappen + Alle reduzieren Message Friend @@ -7156,86 +5726,37 @@ p, li { white-space: pre-wrap; } <strong>RetroShare instance</strong> - - location : - Standort: - - - Online - Online - Available Verfügbar - - Offline - - - - Friend Not Online - Freund is nicht Online - - - Your Friend is offline -Do you want to send them a Message instead - Dein Freund ist Offline willst du ihm stattdesen eine Nachricht senden - Create a new Channel - Erstelle neues Kanal + Erstelle neuen Kanal New Channel - Neues Kanal + Neuer Kanal Add Extra File - Zusätzlich eine Datei hinzufügen - - - File Request Confirmation - Datei Anforderung - - - The file has been added to your download list. - Die Datei wurde zur download liste hinzugefügt. - - - File Request canceled - Datei Anforderung abgebrochen - - - The file has not been added to your download list, because you already have it. - Die datei wurde nich zu download list hinzugefügt, da sie es schon haben. - - - File Request Error - Datei Anforderung Fehler - - - The file link is malformed. - Datei verknüpfung ist fehlerhaft. + Zusätzliche Datei hinzufügen Drop file error. - Drop date fehler. + Dateifehler bei drag and drop. File not found or file name not accepted. - Datei nicht gefungen oder dateiname nicht akzeptiert + Datei nicht gefunden oder Dateiname nicht akzeptiert. Directory can't be dropped, only files are accepted. - Ordner können nicht genutzt werden für Drag und Drop nur dateien werden akzeptiert + Ordner können nicht für Drag und Drop genutzt werden. Nur Dateien werden akzeptiert. (me) - (ich) - - - - - + (ich) Italic @@ -7261,10 +5782,6 @@ p, li { white-space: pre-wrap; } Add Hinzufügen - - hide unconnected - Offline Freunde ausblenden - Add or Change your Avatar Wähle oder ändere dein Avatar Bild @@ -7289,10 +5806,6 @@ p, li { white-space: pre-wrap; } Bold Fett - - Create New Forum - Erstelle neues Forum - Create new Forum Erstelle neues Forum @@ -7301,10 +5814,6 @@ p, li { white-space: pre-wrap; } F - - Create New Channel - Erstelle neuen Kanal - Create new Channel Erstelle neuen Kanal @@ -7329,14 +5838,6 @@ p, li { white-space: pre-wrap; } Edit your status Message Statusnachricht ändern - - Disable Emoticons - deaktiviere Emoticons - - - Text Color - Text-Farbe - Add Friend Freund hinzufügen @@ -7363,7 +5864,7 @@ p, li { white-space: pre-wrap; } Attach File - Datei Anhängen + Datei anhängen Send @@ -7375,40 +5876,12 @@ p, li { white-space: pre-wrap; } Profile View - + Save Chat History Chat Verlauf speichern - - Peer Idle - Untätig - - - Idle - Untätig - - - Peer Online - Online - - - Peer Away - Abwesend - - - Away - Abwesend - - - Peer Busy - Beschäftigt - - - Busy - Beschäftigt - RetroShare @@ -7423,7 +5896,7 @@ p, li { white-space: pre-wrap; } Text File (*.txt );;All Files (*) - + Text Datei (*.txt );;Alle Dateien (*) <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -7453,10 +5926,6 @@ p, li { white-space: pre-wrap; } Recomend this Friend to... Freund weiterempfehlen... - - Paste Person Link - Freund Link einfügen - is typing... tippt... @@ -7469,40 +5938,17 @@ p, li { white-space: pre-wrap; } Browse History Nachrichtenverlauf - - - PeersFeed - - Save Certificate - Zertifikat speichern - - - Certificates (*.pqi) - Zertifikate (*.pqi) - - - Form - Formular - - - Show: - Zeige: - Friends - Freunde + Freunde - Online Friends - Freunde online + Paste Friend Link + Retroshare Link einfügen - Friends of Friends. - Freunde von Freunden. - - - All Peers - Alle Nachbarn + location + Standort @@ -7625,10 +6071,6 @@ p, li { white-space: pre-wrap; } PhotoShow - - Form - Formular - Date: Datum: @@ -7746,10 +6188,6 @@ p, li { white-space: pre-wrap; } PopupChatDialog - - RetroShare - Chat - RetroShare - Chat - Hide Avatar Avatar verstecken @@ -7766,30 +6204,6 @@ p, li { white-space: pre-wrap; } :images/show_toolbox_frame.png :images/show_toolbox_frame.png - - Open Style - Stil öffen - - - Styles (*.htm) - Stile (*.htm) - - - Badly formed RS link - Falsch geformter RS Link - - - This RetroShare link is malformed. This is bug. Please contact the developers. - Dieser RetroShare link ist falsch geformt. Es handelt sich um einen Fehler. Bitte kontaktieren Sie die Entwickler. - - - File Request canceled - Dateianforderung abgebrochen - - - The file has not been added to your download list, because you already have it, or you're already downloading it. - Die Datei wird nicht heruntergeladen, das Sie sie schon haben oder gerade herunterladen. - File not found or file name not accepted. Datei nicht gefunden oder Dateiname nicht akzeptiert. @@ -7830,18 +6244,10 @@ p, li { white-space: pre-wrap; } Disable Emoticons deaktiviere Emoticons - - RetroShare - Encrypted Chat - RetroShare - Verschlüsselter Chat - Paste retroshare Link Retroshare Link Einfügen - - Chatting with - Chatte mit - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -7869,22 +6275,6 @@ p, li { white-space: pre-wrap; } Add Extra File Zusätzlich eine Datei hinzufügen - - File Request Confirmation - Bestätigung der Dateianforderung - - - The file has been added to your download list. - Die Datei wurde zur Downloadliste hinzugefügt. - - - File Request Error - Datei Anforderung Fehler - - - The file link is malformed. - Datei verknüpfung ist fehlerhaft. - Drop file error. Dateifehler bei drag and drop. @@ -7907,11 +6297,7 @@ p, li { white-space: pre-wrap; } Text File (*.txt );;All Files (*) - - - - Friend Not Online - + Text Datei (*.txt );;Alle Dateien (*) Your Friend is offline @@ -7930,26 +6316,10 @@ p, li { white-space: pre-wrap; } Attach a Picture Bild anhängen - - RetroShare - - - - - is typing... - macht gerade eine Eingabe... - TextLabel - - Messages will be lost and not delivered, write a rs Mail instead. - Nachrichten, die Sie versenden gehen bei diesem Kontakt nicht ein. Diesem Kontakt stattdessen eine RS-Mail senden. - - - apears to be Offline - ist Offline - is Idle and may not reply antwortet möglicherweise nicht, da der status auf "Untätig" gesetzt wurde @@ -7980,24 +6350,16 @@ Diesem Kontakt stattdessen eine RS-Mail senden. Schliessen - (Idle) - (Untätig) + T + - (Away) - (Abwesend) - - - (Busy) - (Beschäftigt) - - - (Online) + RetroShare - (Offline) - + Friend not Online + Freund ist nicht online @@ -8045,10 +6407,6 @@ Diesem Kontakt stattdessen eine RS-Mail senden. Move Profile Entry Down Profil-Eintrag nach unten - - Form - Formular - Profile Profil @@ -8144,14 +6502,6 @@ Diesem Kontakt stattdessen eine RS-Mail senden. Download All Alle herunterladen - - Form - Formular - - - Rs ID - Rs ID - Name Name @@ -8160,10 +6510,6 @@ Diesem Kontakt stattdessen eine RS-Mail senden. Last Post: letztes Posting: - - Profile - Profil - Category Kategorie @@ -8315,10 +6661,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; color:#76746c;">External Address:</span></p></body></html> - - Addresses list - Adressenliste - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8444,19 +6786,19 @@ p, li { white-space: pre-wrap; } File Request Confirmation - + Bestätigung der Dateianforderung The file has been added to your download list. - + Die Datei wurde zur Downloadliste hinzugefügt. File Request canceled - + Dateianforderung abgebrochen The file has not been added to your download list, because you already have it. - + Die Datei wurde nicht zur Downloadliste hinzugefügt, da Sie sie schon haben. Friend Request Confirmation @@ -8484,11 +6826,11 @@ p, li { white-space: pre-wrap; } File Request Error - + Fehler bei der Dateianforderung The file link is malformed. - + Link ist fehlerhaft. File Request @@ -8498,6 +6840,46 @@ p, li { white-space: pre-wrap; } Process of RetroShare links is not implemented. Please use copy instead. + + Offline + + + + Away + Abwesend + + + Busy + Beschäftigt + + + Online + + + + Peer is offline + Freund ist offline + + + Peer is away + Freund ist abwesend + + + Peer is busy + Freund ist beschäftigt + + + Peer is online + Freund ist online + + + Idle + Untätig + + + Peer is idle + Freund ist untätig + QuickStartWizard @@ -8716,10 +7098,6 @@ p, li { white-space: pre-wrap; } Appearance Aussehen - - File Associations - Dateiverknüpfungen - Sound Sound @@ -8732,10 +7110,6 @@ p, li { white-space: pre-wrap; } Error Saving Configuration on page Fehler beim Speichern der Konfiguration auf der Seite - - Error Saving Configuration - Fehler beim Speicherung der Einstellungen - Message Nachricht @@ -8786,10 +7160,6 @@ p, li { white-space: pre-wrap; } What's new Was ist neu - - Rank - Platzierung - Age Alter @@ -8810,10 +7180,6 @@ p, li { white-space: pre-wrap; } DIR ORDNER - - Hash - Prüfsumme - Rshare @@ -8962,13 +7328,6 @@ p, li { white-space: pre-wrap; } Folder Ordner - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Format</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Format</p></body></html> - Any Alle @@ -8981,42 +7340,6 @@ p, li { white-space: pre-wrap; } Video Video - - Images - Bilder - - - Programs - Programme - - - Archives - Archive - - - Documents - Dokumente - - - Toggle advanced searching on and off. - Schaltet erweiterte Suchfunktionen an- oder ab. - - - <h3>Simple Search:</h3> - <h3>Einfache Suche:</h3> - - - Keywords - Schlüsselwörter - - - Perform simple search - Einfache Suche durchführen - - - Show Advanced Search Tool - Zeige erweiterte Suchmöglichkeit - Filename Dateiname @@ -9037,10 +7360,6 @@ p, li { white-space: pre-wrap; } Search Id Such ID - - <h3>Advanced Search:</h3> - <h3>Erweiterte Suche:</h3> - Download Notice @@ -9163,13 +7482,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Download Selected</span></p></body></html> - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Download Select</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Auswahl Downloaden</p></body></html> - Close All Search Results Schließe alle Suchergebnisse @@ -9196,63 +7508,10 @@ p, li { white-space: pre-wrap; } ServerPage - - Change + Restart Server - Ändern und Server neustarten - - - Server Settings - Einstellungen dieses Peers - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">External Adress:</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Externe Adresse:</p></body></html> - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Lokal Adress:</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Lokale Adresse:</p></body></html> - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Port:</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Port:</p></body></html> - Port: Port: - - Misc - Verschiedenes - - - behinde Firewall - Hinter einer Firewall - - - Forwarded External Port - Externer Port wird im Router weitergeleitet - - - Network Configuration (takes effect after restart) - Netzwerk-Konfiguration (wird erst nach Neustart wirksam) - - - DHT Enabled - DHT aktiviert - - - DHT Disabled - DHT abgeschaltet - Local Address Lokale Adresse @@ -9261,30 +7520,10 @@ p, li { white-space: pre-wrap; } External Address Externe Adresse - - Network Status - Netzwerk-Status - Transfer Rates Übertragungsgeschwindigkeiten - - Total Rate (KB/s) - Gesamt-Rate (KB/s) - - - Per Person - Pro Person - - - Automatic - Automatik - - - Forwarded Port - Port-Weiterleitung - Automatic (Upnp) Automatisch (UPnP) @@ -9351,18 +7590,6 @@ Es hilft auch, wenn Sie sich hinter einer Firewall/VPN befinden. Allow RetroShare to ask my ip to these websites: Erlaube RetroShare folgende Webseiten nach Ihrer IP zu fragen: - - No Conectivity - Keine Verbindung - - - Limited - Netz Limitiert - - - Stable External IP Addrress - Stabile Externe IP Adresse - Dynamic DNS @@ -9370,10 +7597,6 @@ Es hilft auch, wenn Sie sich hinter einer Firewall/VPN befinden. Settings - - Settings - Einstellungen - Options Optionen @@ -9398,10 +7621,6 @@ Es hilft auch, wenn Sie sich hinter einer Firewall/VPN befinden. Cancel Abbrechen - - Apply - Bestätigen - OK OK @@ -9410,10 +7629,6 @@ Es hilft auch, wenn Sie sich hinter einer Firewall/VPN befinden. General Allgemein - - Network - Netzwerk - Server Server @@ -9571,18 +7786,10 @@ p, li { white-space: pre-wrap; } Do you really want to stop sharing this directory ? Möchten Sie wirklich die Freigabe dieses Ordners aufheben? - - Remove selected Shared Directory - Freigabe-Verzeichnise entfernen - Remove Entfernen - - Add Shared Directory - Freigabe-Verzeichnis hinzufügen - Warning! Warnung! @@ -9627,14 +7834,6 @@ p, li { white-space: pre-wrap; } Close Schliessen - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt; font-weight:600; color:#32cd32;">Share Manager</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:16pt;"><span style=" font-size:10pt;">Add a new Folder to Share with your Friends or remove a Shared Folder.</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16pt; font-weight:600; color:#32cd32;">Freigabe Manager</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:16pt;"><span style=" font-size:10pt;">Füge neue Freigaben hinzu oder entferne Freigaben</span></p></body></html> - Add Hinzufügen @@ -9643,10 +7842,6 @@ p, li { white-space: pre-wrap; } Shared Directory Added! Verzeichniss wurde hinzugefügt! - - Do You Want to Remove ? - Willst du es Entfernen? - Shared Folder Manager Verzeichniss Freigabe Manager @@ -9658,57 +7853,6 @@ p, li { white-space: pre-wrap; } Download Herunterladen - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Files</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Dateien</span></p></body></html> - - - Add to Recommend List - Zur Empfehlungsliste hinzufügen - - - Recommend To - Empfohlen an - - - Message Friend - Freund benachrichtigen - - - Play File(s) - Spiele Datei(en) - - - Hide Lokal Direrectories - Verberge lokale Verzeichnisse - - - :images/hide_toolbox_frame.png - :images/hide_toolbox_frame.png - - - Show Lokal Directories - Zeige lokale Verzeichnisse - - - :images/show_toolbox_frame.png - :images/show_toolbox_frame.png - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Files</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Dateien</span></p></body></html> - Splitted View geteiltes Fenster @@ -9821,14 +7965,6 @@ p, li { white-space: pre-wrap; } <strong>Files</strong> <strong>Dateien</strong> - - Friends Share - Freunde-Dateien - - - My Shared Files - Freigegebene Dateien - Download selected ausgewähltes Herunterladen @@ -9840,22 +7976,10 @@ p, li { white-space: pre-wrap; } Sound Events Soundereignisse - - User - Benutzer - go Online Online - - go Offline - Offline - - - ... - ... - FileSend Dateitransfer @@ -9876,10 +8000,6 @@ p, li { white-space: pre-wrap; } Chatmessage Chatnachricht - - New - Neu - Friend Freund @@ -9903,22 +8023,6 @@ p, li { white-space: pre-wrap; } RetroShare Retroshare - - generate new a profile - erstelle neues Profil - - - Auto-login - Auto-login - - - Name: - Name: - - - PGP Password - PGP Passwort - Log In Log In @@ -9947,14 +8051,6 @@ p, li { white-space: pre-wrap; } Remember Password Merke Passwort - - Password: - Passwort: - - - You have a Profile? - Haben Sie ein Profil? - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -9964,24 +8060,6 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:18pt; color:#55aaff;"></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"><p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:18pt; color:#55aaff;">Login</span></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:18pt; color:#55aaff;"></p></body></html> - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:10pt;">You can login with your Default</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;">RetroShare profile.</p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;">You have a Profile?</p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-size:10pt;">Du kannst dich einloggen mit deinem Standard Profil</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;">RetroShare Profil.</p><p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;">Du hast ein Profil?</p></body></html - - - Generate now a Profile - Erstelle ein neus Profil - - - generate now a profile - Erstelle ein neues Profil - Login Failure Loginfehler @@ -9998,16 +8076,6 @@ p, li { white-space: pre-wrap; } Insecure Unsicher - - Auto Login is not Secure: Password stored on disk - Automatischer Login ist nicht sicher: Passwort wird auf der Festplatte gespeichert - - - This will generate a new Profile - Are you sure you want to continue - Dies wird ein neues Profil anlegen -Sind Sie sicher, dass weitergemacht werden soll - Auto Login is not so much secure: - Your SSL certificate will be stored unprotected. @@ -10051,10 +8119,6 @@ This choice be reverted in settings. Downloaded: Heruntergeladen: - - Average Downloadspeed: - Durchschnittliche Geschwindigkeit beim Herunterladen: - Count of Downloads: Anzahl an heruntergeladenen Dateien: @@ -10075,10 +8139,6 @@ This choice be reverted in settings. Uploaded: Hochgeladen: - - Average Uploadspeed: - Durchschnittliche Geschwindigkeit beim Hochladen: - Count of Uploads: Anzahl an hochgeladenen Dateien: @@ -10095,18 +8155,10 @@ This choice be reverted in settings. Peers: Peers: - - Misc - Verschiedenes - Uptime: Laufzeit online: - - Overall: - Insgesamt: - Uptime Laufzeit online @@ -10358,22 +8410,10 @@ p, li { white-space: pre-wrap; } RetroShare - - Your Cert is copied to Clipbard, paste and send it to yourfriend via email or some other way - Dein Zertifikat wurde in die Zwischenablage kopiert - Text certificate Text-Zertifikat - - Use text representation of the XPGP certificates. - Verwenden Sie Text Vertretung des XPGP Zertifikat's. - - - The text below is your XPGP certificate. You have to provide it to your friend - Der folgende Text ist Ihr XPGP Zertifikat. Sie können es zu Ihrem Freund geben. - Copy your Cert to Clipboard Kopiere dein Zertifikat in die Zwischenablage @@ -10382,18 +8422,10 @@ p, li { white-space: pre-wrap; } Run Email program Starte das Standard-Emailprogramm - - Please, paste your friends XPGP certificate into the box below - Bitte fügen das XPGP-Zertifikat von Ihre Freunde in das Feld unten ein - Connect Friend Help - - You can copy this text and send it to your friend via email, ICQ or some other way - Sie können diesen Tex kopieren und senden, an Ihre Freund per E-Mail, ICQ oder andere Weise - Certificate Load Failed Das Zertifikat konnte nicht geladen werden @@ -10407,31 +8439,12 @@ p, li { white-space: pre-wrap; } - - TransferFeed - - Form - Formular - - - Sort: - Sortierung: - - - None - Keine - - TransferPage Form Formular - - Transfer - Transfer - Transfer options Übertragungsoptionen @@ -10491,13 +8504,6 @@ p, li { white-space: pre-wrap; } Completed Fertiggestellt - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Downloads:</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Downloads:</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -10534,13 +8540,6 @@ p, li { white-space: pre-wrap; } Tunneling - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Uploads:</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Uploads:</span></p></body></html> - Name i.e: file name @@ -10551,11 +8550,6 @@ p, li { white-space: pre-wrap; } i.e: file size Grösse - - Progress - i.e: % downloaded - Fortschritt - Speed i.e: Download speed @@ -10571,20 +8565,10 @@ p, li { white-space: pre-wrap; } i.e: Sources Quellen - - Remaining - i.e: Estimated Time of Arrival / Time left - Verbleibend - Core-ID Kern-ID - - User Name - i.e: user name - Benutzername - Progress i.e: % uploaded @@ -10635,10 +8619,6 @@ p, li { white-space: pre-wrap; } Paste retroshare Link retroshare Link Einfügen - - View - Anzeige - Down Runter @@ -10862,22 +8842,6 @@ p, li { white-space: pre-wrap; } F2F router information F2F Routerinformationen - - File Name - Dateiname - - - Hash - Prüfsumme - - - Type - Typ - - - Age - Alter - ULListDelegate