mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Redesigned ConnectFriendWizard as ui file.
Added new base class DropLineEdit. Fixed german language. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5181 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
25547d0ea8
commit
22a0f89751
@ -353,6 +353,7 @@ HEADERS += rshare.h \
|
||||
gui/common/FriendSelectionWidget.h \
|
||||
gui/common/HashBox.h \
|
||||
gui/common/LineEditClear.h \
|
||||
gui/common/DropLineEdit.h \
|
||||
gui/common/LinkTextBrowser.h \
|
||||
gui/style/RSStyle.h \
|
||||
gui/style/StyleDialog.h \
|
||||
@ -438,6 +439,7 @@ FORMS += gui/StartDialog.ui \
|
||||
gui/ChatLobbyWidget.ui \
|
||||
gui/connect/ConfCertDialog.ui \
|
||||
gui/connect/FriendRequest.ui \
|
||||
gui/connect/ConnectFriendWizard.ui \
|
||||
gui/msgs/MessageComposer.ui \
|
||||
gui/msgs/MessageWindow.ui\
|
||||
gui/msgs/MessageWidget.ui\
|
||||
@ -605,6 +607,7 @@ SOURCES += main.cpp \
|
||||
gui/common/FriendSelectionWidget.cpp \
|
||||
gui/common/HashBox.cpp \
|
||||
gui/common/LineEditClear.cpp \
|
||||
gui/common/DropLineEdit.cpp \
|
||||
gui/common/LinkTextBrowser.cpp \
|
||||
gui/style/RSStyle.cpp \
|
||||
gui/style/StyleDialog.cpp \
|
||||
|
@ -944,7 +944,9 @@ static void processList(const QStringList &list, const QString &textSingular, co
|
||||
std::cerr << "Usign this certificate:" << std::endl;
|
||||
std::cerr << RS_Certificate.toStdString() << std::endl;
|
||||
|
||||
ConnectFriendWizard(NULL,RS_Certificate).exec() ;
|
||||
ConnectFriendWizard connectFriendWizard;
|
||||
connectFriendWizard.setCertificate(RS_Certificate);
|
||||
connectFriendWizard.exec();
|
||||
needNotifySuccess = false;
|
||||
}
|
||||
break ;
|
||||
|
93
retroshare-gui/src/gui/common/DropLineEdit.cpp
Normal file
93
retroshare-gui/src/gui/common/DropLineEdit.cpp
Normal file
@ -0,0 +1,93 @@
|
||||
/****************************************************************
|
||||
*
|
||||
* 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 <QDropEvent>
|
||||
#include <QUrl>
|
||||
#include <QFileInfo>
|
||||
|
||||
#include "DropLineEdit.h"
|
||||
|
||||
DropLineEdit::DropLineEdit(QWidget *parent)
|
||||
: QLineEdit(parent)
|
||||
{
|
||||
accept.text = false;
|
||||
accept.file = false;
|
||||
accept.dir = false;
|
||||
|
||||
setAcceptDrops(true);
|
||||
}
|
||||
|
||||
void DropLineEdit::setAcceptText(bool on)
|
||||
{
|
||||
accept.text = on;
|
||||
}
|
||||
|
||||
void DropLineEdit::setAcceptFile(bool on)
|
||||
{
|
||||
accept.file = on;
|
||||
}
|
||||
|
||||
void DropLineEdit::setAcceptDir(bool on)
|
||||
{
|
||||
accept.dir = on;
|
||||
}
|
||||
|
||||
void DropLineEdit::dragEnterEvent(QDragEnterEvent *event)
|
||||
{
|
||||
if (accept.text && event->mimeData()->hasText()) {
|
||||
event->acceptProposedAction();
|
||||
return;
|
||||
}
|
||||
|
||||
if ((accept.file || accept.dir) && event->mimeData()->hasUrls()) {
|
||||
event->acceptProposedAction();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
void DropLineEdit::dropEvent(QDropEvent *event)
|
||||
{
|
||||
if (event->mimeData()->hasText()) {
|
||||
setText(event->mimeData()->text());
|
||||
}
|
||||
|
||||
if (event->mimeData()->hasUrls()) {
|
||||
QList<QUrl> urlList = event->mimeData()->urls();
|
||||
|
||||
/* if just text was dropped, urlList is empty (size == 0) */
|
||||
if (urlList.size() > 0) {
|
||||
/* if at least one QUrl is present in list */
|
||||
QString name = urlList[0].toLocalFile();
|
||||
|
||||
QFileInfo info;
|
||||
info.setFile(name);
|
||||
if (accept.file && info.isFile()) {
|
||||
setText(name);
|
||||
}
|
||||
if (accept.dir && info.isDir()) {
|
||||
setText(name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
event->acceptProposedAction();
|
||||
}
|
51
retroshare-gui/src/gui/common/DropLineEdit.h
Normal file
51
retroshare-gui/src/gui/common/DropLineEdit.h
Normal file
@ -0,0 +1,51 @@
|
||||
/****************************************************************
|
||||
*
|
||||
* 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 DROPLINEEDIT_H
|
||||
#define DROPLINEEDIT_H
|
||||
|
||||
#include <QLineEdit>
|
||||
|
||||
class DropLineEdit : public QLineEdit
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
DropLineEdit(QWidget *parent = 0);
|
||||
|
||||
void setAcceptText(bool on);
|
||||
void setAcceptFile(bool on);
|
||||
void setAcceptDir(bool on);
|
||||
|
||||
protected:
|
||||
virtual void dropEvent(QDropEvent *event);
|
||||
virtual void dragEnterEvent(QDragEnterEvent *event);
|
||||
|
||||
private:
|
||||
struct {
|
||||
bool text : 1;
|
||||
bool file : 1;
|
||||
bool dir : 1;
|
||||
} accept;
|
||||
};
|
||||
|
||||
#endif // DROPLINEEDIT_H
|
File diff suppressed because it is too large
Load Diff
@ -1,22 +1,15 @@
|
||||
#ifndef __ConnectFriendWizard__
|
||||
#define __ConnectFriendWizard__
|
||||
#ifndef CONNECTFRIENDWIZARD_H
|
||||
#define CONNECTFRIENDWIZARD_H
|
||||
|
||||
#include <map>
|
||||
#include <QWizard>
|
||||
#include <retroshare/rspeers.h>
|
||||
#include <map>
|
||||
|
||||
//QT_BEGIN_NAMESPACE
|
||||
class QCheckBox;
|
||||
class QLabel;
|
||||
class QTextEdit;
|
||||
class QLineEdit;
|
||||
class QRadioButton;
|
||||
class QVBoxLayout;
|
||||
class QHBoxLayout;
|
||||
class QGroupBox;
|
||||
class QGridLayout;
|
||||
class QComboBox;
|
||||
class QTableWidget;
|
||||
//QT_END_NAMESPACE
|
||||
|
||||
namespace Ui {
|
||||
class ConnectFriendWizard;
|
||||
}
|
||||
|
||||
//============================================================================
|
||||
//! A wizard for adding friends. Based on standard QWizard component
|
||||
@ -25,306 +18,79 @@ class QTableWidget;
|
||||
//! /-> Use text certificates \ /-> errorpage(if went wrong)
|
||||
//! intro -| |-> ->
|
||||
//! \-> Use *.pqi files / \-> fill peer details
|
||||
//!
|
||||
//! So, there are five possible pages in this wizard.
|
||||
//!
|
||||
|
||||
class ConnectFriendWizard : public QWizard
|
||||
{//
|
||||
Q_OBJECT
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
enum Page { Page_Intro, Page_Text, Page_Cert, Page_ErrorMessage, Page_Conclusion, Page_Foff, Page_Rsid, Page_Email };
|
||||
|
||||
enum { Page_Intro, Page_Text, Page_Cert, Page_ErrorMessage, Page_Conclusion,Page_Foff, Page_Rsid, Page_Email };
|
||||
ConnectFriendWizard(QWidget *parent = 0);
|
||||
~ConnectFriendWizard();
|
||||
|
||||
ConnectFriendWizard(QWidget *parent = 0,const QString& cert = QString());
|
||||
void setCertificate(const QString &certificate);
|
||||
|
||||
void setGroup(const std::string &groupId);
|
||||
virtual bool validateCurrentPage();
|
||||
virtual int nextId() const;
|
||||
virtual void accept();
|
||||
|
||||
void accept();
|
||||
void setGroup(const std::string &id);
|
||||
|
||||
protected:
|
||||
void initializePage(int id);
|
||||
|
||||
private slots:
|
||||
// void showHelp(); // we'll have to implement it in future
|
||||
};
|
||||
/* TextPage */
|
||||
void updateOwnCert();
|
||||
void toggleSignatureState();
|
||||
void runEmailClient();
|
||||
void showHelpUserCert();
|
||||
void copyCert();
|
||||
void saveCert();
|
||||
void cleanFriendCert();
|
||||
|
||||
//============================================================================
|
||||
//! Introduction page for "Add friend" wizard.
|
||||
class IntroPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
/* CertificatePage */
|
||||
void loadFriendCert();
|
||||
void generateCertificateCalled();
|
||||
|
||||
public:
|
||||
IntroPage(QWidget *parent = 0);
|
||||
/* FofPage */
|
||||
void updatePeersList(int index);
|
||||
void signAllSelectedUsers();
|
||||
|
||||
int nextId() const;
|
||||
/* ConclusionPage */
|
||||
void groupCurrentIndexChanged(int index);
|
||||
|
||||
private:
|
||||
QLabel *topLabel;
|
||||
QRadioButton *textRadioButton;
|
||||
QRadioButton *certRadioButton;
|
||||
QRadioButton *foffRadioButton;
|
||||
QRadioButton *rsidRadioButton;
|
||||
QRadioButton *emailRadioButton;
|
||||
bool error;
|
||||
RsPeerDetails peerDetails;
|
||||
|
||||
/* FofPage */
|
||||
std::map<QCheckBox*, std::string> _id_boxes;
|
||||
std::map<QCheckBox*, std::string> _gpg_id_boxes;
|
||||
|
||||
/* ConclusionPage */
|
||||
QString groupId;
|
||||
|
||||
Ui::ConnectFriendWizard *ui;
|
||||
};
|
||||
|
||||
//============================================================================
|
||||
//! Text page (for exchnging text certificates) for "Add friend" wizard.
|
||||
class TextPage : public QWizardPage
|
||||
class ConnectFriendPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
friend class ConnectFriendWizard; // for access to registerField
|
||||
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
TextPage(QWidget *parent = 0);
|
||||
ConnectFriendPage(QWidget *parent = 0);
|
||||
|
||||
int nextId() const;
|
||||
void setComplete(bool isComplete);
|
||||
virtual bool isComplete() const;
|
||||
|
||||
private:
|
||||
QLabel* userCertLabel;
|
||||
QTextEdit* userCertEdit;
|
||||
QHBoxLayout* userCertLayout;
|
||||
QVBoxLayout* userCertButtonsLayout;
|
||||
QPushButton* userCertHelpButton;
|
||||
QPushButton* userCertCopyButton;
|
||||
QPushButton* userCertIncludeSignaturesButton;
|
||||
QPushButton* userCertSaveButton;
|
||||
QPushButton* userCertMailButton;//! on Windows, click on this button
|
||||
//! launches default email client
|
||||
QLabel* friendCertLabel;
|
||||
QTextEdit* friendCertEdit;
|
||||
QPushButton* friendCertCleanButton;
|
||||
QVBoxLayout* friendCertButtonsLayout;
|
||||
QHBoxLayout* friendCertLayout;
|
||||
|
||||
QVBoxLayout* textPageLayout;
|
||||
|
||||
void setCurrentFileName(const QString &fileName);
|
||||
void updateOwnCert() ;
|
||||
|
||||
bool _shouldAddSignatures ;
|
||||
QString fileName;
|
||||
|
||||
private slots:
|
||||
void showHelpUserCert();
|
||||
void copyCert();
|
||||
void cleanFriendCert();
|
||||
void toggleSignatureState();
|
||||
|
||||
bool fileSave();
|
||||
bool fileSaveAs();
|
||||
|
||||
|
||||
//! launches default email client (on windows)
|
||||
//! Tested on Vista, it work normally... But a bit slowly.
|
||||
void runEmailClient();
|
||||
bool useComplete;
|
||||
bool complete;
|
||||
};
|
||||
|
||||
//============================================================================
|
||||
//! A page for exchanging *.pqi files, for "Add friend" wizard.
|
||||
class CertificatePage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
CertificatePage(QWidget *parent = 0);
|
||||
|
||||
int nextId() const;
|
||||
bool isComplete() const ;
|
||||
|
||||
void dropEvent(QDropEvent *event);
|
||||
void dragEnterEvent(QDragEnterEvent *event);
|
||||
|
||||
private:
|
||||
QGroupBox* userFileFrame;
|
||||
QLabel *userFileLabel;
|
||||
QPushButton* userFileCreateButton;
|
||||
QHBoxLayout* userFileLayout;
|
||||
|
||||
QLabel* friendFileLabel;
|
||||
QLineEdit *friendFileNameEdit;
|
||||
QPushButton* friendFileNameOpenButton;
|
||||
QHBoxLayout* friendFileLayout;
|
||||
|
||||
QVBoxLayout* certPageLayout;
|
||||
|
||||
private slots:
|
||||
void generateCertificateCalled();
|
||||
void loadFriendCert();
|
||||
|
||||
|
||||
};
|
||||
|
||||
//============================================================================
|
||||
//! A page for signing certificates from some people on the network (e.g. friends
|
||||
// of friends, people trusting me...)
|
||||
//
|
||||
class FofPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
FofPage(QWidget *parent = 0);
|
||||
|
||||
int nextId() const;
|
||||
bool isComplete() const ;
|
||||
|
||||
private:
|
||||
// QGroupBox* userFileFrame;
|
||||
QLabel *userFileLabel;
|
||||
QVBoxLayout *userFileLayout;
|
||||
QComboBox *userSelectionCB;
|
||||
QPushButton* makeFriendButton;
|
||||
QTableWidget *selectedPeersTW;
|
||||
|
||||
QVBoxLayout* certPageLayout;
|
||||
|
||||
bool _friends_signed ;
|
||||
std::map<QCheckBox*,std::string> _id_boxes ;
|
||||
std::map<QCheckBox*,std::string> _gpg_id_boxes ;
|
||||
|
||||
private slots:
|
||||
void signAllSelectedUsers() ;
|
||||
void updatePeersList(int) ;
|
||||
};
|
||||
|
||||
|
||||
//============================================================================
|
||||
//! Page for displaying error messages (for "Add friend" wizard).
|
||||
class ErrorMessagePage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
ErrorMessagePage(QWidget *parent = 0);
|
||||
|
||||
int nextId() const;
|
||||
|
||||
private:
|
||||
QLabel *messageLabel;
|
||||
QVBoxLayout* errMessLayout;
|
||||
};
|
||||
|
||||
//============================================================================
|
||||
//! Page for filling peer details in "Add friend" wizard.
|
||||
|
||||
//! Warning: This page duplicates functionality of the ConnectDialo class (and
|
||||
//! also some pieces of code). TODO: remove this duplication
|
||||
class ConclusionPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
ConclusionPage(QWidget *parent = 0);
|
||||
|
||||
void initializePage();
|
||||
int nextId() const;
|
||||
|
||||
private slots:
|
||||
// void printButtonClicked();
|
||||
void groupCurrentIndexChanged(int index);
|
||||
|
||||
private:
|
||||
QGroupBox* peerDetailsFrame;
|
||||
QGridLayout* peerDetailsLayout;
|
||||
QGroupBox* optionsFrame;
|
||||
QGridLayout* optionsLayout;
|
||||
QLabel* trustLabel;
|
||||
QLabel* trustEdit;
|
||||
QLabel* nameLabel;
|
||||
QLabel* nameEdit;
|
||||
QLabel* emailLabel;
|
||||
QLabel* emailEdit;
|
||||
QLabel* locLabel;
|
||||
QLabel* locEdit;
|
||||
QLabel* signersLabel;
|
||||
QTextEdit* signersEdit;
|
||||
QComboBox* groupComboBox;
|
||||
QLabel* groupLabel;
|
||||
|
||||
QLabel* radioButtonsLabel;
|
||||
QCheckBox *signGPGCheckBox;
|
||||
QCheckBox *acceptNoSignGPGCheckBox;
|
||||
|
||||
QVBoxLayout* conclusionPageLayout;
|
||||
|
||||
//! peer id
|
||||
|
||||
// //! It's a hack; This widget is used only to register "id" field in the
|
||||
// //! wizard. Really the widget isn't displayed.
|
||||
QLineEdit* peerIdEdit;
|
||||
QLineEdit* peerGPGIdEdit;
|
||||
QLineEdit* peerLocation;
|
||||
QLineEdit* peerCertStringEdit;
|
||||
QLineEdit* ext_friend_ip;
|
||||
QLineEdit* ext_friend_port;
|
||||
QLineEdit* local_friend_ip;
|
||||
QLineEdit* local_friend_port;
|
||||
QLineEdit* dyndns;
|
||||
};
|
||||
|
||||
//============================================================================
|
||||
//! A page for exchanging RSID , for "Add friend" wizard.
|
||||
class RsidPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
RsidPage(QWidget *parent = 0);
|
||||
|
||||
int nextId() const;
|
||||
bool isComplete() const ;
|
||||
|
||||
|
||||
private:
|
||||
QGroupBox* userRsidFrame;
|
||||
QLabel *userFileLabel;
|
||||
QHBoxLayout* userRsidLayout;
|
||||
|
||||
QLabel* friendRsidLabel;
|
||||
QLineEdit *friendRsidEdit;
|
||||
QHBoxLayout* friendRSIDLayout;
|
||||
|
||||
QVBoxLayout* RsidLayout;
|
||||
|
||||
private slots:
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
//============================================================================
|
||||
|
||||
//============================================================================
|
||||
//! A page for Email Invite
|
||||
class EmailPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
EmailPage(QWidget *parent = 0);
|
||||
|
||||
int nextId() const;
|
||||
bool isComplete() const ;
|
||||
bool validatePage();
|
||||
|
||||
private:
|
||||
QLabel* addressLabel;
|
||||
QLineEdit *addressEdit;
|
||||
|
||||
QLabel* subjectLabel;
|
||||
QLineEdit *subjectEdit;
|
||||
|
||||
QTextEdit* inviteTextEdit;
|
||||
|
||||
QHBoxLayout* emailhbox2Layout;
|
||||
QHBoxLayout* emailhbox3Layout;
|
||||
|
||||
QVBoxLayout* emailvboxLayout;
|
||||
|
||||
private slots:
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
//============================================================================
|
||||
|
||||
#endif
|
||||
#endif // CONNECTFRIENDWIZARD_H
|
||||
|
635
retroshare-gui/src/gui/connect/ConnectFriendWizard.ui
Normal file
635
retroshare-gui/src/gui/connect/ConnectFriendWizard.ui
Normal file
@ -0,0 +1,635 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>ConnectFriendWizard</class>
|
||||
<widget class="QWizard" name="ConnectFriendWizard">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>454</width>
|
||||
<height>370</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Connect Friend Wizard</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/rstray3.png</normaloff>:/images/rstray3.png</iconset>
|
||||
</property>
|
||||
<widget class="ConnectFriendPage" name="IntroPage">
|
||||
<property name="title">
|
||||
<string>Add a new Friend</string>
|
||||
</property>
|
||||
<property name="subTitle">
|
||||
<string>This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this:</string>
|
||||
</property>
|
||||
<attribute name="pageId">
|
||||
<string notr="true">ConnectFriendWizard::Page_Intro</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QRadioButton" name="textRadioButton">
|
||||
<property name="text">
|
||||
<string>&Enter the certificate manually</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="certRadioButton">
|
||||
<property name="text">
|
||||
<string>&You get a certificate file from your friend</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="foffRadioButton">
|
||||
<property name="text">
|
||||
<string>&Make friend with selected friends of my friends</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rsidRadioButton">
|
||||
<property name="text">
|
||||
<string>&Enter RetroShare ID manually</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="emailRadioButton">
|
||||
<property name="text">
|
||||
<string>&Send a Invitation by Email
|
||||
(She/He receives a email with instructions howto to download RetroShare)</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="ConnectFriendPage" name="TextPage">
|
||||
<property name="title">
|
||||
<string>Text certificate</string>
|
||||
</property>
|
||||
<property name="subTitle">
|
||||
<string>Use text representation of the PGP certificates.</string>
|
||||
</property>
|
||||
<attribute name="pageId">
|
||||
<string notr="true">ConnectFriendWizard::Page_Text</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<item>
|
||||
<widget class="QLabel" name="userCertLabel">
|
||||
<property name="text">
|
||||
<string>The text below is your PGP certificate. You have to provide it to your friend</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="QPlainTextEdit" name="userCertEdit">
|
||||
<property name="font">
|
||||
<font>
|
||||
<family>Courier New</family>
|
||||
</font>
|
||||
</property>
|
||||
<property name="lineWrapMode">
|
||||
<enum>QPlainTextEdit::NoWrap</enum>
|
||||
</property>
|
||||
<property name="readOnly">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="QPushButton" name="userCertHelpButton">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>20</horstretch>
|
||||
<verstretch>20</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/info16.png</normaloff>:/images/info16.png</iconset>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="userCertIncludeSignaturesButton">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>20</horstretch>
|
||||
<verstretch>20</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Include signatures</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/gpgp_key_generate.png</normaloff>:/images/gpgp_key_generate.png</iconset>
|
||||
</property>
|
||||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="userCertCopyButton">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>20</horstretch>
|
||||
<verstretch>20</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Copy your Cert to Clipboard</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/copyrslink.png</normaloff>:/images/copyrslink.png</iconset>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="userCertSaveButton">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>20</horstretch>
|
||||
<verstretch>20</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Save your Cert into a File</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/document_save.png</normaloff>:/images/document_save.png</iconset>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="userCertMailButton">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>20</horstretch>
|
||||
<verstretch>20</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Run Email program</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/mail_send.png</normaloff>:/images/mail_send.png</iconset>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="friendCertLabel">
|
||||
<property name="text">
|
||||
<string>Please, paste your friends PGP certificate into the box below</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<item>
|
||||
<widget class="QPlainTextEdit" name="friendCertEdit">
|
||||
<property name="font">
|
||||
<font>
|
||||
<family>Courier New</family>
|
||||
</font>
|
||||
</property>
|
||||
<property name="lineWrapMode">
|
||||
<enum>QPlainTextEdit::NoWrap</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
||||
<item>
|
||||
<widget class="QPushButton" name="friendCertCleanButton">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>20</horstretch>
|
||||
<verstretch>20</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Clean certificate</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/images/accepted16.png</normaloff>:/images/accepted16.png</iconset>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="ConnectFriendPage" name="CertificatePage">
|
||||
<property name="title">
|
||||
<string>Certificate files</string>
|
||||
</property>
|
||||
<property name="subTitle">
|
||||
<string>Use PGP certificates saved in files.</string>
|
||||
</property>
|
||||
<attribute name="pageId">
|
||||
<string notr="true">ConnectFriendWizard::Page_Cert</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_5">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="userFileFrame">
|
||||
<property name="title">
|
||||
<string>Import friend's certificate...</string>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||
<item>
|
||||
<widget class="QLabel" name="userFileLabel">
|
||||
<property name="text">
|
||||
<string>You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before.</string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="userFileCreateButton">
|
||||
<property name="text">
|
||||
<string>Export my certificate...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="friendFileLabel">
|
||||
<property name="text">
|
||||
<string>Drag and Drop your friends's certificate in this Window or specify path in the box below</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||
<item>
|
||||
<widget class="DropLineEdit" name="friendFileNameEdit"/>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="friendFileNameOpenButton">
|
||||
<property name="text">
|
||||
<string>Browse</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="ConnectFriendPage" name="FofPage">
|
||||
<property name="title">
|
||||
<string>Friends of friends</string>
|
||||
</property>
|
||||
<property name="subTitle">
|
||||
<string>Select now who you want to make friends with.</string>
|
||||
</property>
|
||||
<attribute name="pageId">
|
||||
<string notr="true">ConnectFriendWizard::Page_Foff</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_11">
|
||||
<item>
|
||||
<widget class="QLabel" name="userFileLabel_2">
|
||||
<property name="text">
|
||||
<string>Show me:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QComboBox" name="userSelectionCB"/>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QTableWidget" name="selectedPeersTW">
|
||||
<property name="sortingEnabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="columnCount">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<attribute name="verticalHeaderVisible">
|
||||
<bool>false</bool>
|
||||
</attribute>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="makeFriendButton">
|
||||
<property name="text">
|
||||
<string>Make friend with these peers</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="ConnectFriendPage" name="RsidPage">
|
||||
<property name="title">
|
||||
<string>RetroShare ID</string>
|
||||
</property>
|
||||
<property name="subTitle">
|
||||
<string>Use RetroShare ID for adding a Friend which is available in your network.</string>
|
||||
</property>
|
||||
<attribute name="pageId">
|
||||
<string notr="true">ConnectFriendWizard::Page_Rsid</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_7">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="userRsidFrame">
|
||||
<property name="title">
|
||||
<string>Add Friends RetroShare ID...</string>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_8"/>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="friendRsidLabel">
|
||||
<property name="text">
|
||||
<string>Paste Friends RetroShare ID in the box below</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="friendRsidEdit">
|
||||
<property name="whatsThis">
|
||||
<string>Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="ConnectFriendPage" name="EmailPage">
|
||||
<property name="title">
|
||||
<string>Invite Friends by Email</string>
|
||||
</property>
|
||||
<property name="subTitle">
|
||||
<string>Enter your friends' email addresses (seperate each on with a semicolon)</string>
|
||||
</property>
|
||||
<attribute name="pageId">
|
||||
<string notr="true">ConnectFriendWizard::Page_Email</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_9">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||
<item>
|
||||
<widget class="QLabel" name="addressLabel">
|
||||
<property name="text">
|
||||
<string>Your friends' email addresses:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="addressEdit">
|
||||
<property name="whatsThis">
|
||||
<string>Enter Friends Email addresses</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_6">
|
||||
<item>
|
||||
<widget class="QLabel" name="subjectLabel">
|
||||
<property name="text">
|
||||
<string>Subject:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="subjectEdit"/>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPlainTextEdit" name="inviteTextEdit">
|
||||
<property name="readOnly">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="ConnectFriendPage" name="ErrorMessagePage">
|
||||
<property name="title">
|
||||
<string>Sorry, some error appeared</string>
|
||||
</property>
|
||||
<property name="subTitle">
|
||||
<string>Here is the error message:</string>
|
||||
</property>
|
||||
<attribute name="pageId">
|
||||
<string notr="true">ConnectFriendWizard::Page_ErrorMessage</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_6">
|
||||
<item>
|
||||
<widget class="QLabel" name="messageLabel">
|
||||
<property name="text">
|
||||
<string notr="true">error text</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="ConnectFriendPage" name="ConclusionPage">
|
||||
<property name="title">
|
||||
<string>Make Friend</string>
|
||||
</property>
|
||||
<property name="subTitle">
|
||||
<string>Details about your friend:</string>
|
||||
</property>
|
||||
<attribute name="pageId">
|
||||
<string notr="true">ConnectFriendWizard::Page_Conclusion</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_10">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="peerDetailsFrame">
|
||||
<property name="title">
|
||||
<string>Peer details</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<property name="fieldGrowthPolicy">
|
||||
<enum>QFormLayout::AllNonFixedFieldsGrow</enum>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="trustLabel">
|
||||
<property name="text">
|
||||
<string>Key validity:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLabel" name="trustEdit">
|
||||
<property name="text">
|
||||
<string notr="true">Trust level</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="nameLabel">
|
||||
<property name="text">
|
||||
<string>Name:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLabel" name="nameEdit">
|
||||
<property name="text">
|
||||
<string notr="true">Name</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="emailLabel">
|
||||
<property name="text">
|
||||
<string>Email:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QLabel" name="emailEdit">
|
||||
<property name="text">
|
||||
<string notr="true">Email</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="locationLabel">
|
||||
<property name="text">
|
||||
<string>Location:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<widget class="QLabel" name="locationEdit">
|
||||
<property name="text">
|
||||
<string notr="true">Location</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
<widget class="QLabel" name="signersLabel">
|
||||
<property name="text">
|
||||
<string>Signers</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="1">
|
||||
<widget class="QPlainTextEdit" name="signersEdit">
|
||||
<property name="readOnly">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="0" colspan="2">
|
||||
<widget class="QLabel" name="alreadyRegisteredLabel">
|
||||
<property name="text">
|
||||
<string>It seems your friend is already registered. Adding it might just set it's ip address.</string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="optionsFrame">
|
||||
<property name="title">
|
||||
<string>Options</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout_2">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="groupLabel">
|
||||
<property name="text">
|
||||
<string>Add friend to group:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="groupComboBox"/>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QCheckBox" name="signGPGCheckBox">
|
||||
<property name="text">
|
||||
<string>Authenticate friend (Sign GPG Key)</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QCheckBox" name="acceptNoSignGPGCheckBox">
|
||||
<property name="text">
|
||||
<string>Add as friend to connect with</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>DropLineEdit</class>
|
||||
<extends>QLineEdit</extends>
|
||||
<header>gui/common/DropLineEdit.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>ConnectFriendPage</class>
|
||||
<extends>QWizardPage</extends>
|
||||
<header>gui/connect/ConnectFriendWizard.h</header>
|
||||
<container>1</container>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources>
|
||||
<include location="../images.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
Binary file not shown.
@ -233,7 +233,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>AvatarWidget</name>
|
||||
<message>
|
||||
<location filename="../gui/common/AvatarWidget.cpp" line="+123"/>
|
||||
<location filename="../gui/common/AvatarWidget.cpp" line="+121"/>
|
||||
<source>Click to change your avatar</source>
|
||||
<translation>Klick zum Ändern deines Avatars</translation>
|
||||
</message>
|
||||
@ -696,7 +696,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>CertificatePage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+738"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard1.cpp" line="+738"/>
|
||||
<source>Certificate files</source>
|
||||
<translation>Zertifikat-Dateien</translation>
|
||||
</message>
|
||||
@ -1006,7 +1006,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Abonnieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+169"/>
|
||||
<location line="+163"/>
|
||||
<source>Loading</source>
|
||||
<translation>Lade</translation>
|
||||
</message>
|
||||
@ -1017,7 +1017,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Alle als gelesen markieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-266"/>
|
||||
<location line="-260"/>
|
||||
<source>Unsubcribe To Channel</source>
|
||||
<translation>Kanal abbestellen</translation>
|
||||
</message>
|
||||
@ -1088,7 +1088,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Deaktiviere Auto-Download</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/ChannelFeed.ui" line="+155"/>
|
||||
<location filename="../gui/ChannelFeed.ui" line="+149"/>
|
||||
<location line="+3"/>
|
||||
<location filename="../gui/ChannelFeed.cpp" line="+2"/>
|
||||
<source>Enable Auto-Download</source>
|
||||
@ -1714,7 +1714,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>ConclusionPage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+49"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard1.cpp" line="+49"/>
|
||||
<source>Make Friend</source>
|
||||
<translation>Als Freund wählen</translation>
|
||||
</message>
|
||||
@ -2041,15 +2041,466 @@ und meinen GPG Schlüssel nicht unterzeichnet</translation>
|
||||
<context>
|
||||
<name>ConnectFriendWizard</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-883"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+87"/>
|
||||
<location line="+201"/>
|
||||
<source>Certificate Load Failed</source>
|
||||
<translation>Das Zertifikat konnte nicht geladen werden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+23"/>
|
||||
<location line="-146"/>
|
||||
<source>Any peer I've not signed</source>
|
||||
<translation>Jeden Peer, den ich nicht unterzeichnet habe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+1"/>
|
||||
<source>Friends of my friends who already trust me</source>
|
||||
<translation>Freunde meiner Freunde, welche mir schon vertrauen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+1"/>
|
||||
<source>Signed peers showing as denied</source>
|
||||
<translation>Unterzeichnete Peers, die geblockt sind</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Peer name</source>
|
||||
<translation>Peer Name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+1"/>
|
||||
<source>Also signed by</source>
|
||||
<translation>Auch unterzeichnet von</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+1"/>
|
||||
<source>Peer id</source>
|
||||
<translation>Peer ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+16"/>
|
||||
<source>RetroShare Invitation</source>
|
||||
<translation>RetroShare Einladung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+42"/>
|
||||
<source>Ultimate</source>
|
||||
<translation>Ultimativ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Full</source>
|
||||
<translation>Voll</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Marginal</source>
|
||||
<translation>Geringfügig </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>None</source>
|
||||
<translation>Kein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>No Trust</source>
|
||||
<translation>Kein Vertrauen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+88"/>
|
||||
<source>Certificate Load Failed:can't read from file %1 </source>
|
||||
<translation>Fehler beim Laden des Zertifikats: Datei %1 konnte nicht gelesen werden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+11"/>
|
||||
<source>Certificate Load Failed:something is wrong with %1 </source>
|
||||
<translation>Fehler beim Laden des Zertifikats : Etwas stimmt nicht mit %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+4"/>
|
||||
<source>Certificate Load Failed:file %1 not found</source>
|
||||
<translation>Fehler beim Laden des Zertifikats: Datei %1 nicht gefunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+19"/>
|
||||
<source>This Peer %1 is not available in your Network</source>
|
||||
<translation>Der Nutzer %1 ist nicht in deinem Netzwerk verfügbar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+117"/>
|
||||
<source>Remove signatures</source>
|
||||
<translation>Signaturen entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+10"/>
|
||||
<source>RetroShare Invite</source>
|
||||
<translation>RetroShare Einladung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+18"/>
|
||||
<source>No or misspelled BEGIN tag found</source>
|
||||
<translation>Kein oder fehlerhaften BEGIN Tag gefunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>No or misspelled END tag found</source>
|
||||
<translation>Kein oder fehlerhaften END Tag gefunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>No checksum found (the last 5 chars should be separated by a '=' char), or no newline after tag line (e.g. line beginning with Version:)</source>
|
||||
<translation>Keine Prüfsumme (die letzten 5 Zeichen sollten durch das Zeichen '=' getrennt sein) oder keinen Zeilenumbruch nach der Tag Zeile gefunden (z.:b die Zeile die mit "Version:" beginnt)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Unknown error. Your cert is probably not even a certificate.</source>
|
||||
<translation>Unbekannter Fehler. Dein Zertifikat ist vermutlich kein Zertifikat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+2"/>
|
||||
<source>Certificate cleaning error</source>
|
||||
<translation>Fehler beim Bereinigen des Zertifikats</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>Connect Friend Help</source>
|
||||
<translation>Verbindungshilfe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+0"/>
|
||||
<source>You can copy this text and send it to your friend via email or some other way</source>
|
||||
<translation>Du kannst diesen Text kopieren und an deinen Freund per Email senden oder über einen anderen Weg zukommen lassen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>Your Cert is copied to Clipboard, paste and send it to your riend via email or some other way</source>
|
||||
<translation>Dein Zertiifkat ist in in die Zwischenablage kopiert worden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+5"/>
|
||||
<source>Save as...</source>
|
||||
<translation>Speichern unter...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+0"/>
|
||||
<location line="+19"/>
|
||||
<location line="+17"/>
|
||||
<source>RetroShare Certificate (*.rsc );;All Files (*)</source>
|
||||
<translation>RetroShare Zertifikat (*.rsc );;Alle Dateien (*)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-17"/>
|
||||
<source>Select Certificate</source>
|
||||
<translation>Zertifikat auswählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+13"/>
|
||||
<source>Sorry, create certificate failed</source>
|
||||
<translation>Zertifikat-Datei konnte nicht erstellt werden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+4"/>
|
||||
<source>Please choose a filename</source>
|
||||
<translation>Bitte wähle einen Dateinamen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+8"/>
|
||||
<source>Certificate file successfully created</source>
|
||||
<translation>Zertifikat-Datei erfolgreich erstellt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+2"/>
|
||||
<location line="+4"/>
|
||||
<source>Sorry, certificate file creation failed</source>
|
||||
<translation>Zertifikat-Datei konnte nicht erstellt werden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+93"/>
|
||||
<source>*** None ***</source>
|
||||
<translation>*** Keine ***</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.ui" line="+14"/>
|
||||
<source>Connect Friend Wizard</source>
|
||||
<translation>Assistent um sich zu einem Freund zu verbinden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+8"/>
|
||||
<source>Add a new Friend</source>
|
||||
<translation>Fügen einen neuen Freund hinzu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this:</source>
|
||||
<translation>Dieser Assistent hilft Dir, Dich mit einem Freund im RetroShare-Netzwerk zu verbinden.
|
||||
Die folgenden Wege sind möglich:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>&Enter the certificate manually</source>
|
||||
<translation>Gib das Zertifikat &manuell ein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>&You get a certificate file from your friend</source>
|
||||
<translation>&Du hast eine Datei mit einem Zertifikat deines Freund bekommen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>&Make friend with selected friends of my friends</source>
|
||||
<translation>&Füge ausgewählte Freunde Deiner Freunde hinzu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>&Enter RetroShare ID manually</source>
|
||||
<translation>Gib die RetroShare &ID manuell ein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>&Send a Invitation by Email
|
||||
(She/He receives a email with instructions howto to download RetroShare)</source>
|
||||
<translation>&Sende eine Einladung per Email
|
||||
(Er/Sie erhält eine Email mit der Anleitung zum Herunterladen von RetroShare)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>Text certificate</source>
|
||||
<translation>Text-Zertifikat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Use text representation of the PGP certificates.</source>
|
||||
<translation>Verwende diesen Text als PGP Zertifikat.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>The text below is your PGP certificate. You have to provide it to your friend</source>
|
||||
<translation>Der folgende Text ist Ihr PGP Zertifikat. Sie können es zu Ihrem Freund geben </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+49"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-199"/>
|
||||
<source>Include signatures</source>
|
||||
<translation>Signaturen einschließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+23"/>
|
||||
<source>Copy your Cert to Clipboard</source>
|
||||
<translation>Kopiere dein Zertifikat in die Zwischenablage</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+20"/>
|
||||
<source>Save your Cert into a File</source>
|
||||
<translation>Zertifikat als Datei speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+20"/>
|
||||
<source>Run Email program</source>
|
||||
<translation>Starte das Standard-Emailprogramm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+18"/>
|
||||
<source>Please, paste your friends PGP certificate into the box below</source>
|
||||
<translation>Bitte füge das PGP-Zertifikat von Ihre Freunde in das Feld unten ein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+29"/>
|
||||
<source>Clean certificate</source>
|
||||
<translation>Bereinige Zertifikat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+19"/>
|
||||
<source>Certificate files</source>
|
||||
<translation>Zertifikat-Dateien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Use PGP certificates saved in files.</source>
|
||||
<translation>Nutze in Dateien gespeicherte PGP Zertifikate.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>Import friend's certificate...</source>
|
||||
<translation>Importiere Zertifikat eines Freundes...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before.</source>
|
||||
<translation>Du musst eine Datei mit deinem Zertifikat erstellen und deinem Freund zukommen lassen. Alternativ kannst Du auch eine Datei verwenden, die Du zuvor erstellt hast.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+10"/>
|
||||
<source>Export my certificate...</source>
|
||||
<translation>Exportiere mein Zertifikat...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+10"/>
|
||||
<source>Drag and Drop your friends's certificate in this Window or specify path in the box below</source>
|
||||
<translation>Gib die Datei mit dem Zertifikat ein oder ziehe sie per Drag'n'Drop in das Fenster ziehen </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+12"/>
|
||||
<source>Browse</source>
|
||||
<translation>Durchsuchen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+10"/>
|
||||
<source>Friends of friends</source>
|
||||
<translation>Freunde von Freunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Select now who you want to make friends with.</source>
|
||||
<translation>Wählen Sie nun aus, wen Sie zu Ihren Freunden hinzufügen möchten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>Show me:</source>
|
||||
<translation>Zeige mir: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+27"/>
|
||||
<source>Make friend with these peers</source>
|
||||
<translation>Füge diese Peers zu deinen Freunden hinzu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+8"/>
|
||||
<source>RetroShare ID</source>
|
||||
<translation>RetroShare ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Use RetroShare ID for adding a Friend which is available in your network.</source>
|
||||
<translation>Benutze die RetroShare ID um Freunde aus deinem Netzwerk hinzuzufügen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>Add Friends RetroShare ID...</source>
|
||||
<translation>Füge die RetroShare ID des Freundes ein...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+11"/>
|
||||
<source>Paste Friends RetroShare ID in the box below</source>
|
||||
<translation>Füge die RetroShare ID eines Freunde in das Feld ein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF</source>
|
||||
<translation>Füge die RetroShare ID eines Freundes ein, Beispiel Peer@BDE8D16A46D938CF </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+8"/>
|
||||
<source>Invite Friends by Email</source>
|
||||
<translation>Lade Freunde per Email ein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Enter your friends' email addresses (seperate each on with a semicolon)</source>
|
||||
<translation>Gib die Email Adressen Deined Freundes an (mehrere Adressen müssen mit Semikolon getrennt werden)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+11"/>
|
||||
<source>Your friends' email addresses:</source>
|
||||
<translation>Email Adresse Deines Freundes:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>Enter Friends Email addresses</source>
|
||||
<translation>Gib die Email Adresse Deines Freundes ein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+11"/>
|
||||
<source>Subject:</source>
|
||||
<translation>Betreff:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+20"/>
|
||||
<source>Sorry, some error appeared</source>
|
||||
<translation>Entschuldigung, es trat ein Fehler auf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Here is the error message:</source>
|
||||
<translation>Dies ist die Fehlermeldung: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+17"/>
|
||||
<source>Make Friend</source>
|
||||
<translation>Als Freund wählen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Details about your friend:</source>
|
||||
<translation>Details zu Ihrem Freund:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>Peer details</source>
|
||||
<translation>Nachbar Details</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>Key validity:</source>
|
||||
<translation>Schlüssel Echtheit:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+14"/>
|
||||
<source>Name:</source>
|
||||
<translation>Name:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+14"/>
|
||||
<source>Email:</source>
|
||||
<translation>Email:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+14"/>
|
||||
<source>Location:</source>
|
||||
<translation>Ort:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+14"/>
|
||||
<source>Signers</source>
|
||||
<translation>Unterzeichner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+14"/>
|
||||
<source>It seems your friend is already registered. Adding it might just set it's ip address.</source>
|
||||
<translation>Ihr Freund ist bereits registriert. Das nochmalige Hinzufügen ändert nur seine IP.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+13"/>
|
||||
<source>Options</source>
|
||||
<translation>Optionen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+6"/>
|
||||
<source>Add friend to group:</source>
|
||||
<translation>Freund zur Gruppe hinzufügen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+10"/>
|
||||
<source>Authenticate friend (Sign GPG Key)</source>
|
||||
<translation>Authentifiziere Freund (GPG Schlüssel unterzeichnen)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>Add as friend to connect with</source>
|
||||
<translation>Füge als Freund hinzu, zu dem verbunden wird</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ConnectFriendWizard1</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard1.cpp" line="-883"/>
|
||||
<source>Certificate Load Failed</source>
|
||||
<translation type="unfinished">Das Zertifikat konnte nicht geladen werden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+23"/>
|
||||
<source>Connect Friend Wizard</source>
|
||||
<translation type="unfinished">Assistent um sich zu einem Freund zu verbinden</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>CreateBlog</name>
|
||||
@ -3793,7 +4244,7 @@ Das ist nützlich, wenn Du eine externe Festplatte freigibst und die Datei nicht
|
||||
<context>
|
||||
<name>EmailPage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+1142"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard1.cpp" line="+1142"/>
|
||||
<source>Invite Friends by Email</source>
|
||||
<translation>Lade Freunde per Email ein</translation>
|
||||
</message>
|
||||
@ -4219,7 +4670,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>FofPage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-384"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard1.cpp" line="-384"/>
|
||||
<source>Friends of friends</source>
|
||||
<translation>Freunde von Freunden</translation>
|
||||
</message>
|
||||
@ -4469,7 +4920,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>ForumsDialog</name>
|
||||
<message>
|
||||
<location filename="../gui/ForumsDialog.cpp" line="+291"/>
|
||||
<location filename="../gui/ForumsDialog.cpp" line="+290"/>
|
||||
<source>Subscribe to Forum</source>
|
||||
<translation>Forum abonnieren</translation>
|
||||
</message>
|
||||
@ -4606,7 +5057,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Du kannst einem anonymen Autor nicht antworten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-1373"/>
|
||||
<location line="-1372"/>
|
||||
<source>Your Forums</source>
|
||||
<translation>Deine Foren</translation>
|
||||
</message>
|
||||
@ -4771,7 +5222,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Druckvorschau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/ForumsDialog.cpp" line="+148"/>
|
||||
<location filename="../gui/ForumsDialog.cpp" line="+147"/>
|
||||
<location line="+1127"/>
|
||||
<source>Start New Thread</source>
|
||||
<translation>Erstelle neues Thema</translation>
|
||||
@ -7308,7 +7759,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>IntroPage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-462"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard1.cpp" line="-462"/>
|
||||
<source>&Make friend with selected friends of my friends</source>
|
||||
<translation>&Füge ausgewählte Freunde Deiner Freunde hinzu</translation>
|
||||
</message>
|
||||
@ -7350,7 +7801,7 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../gui/MainWindow.cpp" line="+244"/>
|
||||
<location filename="../gui/MainWindow.cpp" line="+246"/>
|
||||
<source>Network</source>
|
||||
<translation>Netzwerk</translation>
|
||||
</message>
|
||||
@ -7448,7 +7899,7 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<translation>%1 Freunde verbunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+739"/>
|
||||
<location line="+746"/>
|
||||
<source>It seems to be an old RetroShare link. Please use copy instead.</source>
|
||||
<translation>Es scheint ein alter RetroShare Link zu sein. Bitte kopiere den Link stattdessen.</translation>
|
||||
</message>
|
||||
@ -7458,23 +7909,23 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<translation>Link ist fehlerhaft.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-747"/>
|
||||
<location line="-754"/>
|
||||
<source>%1 friend connected</source>
|
||||
<translation>%1 Freund verbunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+407"/>
|
||||
<location line="+414"/>
|
||||
<source>Internal Error</source>
|
||||
<translation>Interener Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/MainWindow.ui" line="+88"/>
|
||||
<location filename="../gui/MainWindow.cpp" line="-793"/>
|
||||
<location filename="../gui/MainWindow.ui" line="+89"/>
|
||||
<location filename="../gui/MainWindow.cpp" line="-800"/>
|
||||
<source>Options</source>
|
||||
<translation>Optionen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/MainWindow.cpp" line="+826"/>
|
||||
<location filename="../gui/MainWindow.cpp" line="+833"/>
|
||||
<source>Hide</source>
|
||||
<translation>Verbergen</translation>
|
||||
</message>
|
||||
@ -7484,27 +7935,28 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<translation>Zeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-815"/>
|
||||
<location line="-822"/>
|
||||
<source>RetroShare</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/MainWindow.ui" line="-74"/>
|
||||
<location filename="../gui/MainWindow.ui" line="-75"/>
|
||||
<source>MainWindow</source>
|
||||
<translation>Hauptfenster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+53"/>
|
||||
<location line="+54"/>
|
||||
<source>Add Friend</source>
|
||||
<translation>Freund hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<location line="+77"/>
|
||||
<source>Add a Friend Wizard</source>
|
||||
<translation>Assistent zum Hinzufügen von Freunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<location line="-68"/>
|
||||
<source>Add Share</source>
|
||||
<translation>Dateien freigeben</translation>
|
||||
</message>
|
||||
@ -7514,6 +7966,11 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<source>Quick Start Wizard</source>
|
||||
<translation>Schnellstart Assistent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+9"/>
|
||||
<source>Add Friend 1</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/MainWindow.cpp" line="-209"/>
|
||||
<source>Search</source>
|
||||
@ -7525,7 +7982,7 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<translation>Dateien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/MainWindow.ui" line="-38"/>
|
||||
<location filename="../gui/MainWindow.ui" line="-47"/>
|
||||
<source>Messenger</source>
|
||||
<translation>Messenger</translation>
|
||||
</message>
|
||||
@ -7606,12 +8063,12 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<translation>Foren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-70"/>
|
||||
<location line="-71"/>
|
||||
<source>RetroShare %1 a secure decentralised communication platform</source>
|
||||
<translation>RetroShare %1 eine sichere und dezentralisierte Kommunikationsplattform</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+240"/>
|
||||
<location line="+241"/>
|
||||
<source>Open Messages</source>
|
||||
<translation>Öffne Nachrichten</translation>
|
||||
</message>
|
||||
@ -7626,7 +8083,7 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+930"/>
|
||||
<location line="+937"/>
|
||||
<source>Do you really want to exit RetroShare ?</source>
|
||||
<translation>Möchtest du RetroShare wirklich beenden?</translation>
|
||||
</message>
|
||||
@ -7636,7 +8093,7 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<translation>Wirklich beenden?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-812"/>
|
||||
<location line="-819"/>
|
||||
<source>Low disk space warning</source>
|
||||
<translation>Wenig Festplatenspeicher</translation>
|
||||
</message>
|
||||
@ -9738,7 +10195,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>NotifyQt</name>
|
||||
<message>
|
||||
<location filename="../gui/notifyqt.cpp" line="+128"/>
|
||||
<location filename="../gui/notifyqt.cpp" line="+143"/>
|
||||
<source>GPG key passphrase</source>
|
||||
<translation>GPG Schlüssel Passwort</translation>
|
||||
</message>
|
||||
@ -9753,7 +10210,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Bitte geben Sie das Passwort ein um folgenden GPG Schlüssel freizuschalten:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+144"/>
|
||||
<location line="+233"/>
|
||||
<source>Examining shared files...</source>
|
||||
<translation>Prüfe freigegebene Dateien...</translation>
|
||||
</message>
|
||||
@ -10208,7 +10665,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Formular</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/settings/PluginItem.ui" line="+241"/>
|
||||
<location filename="../gui/settings/PluginItem.ui" line="+235"/>
|
||||
<source>Status: </source>
|
||||
<translation>Status:</translation>
|
||||
</message>
|
||||
@ -10218,7 +10675,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Datei Prüfsumme:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-84"/>
|
||||
<location line="-78"/>
|
||||
<source><!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; }
|
||||
@ -10231,7 +10688,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="more"><span style=" text-decoration: underline; color:#0000ff;">mehr...</span></a></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+61"/>
|
||||
<location line="+55"/>
|
||||
<source>File name: </source>
|
||||
<translation>Dateiname:</translation>
|
||||
</message>
|
||||
@ -10398,7 +10855,7 @@ malicious behavior of crafted plugins.</source>
|
||||
<translation type="obsolete">Textfarbe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/chat/PopupChatDialog.ui" line="+205"/>
|
||||
<location filename="../gui/chat/PopupChatDialog.ui" line="+193"/>
|
||||
<source>Clear offline messages</source>
|
||||
<translation>Entferne offline Nachrichten</translation>
|
||||
</message>
|
||||
@ -11382,7 +11839,7 @@ und den Assistent zum Hinzufügen von Freunden zu starten.
|
||||
<translation type="obsolete">Round Trip Zeit:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/common/RsCollectionDialog.cpp" line="+179"/>
|
||||
<location filename="../gui/common/RsCollectionDialog.cpp" line="+218"/>
|
||||
<source>Unable to make path</source>
|
||||
<translation>Konnte Verzeichnis nicht erstellen</translation>
|
||||
</message>
|
||||
@ -11894,7 +12351,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>RsCollectionDialog</name>
|
||||
<message>
|
||||
<location filename="../gui/common/RsCollectionDialog.cpp" line="-135"/>
|
||||
<location filename="../gui/common/RsCollectionDialog.cpp" line="-171"/>
|
||||
<source>File</source>
|
||||
<translation>Datei</translation>
|
||||
</message>
|
||||
@ -11929,7 +12386,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Ausgewählt:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+92"/>
|
||||
<location line="+83"/>
|
||||
<source>Select all</source>
|
||||
<translation>Alle auswählen</translation>
|
||||
</message>
|
||||
@ -11981,7 +12438,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>Rshare</name>
|
||||
<message>
|
||||
<location filename="../rshare.cpp" line="+274"/>
|
||||
<location filename="../rshare.cpp" line="+275"/>
|
||||
<source>Invalid language code specified: </source>
|
||||
<translation>Ungültige Sprach-Codierung ausgewählt: </translation>
|
||||
</message>
|
||||
@ -12044,7 +12501,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>RsidPage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+981"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard1.cpp" line="+981"/>
|
||||
<source>RetroShare ID</source>
|
||||
<translation>RetroShare ID</translation>
|
||||
</message>
|
||||
@ -14107,7 +14564,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>TextPage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-993"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard1.cpp" line="-993"/>
|
||||
<source>Use text representation of the PGP certificates.</source>
|
||||
<translation>Verwende diesen Text als PGP Zertifikat.</translation>
|
||||
</message>
|
||||
|
Loading…
Reference in New Issue
Block a user