diff --git a/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp b/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp index 0ec9933c4..2f1374813 100755 --- a/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp +++ b/retroshare-gui/src/gui/connect/ConnectFriendWizard.cpp @@ -64,6 +64,8 @@ ConnectFriendWizard::ConnectFriendWizard(QWidget *parent) : { ui->setupUi(this); + setAttribute(Qt::WA_DeleteOnClose, true); + /* add stylesheet to title */ QList ids = pageIds(); for (QList::iterator it = ids.begin(); it != ids.end(); ++it) { @@ -119,6 +121,17 @@ void ConnectFriendWizard::setCertificate(const QString &certificate, bool friend } } +void ConnectFriendWizard::setGpgId(const std::string &gpgId, bool friendRequest) +{ + if (!rsPeers->getPeerDetails(gpgId, peerDetails)) { + setField("errorMessage", tr("Cannot get peer details of gpg key %1").arg(QString::fromStdString(gpgId))); + setStartId(Page_ErrorMessage); + return; + } + + setStartId(friendRequest ? Page_FriendRequest : Page_Conclusion); +} + ConnectFriendWizard::~ConnectFriendWizard() { delete ui; diff --git a/retroshare-gui/src/gui/connect/ConnectFriendWizard.h b/retroshare-gui/src/gui/connect/ConnectFriendWizard.h index c29df78cb..53de99b40 100755 --- a/retroshare-gui/src/gui/connect/ConnectFriendWizard.h +++ b/retroshare-gui/src/gui/connect/ConnectFriendWizard.h @@ -31,6 +31,7 @@ public: ~ConnectFriendWizard(); void setCertificate(const QString &certificate, bool friendRequest); + void setGpgId(const std::string &gpgId, bool friendRequest); virtual bool validateCurrentPage(); virtual int nextId() const; diff --git a/retroshare-gui/src/gui/connect/ConnectFriendWizard.ui b/retroshare-gui/src/gui/connect/ConnectFriendWizard.ui index da0b0c3fe..637d18a38 100644 --- a/retroshare-gui/src/gui/connect/ConnectFriendWizard.ui +++ b/retroshare-gui/src/gui/connect/ConnectFriendWizard.ui @@ -557,7 +557,7 @@ background: white; - You have a friend request . + You have a friend request from diff --git a/retroshare-gui/src/gui/connect/FriendRequest.cpp b/retroshare-gui/src/gui/connect/FriendRequest.cpp deleted file mode 100644 index 04571ebbd..000000000 --- a/retroshare-gui/src/gui/connect/FriendRequest.cpp +++ /dev/null @@ -1,141 +0,0 @@ -/**************************************************************** - * RetroShare is distributed under the following license: - * - * Copyright (C) 2012, 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 "FriendRequest.h" - -#include -#include -#include -#include -#include - -#include - -#include -#include -#include - -#include "gui/help/browser/helpbrowser.h" -#include "gui/common/PeerDefs.h" -#include "gui/common/StatusDefs.h" -#include "gui/RetroShareLink.h" -#include "gui/notifyqt.h" -#include "gui/common/AvatarDefs.h" - - - -/* Define the format used for displaying the date and time */ -#define DATETIME_FMT "MMM dd hh:mm:ss" - -/** Default constructor */ -FriendRequest::FriendRequest(const std::string& id, QWidget *parent, Qt::WFlags flags) - : QDialog(parent, flags), mId(id) -{ - /* Invoke Qt Designer generated QObject setup routine */ - ui.setupUi(this); - - ui.headerFrame->setHeaderImage(QPixmap(":/images/user/user_request48.png")); - ui.headerFrame->setHeaderText(tr("Friend Request")); - - setAttribute(Qt::WA_DeleteOnClose, true); - - connect(ui.applyButton, SIGNAL(clicked()), this, SLOT(applyDialog())); - connect(ui.cancelButton, SIGNAL(clicked()), this, SLOT(close())); - - load(); -} - -/** Destructor. */ -FriendRequest::~FriendRequest() -{ -} - -void FriendRequest::load() -{ - RsPeerDetails detail; - if (!rsPeers->getPeerDetails(mId, detail)) - { - QMessageBox::information(this, - tr("RetroShare"), - tr("Error : cannot get peer details.")); - close(); - return; - } - - ui.name->setText(QString::fromUtf8(detail.name.c_str())); - ui.peerid->setText(QString::fromStdString(detail.id)); - - ui.avatar->setId(mId, false); - -} - -void FriendRequest::applyDialog() -{ - std::cerr << "FriendRequest::applyDialog() called" << std::endl ; - RsPeerDetails detail; - if (!rsPeers->getPeerDetails(mId, detail)) - { - if (!rsPeers->getGPGDetails(mId, detail)) { - QMessageBox::information(this, - tr("RetroShare"), - tr("Error : cannot get peer details.")); - close(); - return; - } - } - - makeFriend(); - close(); -} - -void FriendRequest::makeFriend() -{ - std::string gpg_id = rsPeers->getGPGId(mId); - if (ui.signGPGKeyCheckBox->isChecked()) { - rsPeers->signGPGCertificate(gpg_id); - } - - rsPeers->addFriend(mId, gpg_id); - - emit configChanged(); -} - -void FriendRequest::denyFriend() -{ - std::string gpg_id = rsPeers->getGPGId(mId); - rsPeers->removeFriend(gpg_id); - - emit configChanged(); -} - -void FriendRequest::signGPGKey() -{ - std::string gpg_id = rsPeers->getGPGId(mId); - if (!rsPeers->signGPGCertificate(gpg_id)) { - QMessageBox::warning ( NULL, - tr("Signature Failure"), - tr("Maybe password is wrong"), - QMessageBox::Ok); - } - - emit configChanged(); -} - diff --git a/retroshare-gui/src/gui/connect/FriendRequest.h b/retroshare-gui/src/gui/connect/FriendRequest.h deleted file mode 100644 index 26b305743..000000000 --- a/retroshare-gui/src/gui/connect/FriendRequest.h +++ /dev/null @@ -1,61 +0,0 @@ -/**************************************************************** - * RetroShare is distributed under the following license: - * - * Copyright (C) 2012, 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 _FRIENDREQUEST_H -#define _FRIENDREQUEST_H - -#include - -#include "ui_FriendRequest.h" - -class FriendRequest : public QDialog -{ - Q_OBJECT - -public: - /** Default constructor */ - FriendRequest(const std::string& id, QWidget *parent = 0, Qt::WFlags flags = 0); - /** Default destructor */ - ~FriendRequest(); - -signals: - void configChanged(); - -private: - - void load(); - -private slots: - void applyDialog(); - void makeFriend(); - void denyFriend(); - void signGPGKey(); - - -private: - std::string mId; - - /** Qt Designer generated object */ - Ui::FriendRequest ui; -}; - -#endif diff --git a/retroshare-gui/src/gui/connect/FriendRequest.ui b/retroshare-gui/src/gui/connect/FriendRequest.ui deleted file mode 100644 index e16ee5cbc..000000000 --- a/retroshare-gui/src/gui/connect/FriendRequest.ui +++ /dev/null @@ -1,284 +0,0 @@ - - - FriendRequest - - - - 0 - 0 - 404 - 294 - - - - Friend Request - - - - :/images/rstray3.png:/images/rstray3.png - - - - 6 - - - 0 - - - 0 - - - - - QFrame::NoFrame - - - QFrame::Plain - - - 1 - - - - - - - QFrame::NoFrame - - - QFrame::Plain - - - - - - - 96 - 96 - - - - - 96 - 96 - - - - - - - - Peer Info - - - - - - Name - - - - - - - true - - - - - - - Peer ID - - - - - - - true - - - - - - - - - - Qt::Vertical - - - - 20 - 2 - - - - - - - - - 12 - - - - -border: 2px solid #CCCCCC; -border-radius:6px; -background: white; - - - - You have a friend request. - - - - - - - - - Sign GPG Key - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - - - 0 - 0 - - - - QFrame::StyledPanel - - - QFrame::Raised - - - - 6 - - - - - Qt::Horizontal - - - - 175 - 20 - - - - - - - - QToolButton, QPushButton, QComboBox { -border-image: url(:/images/btn_26.png) 4; -border-width: 4; -padding: 0px 6px; -font-size: 12px; -} - -QToolButton:hover, QPushButton:hover, QComboBox:hover { -border-image: url(:/images/btn_26_hover.png) 4; -} - - - Cancel - - - false - - - - - - - <!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:8pt;">Accept Request and Close</span></p></body></html> - - - QToolButton, QPushButton, QComboBox { -border-image: url(:/images/btn_blue.png) 4; -border-width: 4; -padding: 0px 6px; -font-size: 12px; -color: white; - -} - -QToolButton:hover, QPushButton:hover, QComboBox:hover { -border-image: url(:/images/btn_blue_hover.png) 4; -} - - - Confirm - - - false - - - false - - - - - - - Qt::NonModal - - - Qt::Horizontal - - - - - - - - - - - AvatarWidget - QLabel -
gui/common/AvatarWidget.h
- 1 -
- - HeaderFrame - QFrame -
gui/common/HeaderFrame.h
- 1 -
-
- - - - -
diff --git a/retroshare-gui/src/gui/feeds/SecurityItem.cpp b/retroshare-gui/src/gui/feeds/SecurityItem.cpp index 7f91743d5..f29e537b5 100644 --- a/retroshare-gui/src/gui/feeds/SecurityItem.cpp +++ b/retroshare-gui/src/gui/feeds/SecurityItem.cpp @@ -29,7 +29,7 @@ #include "gui/msgs/MessageComposer.h" #include "gui/common/StatusDefs.h" #include "gui/connect/ConfCertDialog.h" -#include "gui/connect/FriendRequest.h" +#include "gui/connect/ConnectFriendWizard.h" #include "gui/common/AvatarDefs.h" #include "gui/notifyqt.h" @@ -330,9 +330,10 @@ void SecurityItem::friendRequest() std::cerr << "SecurityItem::friendReguest()"; std::cerr << std::endl; #endif - - FriendRequest *frDlg = new FriendRequest(mGpgId); - frDlg->show(); + + ConnectFriendWizard *connectFriendWizard = new ConnectFriendWizard; + connectFriendWizard->setGpgId(mGpgId, true); + connectFriendWizard->show(); } void SecurityItem::peerDetails() diff --git a/retroshare-gui/src/gui/toaster/FriendRequestToaster.cpp b/retroshare-gui/src/gui/toaster/FriendRequestToaster.cpp index 96ed683f6..2eae300b7 100644 --- a/retroshare-gui/src/gui/toaster/FriendRequestToaster.cpp +++ b/retroshare-gui/src/gui/toaster/FriendRequestToaster.cpp @@ -19,7 +19,7 @@ #include "FriendRequestToaster.h" #include "gui/FriendsDialog.h" -#include "gui/connect/FriendRequest.h" +#include "gui/connect/ConnectFriendWizard.h" #include "util/WidgetBackgroundImage.h" #include @@ -61,7 +61,9 @@ FriendRequestToaster::FriendRequestToaster(const std::string &gpgId, const QStri void FriendRequestToaster::friendrequestButtonSlot() { - FriendRequest *frDlg = new FriendRequest(mGpgId); - frDlg->show(); + ConnectFriendWizard *connectFriendWizard = new ConnectFriendWizard; + connectFriendWizard->setGpgId(mGpgId, true); + connectFriendWizard->show(); + hide(); } diff --git a/retroshare-gui/src/lang/retroshare_de.qm b/retroshare-gui/src/lang/retroshare_de.qm index 3bf4f920b..0aa315326 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 742cfa1ba..a75b518cb 100644 --- a/retroshare-gui/src/lang/retroshare_de.ts +++ b/retroshare-gui/src/lang/retroshare_de.ts @@ -78,12 +78,12 @@ AdvancedSearchDialog - + Add a further search criterion. Ein weiteres Such-Kriterium hinzufügen. - + Cancels the search. Bricht die Suche ab. @@ -103,17 +103,17 @@ Suchen - + Search Criteria Suchkriterien - + RetroShare: Advanced Search Retroshare: Erweiterte Suche - + Reset the search criteria. Suchkriterien zurücksetzen. @@ -1091,7 +1091,7 @@ 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:'Arial'; font-size:10pt; font-weight:600;">Kanäle</span></p></body></html> - + Display Anzeige @@ -1126,12 +1126,12 @@ p, li { white-space: pre-wrap; } Kanäle - + Loading Lade - + Set all as read @@ -1204,20 +1204,20 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download Deaktiviere Auto-Download - - + + Enable Auto-Download Aktiviere Auto-Download - + Edit Channel Details Kanal-Details bearbeiten @@ -1320,7 +1320,7 @@ Bitte wähle einen zum chatten aus. Teilnehmer zeigen - + Change nick name Ändere Spitznamen @@ -1349,7 +1349,7 @@ 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-weight:600;">Chat Lobbies</span></p></body></html> - + Chat lobbies Chat Lobbies @@ -1477,7 +1477,7 @@ p, li { white-space: pre-wrap; } Default-Spitzname für Chat Lobbies: - + Chat Font Chat Schriftart @@ -1492,7 +1492,7 @@ p, li { white-space: pre-wrap; } Chat Schriftart: - + Enable Emoticons Group Chat Emoticons für Gruppenchat @@ -1501,7 +1501,7 @@ p, li { white-space: pre-wrap; } Chat History - + Load number of messages (0 = off) Lade Anzahl von Nachrichten (0 = aus) @@ -1533,7 +1533,7 @@ p, li { white-space: pre-wrap; } Privater Chat - + General Allgemein @@ -1551,7 +1551,7 @@ p, li { white-space: pre-wrap; } Chat Verlauf für privaten Chat - + Enable Aktiviert @@ -1695,7 +1695,7 @@ p, li { white-space: pre-wrap; } Formular - + Close Schliessen @@ -1716,24 +1716,24 @@ p, li { white-space: pre-wrap; } - + Bold Fett - - + + Underline Unterstrichen - - + + Italic Kursiv - + Font Schriftart @@ -1743,7 +1743,7 @@ p, li { white-space: pre-wrap; } Textfarbe - + Strike Durchgestrichen @@ -1994,7 +1994,7 @@ p, li { white-space: pre-wrap; } - + Friend Details Freund-Details @@ -2193,13 +2193,18 @@ und meinen GPG Schlüssel nicht unterzeichnet ConnectFriendWizard - - + + Certificate Load Failed Das Zertifikat konnte nicht geladen werden - + + Cannot get peer details of gpg key %1 + + + + Any peer I've not signed Jeden Peer, den ich nicht unterzeichnet habe @@ -2261,7 +2266,7 @@ und meinen GPG Schlüssel nicht unterzeichnet You have a friend request from - + Du hast eine Freundschaftsanfrage von @@ -2581,20 +2586,15 @@ Die folgenden Wege sind möglich: Friend request - + Freundschaftsanfrage Details about the request - + Details zur Freundschaftsanfrage - - You have a friend request . - - - - + Sorry, some error appeared Entschuldigung, es trat ein Fehler auf @@ -2630,6 +2630,10 @@ Die folgenden Wege sind möglich: Name: Name: + + You have a friend request. + Du hast eine Freundschaftsanfrage. + @@ -3120,7 +3124,7 @@ Möchten Sie die Änderungen speichern? <span style="font-size:24pt; font-weight:500;color:#32CD32;">Neuer Kanal</span> - + Name Name @@ -3135,7 +3139,7 @@ Möchten Sie die Änderungen speichern? Schlüssel verteilen an - + Contacts: Kontakte: @@ -3195,7 +3199,7 @@ Möchten Sie die Änderungen speichern? Kanal Logo - + Add Channel Logo Kanal Logo hinzufügen @@ -3210,12 +3214,12 @@ Möchten Sie die Änderungen speichern? Erstellen - + New Channel Neuer Kanal - + Please add a Name Bitte einen Name hinzufügen @@ -3285,7 +3289,7 @@ p, li { white-space: pre-wrap; } Miniaturbild hinzufügen - + Message Beitrag @@ -3398,7 +3402,7 @@ 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:'Arial'; font-size:24pt; font-weight:600; color:#ffffff;">Neues Forum</span></p></body></html> - + Name Name @@ -3496,17 +3500,17 @@ p, li { white-space: pre-wrap; } CreateForumMsg - + Post Forum Msg Forumbeitrag schreiben - + Forum Forum - + Forum Post Beitrag @@ -3516,22 +3520,22 @@ p, li { white-space: pre-wrap; } Beitrag unterschreiben - + Subject Betreff - + Close Schliessen - + Post Forum Message Erstelle Forumbeitrag - + Paste RetroShare Link RetroShare Link einfügen @@ -3717,7 +3721,7 @@ p, li { white-space: pre-wrap; } Erstelle Forumbeitrag - + Forum Forum @@ -3727,7 +3731,7 @@ p, li { white-space: pre-wrap; } Betreff - + Attach File Datei anhängen @@ -3758,7 +3762,7 @@ p, li { white-space: pre-wrap; } Du kannst Dateien mit Drag'n'Drop anhängen - + Post Forum Msg Forumbeitrag schreiben @@ -3861,32 +3865,32 @@ 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:'MS Shell Dlg 2'; font-size:18pt; font-weight:600; color:#ffffff;">Neue Chat Lobby</span></p></body></html> - + A chat lobby is a decentralized and anonymous chat group. All participants receive all messages. Once the lobby is created you can invite other friends from the Friends tab. Eine Chat Lobby ist ein dezentralisierter und anonymer Chat. Alle Teilnehmer erhalten alle Nachrichten. Wenn du eine Lobby erstellst, kannst du andere Freunde in der Freundesliste einladen. - + Lobby name: Lobby Name: - + Lobby topic: Lobby Thema: - + Your nick name: Dein Spitzname: - + Security policy: Sicherheitsrichtlinie: - + Public (Visible by friends) Öffentlich (für Freunde sichtbar) @@ -3896,7 +3900,7 @@ p, li { white-space: pre-wrap; } Privat (nur private Einladung) - + Select the Friends with which you want to group chat. Wähle die Freunde mit denen du chatten möchtest. @@ -3919,7 +3923,7 @@ p, li { white-space: pre-wrap; } Kontakte: - + Create Erstellen @@ -3966,7 +3970,7 @@ p, li { white-space: pre-wrap; } CryptoPage - + RetroShare @@ -4059,6 +4063,11 @@ p, li { white-space: pre-wrap; } Copy RetroShare link to clipboard Kopiere RetroShare Link in die Zwischenablage + + + Use old key format + Benutze altes Schlüsselformat + Security @@ -4608,7 +4617,7 @@ Das ist nützlich, wenn Du eine externe Festplatte freigibst und die Datei nicht Kanal Logo hinzufügen - + Load channel logo Lade Kanal Logo @@ -4866,7 +4875,7 @@ p, li { white-space: pre-wrap; } Ausdruck Oberfläche - + Delete this expression Den Ausdruck löschen @@ -5460,7 +5469,7 @@ p, li { white-space: pre-wrap; } ForumsDialog - + Subscribe to Forum Forum abonnieren @@ -5629,17 +5638,17 @@ 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:'Arial'; font-weight:600;">Foren</span></p></body></html> - + Thread: Thema: - + Start new Thread for Selected Forum Starte ein neues Thema im ausgewählten Forum - + Display Anzeige @@ -5656,7 +5665,7 @@ 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;">Forum:</p></body></html> - + Last Post Letzter Beitrag @@ -5672,18 +5681,18 @@ p, li { white-space: pre-wrap; } - + Date Datum - - + + Title Titel - + Forums Foren @@ -5693,13 +5702,13 @@ p, li { white-space: pre-wrap; } Forum: - - + + Author Autor - + Signed Unterzeichnet @@ -5716,7 +5725,7 @@ 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:10pt; font-weight:600;">Thema:</span></p></body></html> - + Previous Thread Vorheriger Beitrag @@ -5736,7 +5745,7 @@ p, li { white-space: pre-wrap; } Nächste ungelesene - + Search forums Suche Foren @@ -5746,17 +5755,17 @@ p, li { white-space: pre-wrap; } Auf Beitrag antworten - + Loading Lade - + Create Forum Forum erstellen - + Print Drucken @@ -5788,7 +5797,7 @@ p, li { white-space: pre-wrap; } Zurücksetzen - + Content Inhalt @@ -5847,7 +5856,7 @@ 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:'Arial'; font-weight:600;">Foren</span></p></body></html> - + Forums Foren @@ -5867,7 +5876,7 @@ p, li { white-space: pre-wrap; } Forum: - + Last Post @@ -5883,24 +5892,24 @@ p, li { white-space: pre-wrap; } - + Title Titel - - + + Date Datum - - + + Author Autor - + Signed @@ -5910,7 +5919,7 @@ p, li { white-space: pre-wrap; } Thema: - + Previous Thread Vorheriger Beitrag @@ -5930,7 +5939,7 @@ p, li { white-space: pre-wrap; } Nächste ungelesene - + Search forums Suche Foren @@ -5950,7 +5959,7 @@ p, li { white-space: pre-wrap; } Starte ein neues Thema im ausgewählten Forum - + Loading Lade @@ -5965,7 +5974,7 @@ p, li { white-space: pre-wrap; } Druckvorschau - + Your Forums Deine Foren @@ -6502,10 +6511,8 @@ p, li { white-space: pre-wrap; } FriendRequest - - Friend Request - Freundschaftsanfrage + Freundschaftsanfrage <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -6520,24 +6527,20 @@ 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:16pt; color:#ffffff;">Freundschaftsanfrage</span></p></body></html> - Confirm - Bestätigen + Bestätigen - Peer Info - Nachbar Info + Nachbar Info - Name - Name + Name - Peer ID - Peer ID + Peer ID RetroShare ID @@ -6560,14 +6563,12 @@ p, li { white-space: pre-wrap; } Voll - You have a friend request. - Du hast eine Freundschaftsanfrage. + Du hast eine Freundschaftsanfrage. - Sign GPG Key - Unterzeichne GPG Schlüssel + Unterzeichne GPG Schlüssel <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -6590,34 +6591,28 @@ p, li { white-space: pre-wrap; } Unterzeichne GPG Schlüssel - Cancel - Abbrechen + Abbrechen - <!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:8pt;">Accept Request and Close</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!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:8pt;">Bestätigen und Schliesen</span></p></body></html> - - RetroShare - RetroShare + RetroShare - - Error : cannot get peer details. - Fehler : Kann Details des Freundes nicht ermitteln. + Fehler : Kann Details des Freundes nicht ermitteln. Your trust in this peer is ultimate, it's probably a key you own. @@ -6640,14 +6635,12 @@ p, li { white-space: pre-wrap; } Dein Vertrauen in diesen Nachbarn ist nicht festgelegt. - Signature Failure - Signatur Fehler + Signatur Fehler - Maybe password is wrong - Vielleicht ist das Passwort falsch + Vielleicht ist das Passwort falsch @@ -6713,7 +6706,7 @@ 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-weight:600;">Freunde</span></p></body></html> - + Add Hinzufügen @@ -6736,7 +6729,7 @@ p, li { white-space: pre-wrap; } Wähle oder ändere dein Avatar Bild - + Edit Personal message Statusnachricht ändern @@ -6751,7 +6744,7 @@ p, li { white-space: pre-wrap; } Nachrichten, die Du hier eingibst, werden an alle verbundenen Freunde versendet - + Bold Fett @@ -6786,7 +6779,7 @@ p, li { white-space: pre-wrap; } Senden - + Clear Chat History Nachrichtenverlauf leeren @@ -7774,7 +7767,7 @@ Gib Dein GPG Passwort wenn Du gefragt wirst ein, um Deinen neuen Schlüssel zu u GetStartedDialog - + Getting Started Erste Schritte @@ -8935,7 +8928,7 @@ p, li { white-space: pre-wrap; } Zurücksetzen - + Copy Kopieren @@ -8969,12 +8962,6 @@ p, li { white-space: pre-wrap; } InfoDialog - - Info - - - - <!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; } @@ -8996,7 +8983,7 @@ 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;"><a href="http://winpt.gnupt.de/winpt.zip"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://winpt.gnupt.de/winpt.zip</span></a></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:8pt; text-decoration: underline; color:#0000ff;"></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:8pt; text-decoration: underline; color:#0000ff;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!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;"> @@ -9370,8 +9357,8 @@ Bitte gib etwas Speicher frei und drücke OK. Verfassen - - + + Contacts Kontakte @@ -9389,7 +9376,7 @@ Bitte gib etwas Speicher frei und drücke OK. Senden an: - + >> To >> An @@ -9404,7 +9391,7 @@ Bitte gib etwas Speicher frei und drücke OK. >> Bcc - + Subject: Betreff: @@ -9418,12 +9405,12 @@ Bitte gib etwas Speicher frei und drücke OK. Suche Freunde - + >> Recommend >> Empfehlen - + Heading 1 Überschrift 1 @@ -10171,7 +10158,7 @@ p, li { white-space: pre-wrap; } MessageWindow - + New Message Neue Nachricht @@ -10303,13 +10290,13 @@ p, li { white-space: pre-wrap; } MessagesDialog - - + + New Message Neue Nachricht - + Reply to Message Antworten nur an Absender @@ -10329,20 +10316,20 @@ p, li { white-space: pre-wrap; } Nachricht entfernen - - + + Date Datum - + From Von - + Reply Antworten @@ -10357,12 +10344,12 @@ p, li { white-space: pre-wrap; } Weiterleiten - + Delete Löschen - + Compose Verfassen @@ -10372,7 +10359,7 @@ p, li { white-space: pre-wrap; } Auf gewählte Nachricht antworten - + Reply all to selected message Auf gewählte Nachricht an alle Empfänger antworten @@ -10387,7 +10374,7 @@ p, li { white-space: pre-wrap; } Gewählte Nachricht entfernen - + Print selected message Gewählte Nachricht drucken @@ -10406,7 +10393,7 @@ p, li { white-space: pre-wrap; } Anhänge - + @@ -10433,12 +10420,12 @@ p, li { white-space: pre-wrap; } Gesendet - + Quick View Schnellansicht - + Print... Drucken... @@ -10480,8 +10467,8 @@ p, li { white-space: pre-wrap; } Speichern unter... - - + + Subject Betreff @@ -10496,7 +10483,7 @@ p, li { white-space: pre-wrap; } Gewählte Nachricht weiterleiten - + Starred Gekennzeichnet @@ -10516,12 +10503,12 @@ p, li { white-space: pre-wrap; } Nachrichten entfernen - + Forward Message Weiterleiten - + Click to sort by attachments Klicken, um nach Anhang zu sortieren @@ -10537,12 +10524,12 @@ p, li { white-space: pre-wrap; } - + Click to sort by from Klicken, um nach Von zu sortieren - + Click to sort by date Klicken, um nach Datum zu sortieren @@ -10552,7 +10539,7 @@ p, li { white-space: pre-wrap; } Klicken, um nach Schlagwörter zu sortieren - + System System @@ -10568,17 +10555,17 @@ p, li { white-space: pre-wrap; } - + Reply to All Allen antworten - + Total Inbox: Posteingang gesamt: - + Content Inhalt @@ -10593,15 +10580,15 @@ p, li { white-space: pre-wrap; } Schlagwörter - - + + Trash Papierkorb - + Folders Ordner @@ -10643,12 +10630,12 @@ p, li { white-space: pre-wrap; } An - + Click to sort by star Klicken, um nach Kennzeichnung zu sortieren - + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light grey star beside any message. Es sind keine gekennzeichneten Nachrichten vorhanden. Durch die Kennzeichnung kannst du Nachrichten mit einem speziellen Status versehen, sodass sie leichter zu finden sind. Klicke zum Kennzeichnen einer Nachricht auf den hellgrauen Stern neben der jeweiligen Nachricht. @@ -10725,17 +10712,17 @@ p, li { white-space: pre-wrap; } Klick zum Ändern deines Avatars - + Add a Friend Einen Freund hinzufügen - + Share Files for your Friends Ordner für deine Freunde freigeben - + Search Friends Suche Freunde @@ -10772,7 +10759,7 @@ p, li { white-space: pre-wrap; } Freund weiterempfehlen... - + RetroShare Messenger @@ -10954,25 +10941,25 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. - + Name Name - - + + Did I authenticated peer Habe ich den Peer authentifiziert - + Did I sign his gpg key Habe ich seinen GPG Schlüssel unterzeichnet - + Cert Id ID des Zertifikates @@ -11038,14 +11025,14 @@ p, li { white-space: pre-wrap; } Erstelle ein neues Profil - - + + Network Netzwerk - - + + Did peer authenticated me Hat mich der Peer authentifiziert @@ -11177,12 +11164,7 @@ p, li { white-space: pre-wrap; } NetworkView - - background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,stop:0 lightgray, stop:1 darkgray); - - - - + Redraw Neu zeichnen @@ -12264,7 +12246,7 @@ requesting to edit it! Formular - + Status: Status: @@ -12459,7 +12441,7 @@ malicious behavior of crafted plugins. Textfarbe - + Clear offline messages Entferne offline Nachrichten @@ -12572,7 +12554,7 @@ Do you want to send them a Message instead PopupChatWindow - + Avatar Avatar @@ -13238,7 +13220,7 @@ und den Import zum Laden verwenden ProfileWidget - + Edit Personal message Statusnachricht ändern @@ -13254,7 +13236,7 @@ und den Import zum Laden verwenden Profil Manager - + Public Information Öffentliche Informationen @@ -13274,7 +13256,7 @@ und den Import zum Laden verwenden Peer ID: - + Other Information Andere Informationen @@ -13294,7 +13276,7 @@ und den Import zum Laden verwenden Online seit: - + My Address Meine Adresse @@ -14022,7 +14004,7 @@ 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:26pt;">RetroShare!</span></p></body></html> - + Next > @@ -14696,7 +14678,7 @@ p, li { white-space: pre-wrap; } SearchDialog - + Sources Quellen @@ -14899,7 +14881,7 @@ p, li { white-space: pre-wrap; } Ausgewählte herunterladen - + Include files from your own file list in the search result Schließe Dateien von dir in die Suchresultate ein @@ -14940,7 +14922,7 @@ p, li { white-space: pre-wrap; } Zurücksetzen - + Advanced Search Erweiterte Suche @@ -15107,7 +15089,7 @@ p, li { white-space: pre-wrap; } Möchtest du diesen Freund entfernen? - + Quick Message Schnelle Nachrricht @@ -15662,13 +15644,13 @@ p, li { white-space: pre-wrap; } SharedFilesDialog - + Download Herunterladen - + Splitted View Geteiltes Fenster @@ -15745,7 +15727,7 @@ p, li { white-space: pre-wrap; } Listenansicht - + check files Prüfe Dateien @@ -15993,7 +15975,7 @@ p, li { white-space: pre-wrap; } - + Login Anmeldung @@ -16912,7 +16894,7 @@ 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-weight:600;">Downloads:</span></p></body></html> - + Downloads Downloads diff --git a/retroshare-gui/src/retroshare-gui.pro b/retroshare-gui/src/retroshare-gui.pro index 161b69cd9..e1f8df77a 100644 --- a/retroshare-gui/src/retroshare-gui.pro +++ b/retroshare-gui/src/retroshare-gui.pro @@ -311,7 +311,6 @@ HEADERS += rshare.h \ gui/channels/ShareKey.h \ gui/channels/ChannelUserNotify.h \ gui/connect/ConfCertDialog.h \ - gui/connect/FriendRequest.h \ gui/msgs/MessageComposer.h \ gui/msgs/MessageWindow.h \ gui/msgs/MessageWidget.h \ @@ -462,7 +461,6 @@ FORMS += gui/StartDialog.ui \ gui/chat/CreateLobbyDialog.ui \ gui/ChatLobbyWidget.ui \ gui/connect/ConfCertDialog.ui \ - gui/connect/FriendRequest.ui \ gui/connect/ConnectFriendWizard.ui \ gui/msgs/MessageComposer.ui \ gui/msgs/MessageWindow.ui\ @@ -607,7 +605,6 @@ SOURCES += main.cpp \ gui/chat/ChatStyle.cpp \ gui/chat/ChatUserNotify.cpp \ gui/connect/ConfCertDialog.cpp \ - gui/connect/FriendRequest.cpp \ gui/msgs/MessageComposer.cpp \ gui/msgs/MessageWidget.cpp \ gui/msgs/MessageWindow.cpp \