mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-28 16:27:01 -05:00
Replaced std::string by QString in GetStartedDialog for easier translation and to prevent problems with utf8 chars.
Fixed german translation. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4886 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
b3de0cd06d
commit
91809abd56
@ -32,12 +32,19 @@
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
||||
#define URL_FAQ "http://retroshare.sourceforge.net/wiki/index.php/Frequently_Asked_Questions"
|
||||
#define URL_FORUM "http://retroshare.sourceforge.net/forum/"
|
||||
#define URL_WEBSITE "http://retroshare.org"
|
||||
#define URL_DOWNLOAD "http://retroshare.sourceforge.net/download"
|
||||
|
||||
#define EMAIL_SUBSCRIBE "lists@retroshare.org"
|
||||
|
||||
/** Constructor */
|
||||
GetStartedDialog::GetStartedDialog(QWidget *parent)
|
||||
: MainPage(parent)
|
||||
{
|
||||
/* Invoke the Qt Designer generated object setup routine */
|
||||
ui.setupUi(this);
|
||||
/* Invoke the Qt Designer generated object setup routine */
|
||||
ui.setupUi(this);
|
||||
|
||||
mTimer = NULL;
|
||||
mInviteTimer = NULL;
|
||||
@ -69,40 +76,37 @@ GetStartedDialog::GetStartedDialog(QWidget *parent)
|
||||
|
||||
GetStartedDialog::~GetStartedDialog()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void GetStartedDialog::changeEvent(QEvent *e)
|
||||
{
|
||||
switch (e->type()) {
|
||||
case QEvent::LanguageChange:
|
||||
ui.retranslateUi(this);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
switch (e->type()) {
|
||||
case QEvent::LanguageChange:
|
||||
ui.retranslateUi(this);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void GetStartedDialog::showEvent ( QShowEvent * /*event*/ )
|
||||
{
|
||||
/* do nothing if locked, or not visible */
|
||||
if (RsAutoUpdatePage::eventsLocked() == true)
|
||||
{
|
||||
std::cerr << "GetStartedDialog::showEvent() events Are Locked" << std::endl;
|
||||
return;
|
||||
}
|
||||
/* do nothing if locked, or not visible */
|
||||
if (RsAutoUpdatePage::eventsLocked() == true)
|
||||
{
|
||||
std::cerr << "GetStartedDialog::showEvent() events Are Locked" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
if ((mFirstShow) && (rsConfig))
|
||||
{
|
||||
RsAutoUpdatePage::lockAllEvents();
|
||||
RsAutoUpdatePage::lockAllEvents();
|
||||
|
||||
updateFromUserLevel();
|
||||
mFirstShow = false;
|
||||
|
||||
RsAutoUpdatePage::unlockAllEvents() ;
|
||||
RsAutoUpdatePage::unlockAllEvents() ;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void GetStartedDialog::updateFromUserLevel()
|
||||
@ -187,46 +191,36 @@ void GetStartedDialog::tickFirewallChanged()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
static void sendMail(std::string sAddress, std::string sSubject, std::string sBody)
|
||||
static void sendMail(const QString &address, const QString &subject, QString body)
|
||||
{
|
||||
/* Only under windows do we need to do this! */
|
||||
#ifdef Q_WS_WIN
|
||||
/* search and replace the end of lines with: "%0D%0A" */
|
||||
size_t loc;
|
||||
while ((loc = sBody.find("\n")) != sBody.npos) {
|
||||
sBody.replace(loc, 1, "%0D%0A");
|
||||
}
|
||||
/* search and replace the end of lines with: "%0D%0A" */
|
||||
body.replace("\n", "%0D%0A");
|
||||
#endif
|
||||
|
||||
std::string mailstr = "mailto:" + sAddress;
|
||||
mailstr += "?subject=" + sSubject;
|
||||
mailstr += "&body=" + sBody;
|
||||
QString mailstr = "mailto:" + address;
|
||||
mailstr += "?subject=" + subject;
|
||||
mailstr += "&body=" + body;
|
||||
|
||||
std::cerr << "MAIL STRING:" << mailstr.c_str() << std::endl;
|
||||
std::cerr << "MAIL STRING:" << mailstr.toStdString() << std::endl;
|
||||
|
||||
/* pass the url directly to QDesktopServices::openUrl */
|
||||
QDesktopServices::openUrl (QUrl (QString::fromUtf8(mailstr.c_str())));
|
||||
/* pass the url directly to QDesktopServices::openUrl */
|
||||
QDesktopServices::openUrl(QUrl(mailstr));
|
||||
}
|
||||
|
||||
|
||||
|
||||
void GetStartedDialog::addFriends()
|
||||
{
|
||||
ConnectFriendWizard connwiz(this);
|
||||
ConnectFriendWizard connwiz(this);
|
||||
|
||||
connwiz.show();
|
||||
connwiz.next();
|
||||
connwiz.exec();
|
||||
connwiz.show();
|
||||
connwiz.next();
|
||||
connwiz.exec();
|
||||
}
|
||||
|
||||
|
||||
void GetStartedDialog::inviteFriends()
|
||||
{
|
||||
if (RsAutoUpdatePage::eventsLocked() == true)
|
||||
if (RsAutoUpdatePage::eventsLocked() == true)
|
||||
{
|
||||
std::cerr << "GetStartedDialog::inviteFriends() EventsLocked... waiting";
|
||||
std::cerr << std::endl;
|
||||
@ -234,9 +228,9 @@ void GetStartedDialog::inviteFriends()
|
||||
if (!mInviteTimer)
|
||||
{
|
||||
mInviteTimer = new QTimer(this);
|
||||
mInviteTimer->connect(mTimer, SIGNAL(timeout()), this, SLOT(inviteFriends()));
|
||||
mInviteTimer->setInterval(100); /* 1/10 second */
|
||||
mInviteTimer->setSingleShot(true);
|
||||
mInviteTimer->connect(mTimer, SIGNAL(timeout()), this, SLOT(inviteFriends()));
|
||||
mInviteTimer->setInterval(100); /* 1/10 second */
|
||||
mInviteTimer->setSingleShot(true);
|
||||
}
|
||||
|
||||
mInviteTimer->start();
|
||||
@ -245,121 +239,82 @@ void GetStartedDialog::inviteFriends()
|
||||
|
||||
std::string cert;
|
||||
{
|
||||
RsAutoUpdatePage::lockAllEvents();
|
||||
RsAutoUpdatePage::lockAllEvents();
|
||||
|
||||
bool shouldAddSignatures = false;
|
||||
cert = rsPeers->GetRetroshareInvite(shouldAddSignatures);
|
||||
cert = rsPeers->GetRetroshareInvite(false);
|
||||
|
||||
RsAutoUpdatePage::unlockAllEvents() ;
|
||||
RsAutoUpdatePage::unlockAllEvents() ;
|
||||
}
|
||||
|
||||
std::ostringstream out;
|
||||
|
||||
out << GetInviteText();
|
||||
out << std::endl;
|
||||
out << GetCutBelowText() << std::endl;
|
||||
out << std::endl;
|
||||
out << cert;
|
||||
out << std::endl;
|
||||
|
||||
sendMail("", tr("Retroshare Invitation").toStdString(), out.str());
|
||||
QString text = QString("%1\n%2\n\n%3\n").arg(GetInviteText()).arg(GetCutBelowText()).arg(QString::fromUtf8(cert.c_str()));
|
||||
|
||||
sendMail("", tr("RetroShare Invitation"), text);
|
||||
}
|
||||
|
||||
|
||||
std::string GetStartedDialog::GetInviteText()
|
||||
QString GetStartedDialog::GetInviteText()
|
||||
{
|
||||
std::ostringstream out;
|
||||
QString trstr;
|
||||
trstr = tr("Your friend has installed Retroshare, and would like you to try it out.");
|
||||
out << trstr.toStdString() << std::endl;
|
||||
out << std::endl;
|
||||
trstr = tr("You can get Retroshare here: http://retroshare.sourceforge.net/download");
|
||||
out << trstr.toStdString() << std::endl;
|
||||
out << std::endl;
|
||||
trstr = tr("Retroshare is a private Friend-2-Friend sharing network.");
|
||||
out << trstr.toStdString() << std::endl;
|
||||
trstr = tr("It has many features, including built-in chat, messaging, ");
|
||||
out << trstr.toStdString() << std::endl;
|
||||
trstr = tr("forums and channels, all of which are as secure as the file-sharing.");
|
||||
out << trstr.toStdString() << std::endl;
|
||||
out << std::endl;
|
||||
out << std::endl;
|
||||
trstr = tr("Here is your friends ID Certificate.");
|
||||
out << trstr.toStdString() << std::endl;
|
||||
trstr = tr("Cut and paste the text below into your Retroshare client");
|
||||
out << trstr.toStdString() << std::endl;
|
||||
trstr = tr("and send them your ID Certificate to get securely connected.");
|
||||
out << trstr.toStdString() << std::endl;
|
||||
QString text = tr("Your friend has installed RetroShare, and would like you to try it out.") + "\n";
|
||||
text += "\n";
|
||||
text += tr("You can get RetroShare here: %1").arg(URL_DOWNLOAD) + "\n";
|
||||
text += "\n";
|
||||
text += tr("RetroShare is a private Friend-2-Friend sharing network.") + "\n";
|
||||
text += tr("It has many features, including built-in chat, messaging, ") + "\n";
|
||||
text += tr("forums and channels, all of which are as secure as the file-sharing.") + "\n";
|
||||
text += "\n";
|
||||
text += "\n";
|
||||
text += tr("Here is your friends ID Certificate.") + "\n";
|
||||
text += tr("Cut and paste the text below into your RetroShare client") + "\n";
|
||||
text += tr("and send them your ID Certificate to get securely connected.") + "\n";
|
||||
|
||||
std::string finaltext = out.str();
|
||||
return finaltext;
|
||||
}
|
||||
|
||||
|
||||
std::string GetStartedDialog::GetCutBelowText()
|
||||
{
|
||||
QString trstr;
|
||||
trstr = tr("Cut Below Here");
|
||||
std::string text = trstr.toStdString() + " <-------------------------------------------------------------------------------------";
|
||||
return text;
|
||||
}
|
||||
|
||||
|
||||
|
||||
QString GetStartedDialog::GetCutBelowText()
|
||||
{
|
||||
return QString("%1 <-------------------------------------------------------------------------------------").arg(tr("Cut Below Here"));
|
||||
}
|
||||
|
||||
void GetStartedDialog::emailSubscribe()
|
||||
{
|
||||
std::ostringstream out;
|
||||
out << "Please let me know when Retroshare has a new release, or exciting news";
|
||||
out << std::endl;
|
||||
out << std::endl;
|
||||
out << "Furthermore, I'd like to say ... ";
|
||||
out << std::endl;
|
||||
out << std::endl;
|
||||
// when translation is needed, replace QString by tr
|
||||
QString text = QString("Please let me know when RetroShare has a new release, or exciting news") + "\n";
|
||||
text += "\n";
|
||||
text += QString("Furthermore, I'd like to say ... ") + "\n";
|
||||
text += "\n";
|
||||
|
||||
sendMail("lists@retroshare.org", "Subscribe", out.str());
|
||||
sendMail(EMAIL_SUBSCRIBE, "Subscribe", text);
|
||||
}
|
||||
|
||||
|
||||
void GetStartedDialog::emailUnsubscribe()
|
||||
{
|
||||
std::ostringstream out;
|
||||
out << "I am no longer interested in Retroshare News.";
|
||||
out << std::endl;
|
||||
out << "Please remove me from the Mailing List";
|
||||
out << std::endl;
|
||||
// when translation is needed, replace QString by tr
|
||||
QString text = QString("I am no longer interested in RetroShare News.") + "\n";
|
||||
text += QString("Please remove me from the Mailing List") + "\n";
|
||||
|
||||
sendMail("lists@retroshare.org", "Unsubscribe", out.str());
|
||||
sendMail(EMAIL_SUBSCRIBE, "Unsubscribe", text);
|
||||
}
|
||||
|
||||
|
||||
void GetStartedDialog::emailFeedback()
|
||||
{
|
||||
std::ostringstream out;
|
||||
out << "Dear Retroshare Developers";
|
||||
out << std::endl;
|
||||
out << std::endl;
|
||||
out << "I've tried out Retroshare and would like provide feedback:";
|
||||
out << std::endl;
|
||||
out << std::endl;
|
||||
out << "To make Retroshare more user friendly, please [ what do you think? ] ";
|
||||
out << std::endl;
|
||||
out << "The best feature of Retroshare is [ what do you think? ] ";
|
||||
out << std::endl;
|
||||
out << "and the biggest missing feature is [ what do you think? ] ";
|
||||
out << std::endl;
|
||||
out << std::endl;
|
||||
out << "Furthermore, I'd like to say ... ";
|
||||
out << std::endl;
|
||||
out << std::endl;
|
||||
// when translation is needed, replace QString by tr
|
||||
QString text = QString("Dear RetroShare Developers") + "\n";
|
||||
text += "\n";
|
||||
text += QString("I've tried out RetroShare and would like provide feedback:") + "\n";
|
||||
text += "\n";
|
||||
text += QString("To make RetroShare more user friendly, please [ what do you think? ] ") + "\n";
|
||||
text += QString("The best feature of RetroShare is [ what do you think? ] ") + "\n";
|
||||
text += QString("and the biggest missing feature is [ what do you think? ] ") + "\n";
|
||||
text += "\n";
|
||||
text += QString("Furthermore, I'd like to say ... ") + "\n";
|
||||
text += "\n";
|
||||
|
||||
sendMail("feedback@retroshare.org", tr("RetroShare Feedback").toStdString(), out.str());
|
||||
sendMail("feedback@retroshare.org", tr("RetroShare Feedback"), text);
|
||||
}
|
||||
|
||||
void GetStartedDialog::emailSupport()
|
||||
{
|
||||
if (RsAutoUpdatePage::eventsLocked() == true)
|
||||
if (RsAutoUpdatePage::eventsLocked() == true)
|
||||
{
|
||||
std::cerr << "GetStartedDialog::emailSupport() EventsLocked... waiting";
|
||||
std::cerr << std::endl;
|
||||
@ -367,9 +322,9 @@ void GetStartedDialog::emailSupport()
|
||||
if (!mTimer)
|
||||
{
|
||||
mTimer = new QTimer(this);
|
||||
mTimer->connect(mTimer, SIGNAL(timeout()), this, SLOT(emailSupport()));
|
||||
mTimer->setInterval(100); /* 1/10 second */
|
||||
mTimer->setSingleShot(true);
|
||||
mTimer->connect(mTimer, SIGNAL(timeout()), this, SLOT(emailSupport()));
|
||||
mTimer->setInterval(100); /* 1/10 second */
|
||||
mTimer->setSingleShot(true);
|
||||
}
|
||||
|
||||
mTimer->start();
|
||||
@ -379,150 +334,139 @@ void GetStartedDialog::emailSupport()
|
||||
std::string versionString;
|
||||
uint32_t userLevel;
|
||||
{
|
||||
RsAutoUpdatePage::lockAllEvents();
|
||||
RsAutoUpdatePage::lockAllEvents();
|
||||
|
||||
/* set retroshare version */
|
||||
std::map<std::string, std::string>::iterator vit;
|
||||
std::map<std::string, std::string> versions;
|
||||
bool retv = rsDisc->getDiscVersions(versions);
|
||||
std::string id = rsPeers->getOwnId();
|
||||
if (retv && versions.end() != (vit = versions.find(id)))
|
||||
{
|
||||
std::map<std::string, std::string>::iterator vit;
|
||||
std::map<std::string, std::string> versions;
|
||||
bool retv = rsDisc->getDiscVersions(versions);
|
||||
std::string id = rsPeers->getOwnId();
|
||||
if (retv && versions.end() != (vit = versions.find(id)))
|
||||
{
|
||||
versionString = vit->second;
|
||||
}
|
||||
}
|
||||
userLevel = rsConfig->getUserLevel();
|
||||
|
||||
RsAutoUpdatePage::unlockAllEvents() ;
|
||||
RsAutoUpdatePage::unlockAllEvents() ;
|
||||
}
|
||||
|
||||
std::ostringstream out;
|
||||
out << "Hello";
|
||||
out << std::endl;
|
||||
out << std::endl;
|
||||
// when translation is needed, replace QString by tr
|
||||
QString text = QString("Hello") + "\n";
|
||||
text += "\n";
|
||||
|
||||
out << "My Retroshare Configuration is: (" << versionString;
|
||||
out << ", ";
|
||||
QString sysVersion;
|
||||
|
||||
#ifdef __APPLE__
|
||||
|
||||
#ifdef Q_WS_MAC
|
||||
switch(QSysInfo::MacintoshVersion)
|
||||
{
|
||||
case QSysInfo::MV_9:
|
||||
out << "Mac OS 9";
|
||||
case QSysInfo::MV_9:
|
||||
sysVersion = "Mac OS 9";
|
||||
break;
|
||||
case QSysInfo::MV_10_0:
|
||||
out << "Mac OSX 10.0";
|
||||
case QSysInfo::MV_10_0:
|
||||
sysVersion = "Mac OSX 10.0";
|
||||
break;
|
||||
case QSysInfo::MV_10_1:
|
||||
out << "Mac OSX 10.1";
|
||||
case QSysInfo::MV_10_1:
|
||||
sysVersion = "Mac OSX 10.1";
|
||||
break;
|
||||
case QSysInfo::MV_10_2:
|
||||
out << "Mac OSX 10.2";
|
||||
case QSysInfo::MV_10_2:
|
||||
sysVersion = "Mac OSX 10.2";
|
||||
break;
|
||||
case QSysInfo::MV_10_3:
|
||||
out << "Mac OSX 10.3";
|
||||
case QSysInfo::MV_10_3:
|
||||
sysVersion = "Mac OSX 10.3";
|
||||
break;
|
||||
case QSysInfo::MV_10_4:
|
||||
out << "Mac OSX 10.4";
|
||||
case QSysInfo::MV_10_4:
|
||||
sysVersion = "Mac OSX 10.4";
|
||||
break;
|
||||
case QSysInfo::MV_10_5:
|
||||
out << "Mac OSX 10.5";
|
||||
case QSysInfo::MV_10_5:
|
||||
sysVersion = "Mac OSX 10.5";
|
||||
break;
|
||||
case QSysInfo::MV_10_6:
|
||||
out << "Mac OSX 10.6";
|
||||
case QSysInfo::MV_10_6:
|
||||
sysVersion = "Mac OSX 10.6";
|
||||
break;
|
||||
// case QSysInfo::MV_10_7:
|
||||
// out << "Mac OSX 10.7";
|
||||
// case QSysInfo::MV_10_7:
|
||||
// sysVersion = "Mac OSX 10.7";
|
||||
// break;
|
||||
default:
|
||||
out << "Mac Unknown";
|
||||
default:
|
||||
sysVersion = "Mac Unknown";
|
||||
break;
|
||||
}
|
||||
#else
|
||||
out << "OSX Unknown";
|
||||
sysVersion = "OSX Unknown";
|
||||
#endif
|
||||
#else
|
||||
#if defined(_WIN32) || defined(__MINGW32__)
|
||||
// Windows
|
||||
#ifdef Q_WS_WIN
|
||||
// Windows
|
||||
#ifdef Q_WS_WIN
|
||||
switch(QSysInfo::windowsVersion())
|
||||
{
|
||||
case QSysInfo::WV_32s:
|
||||
out << "Windows 2.1";
|
||||
case QSysInfo::WV_32s:
|
||||
sysVersion = "Windows 2.1";
|
||||
break;
|
||||
case QSysInfo::WV_95:
|
||||
out << "Windows 95";
|
||||
case QSysInfo::WV_95:
|
||||
sysVersion = "Windows 95";
|
||||
break;
|
||||
case QSysInfo::WV_98:
|
||||
out << "Windows 98";
|
||||
case QSysInfo::WV_98:
|
||||
sysVersion = "Windows 98";
|
||||
break;
|
||||
case QSysInfo::WV_Me:
|
||||
out << "Windows Me";
|
||||
case QSysInfo::WV_Me:
|
||||
sysVersion = "Windows Me";
|
||||
break;
|
||||
case QSysInfo::WV_NT:
|
||||
out << "Windows NT";
|
||||
case QSysInfo::WV_NT:
|
||||
sysVersion = "Windows NT";
|
||||
break;
|
||||
case QSysInfo::WV_2000:
|
||||
out << "Windows 2000";
|
||||
case QSysInfo::WV_2000:
|
||||
sysVersion = "Windows 2000";
|
||||
break;
|
||||
case QSysInfo::WV_XP:
|
||||
out << "Windows XP";
|
||||
case QSysInfo::WV_XP:
|
||||
sysVersion = "Windows XP";
|
||||
break;
|
||||
case QSysInfo::WV_2003:
|
||||
out << "Windows 2003";
|
||||
case QSysInfo::WV_2003:
|
||||
sysVersion = "Windows 2003";
|
||||
break;
|
||||
case QSysInfo::WV_VISTA:
|
||||
out << "Windows Vista";
|
||||
case QSysInfo::WV_VISTA:
|
||||
sysVersion = "Windows Vista";
|
||||
break;
|
||||
case QSysInfo::WV_WINDOWS7:
|
||||
out << "Windows 7";
|
||||
sysVersion = "Windows 7";
|
||||
break;
|
||||
default:
|
||||
out << "Windows";
|
||||
default:
|
||||
sysVersion = "Windows";
|
||||
break;
|
||||
}
|
||||
#else
|
||||
out << "Windows Unknown";
|
||||
#endif
|
||||
#else
|
||||
sysVersion = "Windows Unknown";
|
||||
#endif
|
||||
#else
|
||||
// Linux
|
||||
out << "Linux";
|
||||
sysVersion = "Linux";
|
||||
#endif
|
||||
#endif
|
||||
out << ", 0x60" << std::hex << userLevel << std::dec;
|
||||
out << ")" << std::endl;
|
||||
out << std::endl;
|
||||
text += QString("My RetroShare Configuration is: (%1, %2, 0x60%3)").arg(QString::fromStdString(versionString)).arg(sysVersion).arg(userLevel) + "\n";
|
||||
text += "\n";
|
||||
|
||||
out << "I am having trouble with Retroshare.";
|
||||
out << " Can you help me with....";
|
||||
out << std::endl;
|
||||
out << std::endl;
|
||||
text += QString("I am having trouble with RetroShare.");
|
||||
text += QString(" Can you help me with....") + "\n";
|
||||
text += "\n";
|
||||
|
||||
sendMail("support@retroshare.org", tr("RetroShare Support").toStdString(), out.str());
|
||||
sendMail("support@retroshare.org", tr("RetroShare Support"), text);
|
||||
}
|
||||
|
||||
|
||||
void GetStartedDialog::OpenFAQ()
|
||||
{
|
||||
/* pass the url directly to QDesktopServices::openUrl */
|
||||
std::string faq_url("http://retroshare.sourceforge.net/wiki/index.php/Frequently_Asked_Questions");
|
||||
QDesktopServices::openUrl (QUrl (QString::fromStdString(faq_url)));
|
||||
/* pass the url directly to QDesktopServices::openUrl */
|
||||
QDesktopServices::openUrl(QUrl(URL_FAQ));
|
||||
}
|
||||
|
||||
void GetStartedDialog::OpenForums()
|
||||
{
|
||||
/* pass the url directly to QDesktopServices::openUrl */
|
||||
std::string forum_url("http://retroshare.sourceforge.net/forum/");
|
||||
QDesktopServices::openUrl (QUrl (QString::fromStdString(forum_url)));
|
||||
/* pass the url directly to QDesktopServices::openUrl */
|
||||
QDesktopServices::openUrl(QUrl(URL_FORUM));
|
||||
}
|
||||
|
||||
void GetStartedDialog::OpenWebsite()
|
||||
{
|
||||
/* pass the url directly to QDesktopServices::openUrl */
|
||||
std::string website_url("http://retroshare.org");
|
||||
QDesktopServices::openUrl (QUrl (QString::fromStdString(website_url)));
|
||||
/* pass the url directly to QDesktopServices::openUrl */
|
||||
QDesktopServices::openUrl(QUrl(URL_WEBSITE));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -31,61 +31,57 @@
|
||||
|
||||
class GetStartedDialog : public MainPage
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
/** Default Constructor */
|
||||
GetStartedDialog(QWidget *parent = 0);
|
||||
/** Default Destructor */
|
||||
~GetStartedDialog();
|
||||
public:
|
||||
/** Default Constructor */
|
||||
GetStartedDialog(QWidget *parent = 0);
|
||||
/** Default Destructor */
|
||||
~GetStartedDialog();
|
||||
|
||||
// Single Point for (English) Text of the Invitation.
|
||||
// This is used by other classes.
|
||||
static std::string GetInviteText();
|
||||
static std::string GetCutBelowText();
|
||||
// Single Point for (English) Text of the Invitation.
|
||||
// This is used by other classes.
|
||||
static QString GetInviteText();
|
||||
static QString GetCutBelowText();
|
||||
|
||||
/*** signals: ***/
|
||||
|
||||
protected:
|
||||
// Overloaded to get first show!
|
||||
virtual void showEvent ( QShowEvent * event );
|
||||
virtual void changeEvent(QEvent *e);
|
||||
virtual void showEvent ( QShowEvent * event );
|
||||
virtual void changeEvent(QEvent *e);
|
||||
|
||||
private slots:
|
||||
void tickInviteChanged();
|
||||
void tickAddChanged();
|
||||
void tickConnectChanged();
|
||||
void tickFirewallChanged();
|
||||
|
||||
void tickInviteChanged();
|
||||
void tickAddChanged();
|
||||
void tickConnectChanged();
|
||||
void tickFirewallChanged();
|
||||
void addFriends();
|
||||
void inviteFriends();
|
||||
|
||||
void addFriends();
|
||||
void inviteFriends();
|
||||
void emailFeedback();
|
||||
void emailSupport();
|
||||
void emailSubscribe();
|
||||
void emailUnsubscribe();
|
||||
|
||||
void emailFeedback();
|
||||
void emailSupport();
|
||||
void emailSubscribe();
|
||||
void emailUnsubscribe();
|
||||
|
||||
void OpenFAQ();
|
||||
void OpenForums();
|
||||
void OpenWebsite();
|
||||
void OpenFAQ();
|
||||
void OpenForums();
|
||||
void OpenWebsite();
|
||||
|
||||
private:
|
||||
void updateFromUserLevel();
|
||||
|
||||
void updateFromUserLevel();
|
||||
|
||||
|
||||
bool mFirstShow;
|
||||
bool mFirstShow;
|
||||
|
||||
private:
|
||||
|
||||
QTimer *mTimer;
|
||||
QTimer *mInviteTimer;
|
||||
QTimer *mTimer;
|
||||
QTimer *mInviteTimer;
|
||||
|
||||
/** Qt Designer generated object */
|
||||
Ui::GetStartedDialog ui;
|
||||
Ui::GetStartedDialog ui;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -595,13 +595,12 @@ background: white;
|
||||
<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-family:'Arial'; font-size:12pt;">Retroshare is nothing without your Friends. Click on the Button to start the process.</span></p>
|
||||
<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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Be sure to get their invitation back as well... </span></p>
|
||||
<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:12pt;">You can only connect with friends if you have both added each other.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p></body></html></string>
|
||||
<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:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -623,7 +622,7 @@ p, li { white-space: pre-wrap; }
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Add Your Friends to Retroshare</string>
|
||||
<string>Add Your Friends to RetroShare</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="images.qrc">
|
||||
@ -674,8 +673,7 @@ 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-family:'Arial'; font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p></body></html></string>
|
||||
<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:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -758,15 +756,15 @@ p, li { white-space: pre-wrap; }
|
||||
<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-family:'Arial'; font-size:12pt;">Be Online at the same time, and Retroshare will automatically connect you!</span></p>
|
||||
<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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Your client needs to find the Retroshare Network before it can make connections.</span></p>
|
||||
<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:12pt;">This takes 5-30 minutes the first time you startup Retroshare</span></p>
|
||||
<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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p>
|
||||
<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:12pt;">This takes 5-30 minutes the first time you startup RetroShare</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">The DHT indicator (in the Status Bar) turnsGreen when it can make connections.</span></p>
|
||||
<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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p>
|
||||
<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:12pt;">If it remains Red, then you have a Nasty Firewall, that Retroshare struggles to connect through.</span></p>
|
||||
<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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p>
|
||||
<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:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html></string>
|
||||
</property>
|
||||
@ -890,20 +888,18 @@ p, li { white-space: pre-wrap; }
|
||||
<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-family:'Arial'; font-size:12pt;">Having trouble getting started with Retroshare?</span></p>
|
||||
<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:12pt;">Having trouble getting started with RetroShare?</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">1) look at the FAQ Wiki. This is a bit old, we trying to bring it up to date.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">2) check out the Online Forums. Ask questions and discuss features.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">3) try the Internal Retroshare Forums </span></p>
|
||||
<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:12pt;">3) try the Internal RetroShare Forums </span></p>
|
||||
<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:12pt;"> - These come online once you are connected to friends.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">4) If you are still stuck. Email us.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Enjoy Retrosharing</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></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-family:'Arial'; font-size:12pt;"></p></body></html></string>
|
||||
<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:12pt;">Enjoy Retrosharing</span></p></body></html></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -1296,7 +1296,7 @@ EmailPage::EmailPage(QWidget *parent) : QWizardPage(parent) {
|
||||
inviteTextEdit = new QTextEdit;
|
||||
inviteTextEdit->setReadOnly(true);
|
||||
|
||||
inviteTextEdit->setPlainText(QString::fromUtf8(GetStartedDialog::GetInviteText().c_str()));
|
||||
inviteTextEdit->setPlainText(GetStartedDialog::GetInviteText());
|
||||
|
||||
emailvboxLayout = new QVBoxLayout;
|
||||
emailvboxLayout->addLayout(emailhbox2Layout);
|
||||
@ -1329,7 +1329,7 @@ bool EmailPage::validatePage()
|
||||
{
|
||||
QString body = inviteTextEdit->toPlainText();
|
||||
|
||||
body += "\n" + QString::fromUtf8(GetStartedDialog::GetCutBelowText().c_str());
|
||||
body += "\n" + GetStartedDialog::GetCutBelowText();
|
||||
body += "\n\n" + QString::fromUtf8(rsPeers->GetRetroshareInvite(false).c_str());
|
||||
|
||||
sendMail (mailaddresses, subjectEdit->text(), body);
|
||||
|
Binary file not shown.
@ -691,7 +691,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>CertificatePage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+733"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+736"/>
|
||||
<source>Certificate files</source>
|
||||
<translation>Zertifikat-Dateien</translation>
|
||||
</message>
|
||||
@ -1170,7 +1170,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Neue Chat Lobby erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/ChatLobbyWidget.cpp" line="+53"/>
|
||||
<location filename="../gui/ChatLobbyWidget.cpp" line="+54"/>
|
||||
<source>Name</source>
|
||||
<translation>Name</translation>
|
||||
</message>
|
||||
@ -1185,17 +1185,17 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Private Lobbies</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+5"/>
|
||||
<location line="+6"/>
|
||||
<source>Public Lobbies</source>
|
||||
<translation>Öffentliche Lobbies</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+17"/>
|
||||
<location line="+21"/>
|
||||
<source>Create chat lobby</source>
|
||||
<translation>Erstelle Chat Lobby</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+5"/>
|
||||
<location line="+6"/>
|
||||
<source>Unsubscribe</source>
|
||||
<translation>Abbestellen</translation>
|
||||
</message>
|
||||
@ -1205,7 +1205,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Abonnieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+244"/>
|
||||
<location line="+254"/>
|
||||
<source>Invitation to chat lobby</source>
|
||||
<translation>Einladung zur Chat Lobby</translation>
|
||||
</message>
|
||||
@ -1249,7 +1249,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Abbrechen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/feeds/ChatMsgItem.cpp" line="+248"/>
|
||||
<location filename="../gui/feeds/ChatMsgItem.cpp" line="+247"/>
|
||||
<source>Quick Message</source>
|
||||
<translation>Schnelle Nachrricht</translation>
|
||||
</message>
|
||||
@ -1422,7 +1422,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>ChatStyle</name>
|
||||
<message>
|
||||
<location filename="../gui/chat/ChatStyle.cpp" line="+439"/>
|
||||
<location filename="../gui/chat/ChatStyle.cpp" line="+443"/>
|
||||
<source>Standard style for group chat</source>
|
||||
<translation>Standard Stil für den Gruppenchat</translation>
|
||||
</message>
|
||||
@ -1548,7 +1548,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Löscht den gespeicherten und angezeigten Chat Verlauf</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/chat/ChatWidget.cpp" line="+342"/>
|
||||
<location filename="../gui/chat/ChatWidget.cpp" line="+346"/>
|
||||
<source>Paste RetroShare Link</source>
|
||||
<translation>RetroShare Link einfügen</translation>
|
||||
</message>
|
||||
@ -1942,7 +1942,7 @@ und meinen GPG Schlüssel nicht unterzeichnet</translation>
|
||||
<context>
|
||||
<name>ConnectFriendWizard</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-880"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-881"/>
|
||||
<source>Certificate Load Failed</source>
|
||||
<translation>Das Zertifikat konnte nicht geladen werden</translation>
|
||||
</message>
|
||||
@ -2989,7 +2989,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Dein Spitzname für diese Lobby (Ändere den Defaultnamen in den Optionen->Chat)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+49"/>
|
||||
<location line="+53"/>
|
||||
<source>Please select at least one friend</source>
|
||||
<translation>Bitte wähle mindestens einen Freund</translation>
|
||||
</message>
|
||||
@ -3664,7 +3664,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="+1139"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+1140"/>
|
||||
<source>Invite Friends by Email</source>
|
||||
<translation>Lade Freunde per Email ein</translation>
|
||||
</message>
|
||||
@ -3690,13 +3690,16 @@ Das ist nützlich, wenn Du eine externe Festplatte freigibst und die Datei nicht
|
||||
</message>
|
||||
<message>
|
||||
<location line="+2"/>
|
||||
<source>Friend invites you to check out RetroShare</source>
|
||||
<translation>Ein Freund lädt Dich zu RetroShare ein</translation>
|
||||
<source>RetroShare Invitation</source>
|
||||
<translation type="unfinished">RetroShare Einladung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Friend invites you to check out RetroShare</source>
|
||||
<translation type="obsolete">Ein Freund lädt Dich zu RetroShare ein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+14"/>
|
||||
<source>Friend uses RetroShare to communicate securely, and invites you to join him to share files together. <br>RetroShare is free and using it is safe: it contains no viruses, no spyware, no adware and it can easily be uninstalled. <br>For more information, see our website http://retroshare.sourceforge.net/ or download the software here http://retroshare.sourceforge.net/downloads.html. <br>See you soon on RetroShare!</source>
|
||||
<translation>Ein Freund verwendet RetroShare zur sicheren Kommunikation. Er lädt Dich zum Tauschen von Dateien ein.
|
||||
<translation type="obsolete">Ein Freund verwendet RetroShare zur sicheren Kommunikation. Er lädt Dich zum Tauschen von Dateien ein.
|
||||
RetroShare ist frei und die Benutzung ist sicher: Es enthält keine Viren, keine Spyware, keine Adware und es kann leicht wieder entfernt werden.
|
||||
Erfahre mehr auf unsere Webseite http://retroshare.sourceforge.net/ oder lade die Software dort herunter http://retroshare.sourceforge.net/downloads.html.
|
||||
Bis bald in RetroShare!</translation>
|
||||
@ -3705,7 +3708,7 @@ Bis bald in RetroShare!</translation>
|
||||
<context>
|
||||
<name>ErrorMessagePage</name>
|
||||
<message>
|
||||
<location line="-357"/>
|
||||
<location line="-343"/>
|
||||
<source>Sorry, some error appeared</source>
|
||||
<translation>Entschuldigung, es trat ein Fehler auf</translation>
|
||||
</message>
|
||||
@ -5846,41 +5849,71 @@ Gib Dein GPG Passwort wenn Du gefragt wirst ein, um Deinen neuen Schlüssel zu u
|
||||
<message>
|
||||
<location filename="../gui/GetStartedDialog.ui" line="+506"/>
|
||||
<source>Getting Started</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Erste Schritte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+43"/>
|
||||
<location line="+23"/>
|
||||
<source>Invite Friends</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Freunde einladen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+54"/>
|
||||
<source>Add Your Friends to Retroshare</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="obsolete">Füge deine Freunde zu RetroShare hinzu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+23"/>
|
||||
<location line="+76"/>
|
||||
<source> Add Friends </source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Freunde hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+54"/>
|
||||
<location line="+53"/>
|
||||
<source>Connect To Friends</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Zu Freunden verbinden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<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; }
|
||||
</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-family:'Arial'; font-size:12pt;">Be Online at the same time, and Retroshare will automatically connect you!</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Your client needs to find the Retroshare Network before it can make connections.</span></p>
|
||||
<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:12pt;">This takes 5-30 minutes the first time you startup RetroShare</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p>
|
||||
<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:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html></source>
|
||||
<translation type="obsolete"><!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-family:'Arial'; font-size:12pt;">Seid zur selben Zeit Online und Retroshare wird sich automatisch verbinden!</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Dein Retroshare muß das Netzwerk finden, bevor es sich verbinden kann.</span></p>
|
||||
<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:12pt;">Das kann 5-30 Minuten beim ersten Start von Retroshare dauern.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Die DHT Anzeige (in der Statuszeile) wechselt zu grün wenn Verbindungen gemacht werden können.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Nach einigen Mitnuten wechselt auch die NAT Anzeige (auch in der Statuszeile) zu gelb oder grün.</span></p>
|
||||
<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:12pt;">Wenn sie rot bleibt, hast du eine Firewall, die RetroShare am Verbinden hindert.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Schaue in die Sektion "Weitere Hilfe" um mehr Informationen über das Verbinden zu bekommen.</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+90"/>
|
||||
<source>Advanced: Open Firewall Port</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Erweitert: Öffne Firewall Port</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+90"/>
|
||||
<source>Further Help and Support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Weitere Hilfe und Support</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-289"/>
|
||||
<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; }
|
||||
@ -5892,10 +5925,19 @@ 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:12pt;">Be sure to get their invitation back as well... </span></p>
|
||||
<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:12pt;">You can only connect with friends if you have both added each other.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="obsolete"><!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-family:'Arial'; font-size:12pt;">Retroshare ist nichts ohne deine Freunde. Klicke auf den Knopf um den Prozess zu starten.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Schicke eine Einladungsmail mit deinem &quot;Zertifikat&quot; an deine Freunde.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Versichere dich ihre Einladung zurückzubekommen... </span></p>
|
||||
<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:12pt;">Du kannst dich nur zu deinen Freunden verbinden, wenn ihr euch gegenseitig hinzugefügt habt.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+77"/>
|
||||
<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; }
|
||||
@ -5904,26 +5946,94 @@ p, li { white-space: pre-wrap; }
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation type="obsolete"><!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-family:'Arial'; font-size:12pt;">Wenn dein Freund dir eine Einladung schickt, klicke hier um den Assistent zu öffnen.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Kopiere und füge das &quot;Zertifikat&quot; deines Freundes in den Assistent ein und füge ihn als Freund hinzu.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+86"/>
|
||||
<location line="-287"/>
|
||||
<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; }
|
||||
</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-family:'Arial'; font-size:12pt;">Be Online at the same time, and Retroshare will automatically connect you!</span></p>
|
||||
<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:12pt;">RetroShare is nothing without your Friends. Click on the Button to start the process.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Your client needs to find the Retroshare Network before it can make connections.</span></p>
|
||||
<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:12pt;">This takes 5-30 minutes the first time you startup Retroshare</span></p>
|
||||
<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:12pt;">Email an Invitation with your &quot;ID Certificate&quot; to your friends.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">The DHT indicator (in the Status Bar) turnsGreen when it can make connections.</span></p>
|
||||
<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:12pt;">Be sure to get their invitation back as well... </span></p>
|
||||
<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:12pt;">You can only connect with friends if you have both added each other.</span></p></body></html></source>
|
||||
<translation><!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-family:'Arial'; font-size:12pt;">RetroShare ist nichts ohne deine Freunde. Klicke auf "Freunde einladen" um den Prozess zu starten.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p>
|
||||
<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:12pt;">If it remains Red, then you have a Nasty Firewall, that Retroshare struggles to connect through.</span></p>
|
||||
<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:12pt;">Schicke eine Einladungsmail mit deinem &quot;Zertifikat&quot; an deine Freunde.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Versichere dich ihre Einladung zurück zu bekommen... </span></p>
|
||||
<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:12pt;">Du kannst dich nur zu deinen Freunden verbinden, wenn ihr euch gegenseitig hinzugefügt habt.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+31"/>
|
||||
<source>Add Your Friends to RetroShare</source>
|
||||
<translation>Füge deine Freunde zu RetroShare hinzu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+45"/>
|
||||
<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; }
|
||||
</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-family:'Arial'; font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html></source>
|
||||
<translation><!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-family:'Arial'; font-size:12pt;">Wenn dein Freund dir eine Einladung schickt, klicke auf "Freunde hinzufügen" um den Assistent zu öffnen.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Kopiere das &quot;Zertifikat&quot; deines Freundes und füge es in den Assistent ein und akzeptiere ihn als Freund.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+85"/>
|
||||
<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; }
|
||||
</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-family:'Arial'; font-size:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p>
|
||||
<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:12pt;">This takes 5-30 minutes the first time you startup RetroShare</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">The DHT indicator (in the Status Bar) turns Green when it can make connections.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">After a couple of minutes, the NAT indicator (also in the Status Bar) switch to Yellow or Green.</span></p>
|
||||
<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:12pt;">If it remains Red, then you have a Nasty Firewall, that RetroShare struggles to connect through.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><!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-family:'Arial'; font-size:12pt;">Seid zur selben Zeit Online und RetroShare wird sich automatisch verbinden!</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Bevor sich RetroShare verbinden kann, muß es das Netzwerk finden.</span></p>
|
||||
<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:12pt;">Das kann 5-30 Minuten beim ersten Start von Retroshare dauern.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Die DHT Anzeige (in der Statuszeile) wechselt zu grün, wenn Verbindungen gemacht werden können.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Nach einigen Mitnuten wechselt auch die NAT Anzeige (auch in der Statuszeile) zu gelb oder grün.</span></p>
|
||||
<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:12pt;">Wenn sie rot bleibt, hast du eine Firewall, die RetroShare am Verbinden hindert.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Schaue in die Sektion "Weitere Hilfe" um mehr Informationen über das Verbinden zu bekommen.</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+84"/>
|
||||
@ -5940,7 +6050,19 @@ 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:12pt;">If none of this makes sense, don't worry about it Retroshare will still work.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></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-family:'Arial'; font-size:8pt;"></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><!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-family:'Arial'; font-size:12pt;">Du kannst die Verbindungen von RetroShare verbessern, indem du den externen Port an deiner Firewall öffnest.</span></p>
|
||||
<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:12pt;">Das erlaubt deinen Freunden sich mit dir zu verbinden.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Der einfachste Weg ist das aktivieren von UPnP an deinem Router.</span></p>
|
||||
<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:12pt;">Schaue in die Anleitung deines Routers um die passende Einstellung zu finden.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Auch wenn nichts davon hilft wird RetroShare trotzdem funktionieren.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></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-family:'Arial'; font-size:8pt;"></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+48"/>
|
||||
@ -5948,96 +6070,135 @@ p, li { white-space: pre-wrap; }
|
||||
<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-family:'Arial'; font-size:12pt;">Having trouble getting started with Retroshare?</span></p>
|
||||
<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:12pt;">Having trouble getting started with RetroShare?</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">1) look at the FAQ Wiki. This is a bit old, we trying to bring it up to date.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">2) check out the Online Forums. Ask questions and discuss features.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">3) try the Internal Retroshare Forums </span></p>
|
||||
<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:12pt;">3) try the Internal RetroShare Forums </span></p>
|
||||
<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:12pt;"> - These come online once you are connected to friends.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">4) If you are still stuck. Email us.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Enjoy Retrosharing</span></p>
|
||||
<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:12pt;">Enjoy Retrosharing</span></p></body></html></source>
|
||||
<translation><!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-family:'Arial'; font-size:12pt;">Hast du Schwierigkeiten bei den ersten Schritten mit RetroShare?</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></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-family:'Arial'; font-size:12pt;"></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<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:12pt;">1) schaue in die FAQ Wiki. Diese ist etwas alt, aber wir versuchen sie auf den neuesten Stand zu bekommen.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">2) schaue in das Online Forum. Frage und diskutiere mit.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">3) versuche es in den internen RetroShare Foren </span></p>
|
||||
<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:12pt;"> - Diese werden geladen, wenn du zu deinen Freunden verbunden bist.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">4) Wenn du immer noch nicht weiterkommst, schreibe eine Mail an uns.</span></p>
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:12pt;"></p>
|
||||
<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:12pt;">Viel Spaß beim Retrosharing</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+26"/>
|
||||
<location line="+24"/>
|
||||
<source>Open RS Website</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Öffne RS Internetseite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>Open FAQ Wiki</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Öffne FAQ Wiki</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>Open Online Forums</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Öffne Online Forum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+20"/>
|
||||
<source>Email Support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Email Support</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>Email Feedback</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Email Feedback</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../gui/GetStartedDialog.cpp" line="+259"/>
|
||||
<source>You are cordially invited to join the Retroshare Network,</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Your friend has installed Retroshare, and would like you to try it out.</source>
|
||||
<translation type="obsolete">Dein Freund hat RetroShare installiert und möchte, daß du es auch versuchst.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Retroshare is a Secure P2P Sharing Network</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location filename="../gui/GetStartedDialog.cpp" line="+262"/>
|
||||
<source>forums and channels, all of which are as secure as the file-sharing.</source>
|
||||
<translation>Foren, Kanäle, von denen alle ebenso sicher sind wie das Tauschen von Dateien.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Retroshare Invitation</source>
|
||||
<translation type="obsolete">RetroShare Einladung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-11"/>
|
||||
<source>RetroShare Invitation</source>
|
||||
<translation>RetroShare Einladung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+5"/>
|
||||
<source>Your friend has installed RetroShare, and would like you to try it out.</source>
|
||||
<translation>Dein Freund hat RetroShare installiert und möchte, daß du es auch versuchst.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+2"/>
|
||||
<source>We use direct connections between you and your friends to maintain your Privacy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>You can get RetroShare here: %1</source>
|
||||
<translation>Du kannst RetroShare hier herunterladen: %1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Install the client to chat, share data and converse in the forums</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location line="+2"/>
|
||||
<source>RetroShare is a private Friend-2-Friend sharing network.</source>
|
||||
<translation>RetroShare ist ein privates Friend-2-Friend Netzwerk.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+1"/>
|
||||
<source>It has many features, including built-in chat, messaging, </source>
|
||||
<translation>Es hat viele Funktionen wie Chat, Nachrichten, </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+4"/>
|
||||
<source>Get Retroshare here: http://retroshare.sourceforge.net/download</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<source>Here is your friends ID Certificate.</source>
|
||||
<translation>Hier ist das Zertifikat deines Freundes.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+3"/>
|
||||
<source>Below is your friends ID Certificate. Cut and paste this into your Retroshare client</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location line="+1"/>
|
||||
<source>Cut and paste the text below into your RetroShare client</source>
|
||||
<translation>Kopiere den unteren Text und füge ihn in deinem RetroShare ein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+2"/>
|
||||
<source>and send them your ID Certificate to enable the secure connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location line="+1"/>
|
||||
<source>and send them your ID Certificate to get securely connected.</source>
|
||||
<translation>und sende deinem Freund dein Zertifikat zum sicheren Verbinden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+6"/>
|
||||
<source>Retroshare Invitation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<location line="+7"/>
|
||||
<source>Cut Below Here</source>
|
||||
<translation>Hier ausschneiden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+51"/>
|
||||
<source>Subscribe</source>
|
||||
<translation type="obsolete">Abonnieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unsubscribe</source>
|
||||
<translation type="obsolete">Abbestellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+38"/>
|
||||
<source>RetroShare Feedback</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>RetroShare Feedback</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+145"/>
|
||||
<location line="+141"/>
|
||||
<source>RetroShare Support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>RetroShare Support</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -6680,7 +6841,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>IntroPage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-460"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-461"/>
|
||||
<source>&Make friend with selected friends of my friends</source>
|
||||
<translation>&Füge ausgewählte Freunde Deiner Freunde hinzu</translation>
|
||||
</message>
|
||||
@ -6754,7 +6915,7 @@ Die folgenden Wege sind möglich:</translation>
|
||||
<message>
|
||||
<location line="+41"/>
|
||||
<source>Getting Started</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Erste Schritte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+123"/>
|
||||
@ -11302,7 +11463,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>RsidPage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+979"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="+980"/>
|
||||
<source>RetroShare ID</source>
|
||||
<translation>RetroShare ID</translation>
|
||||
</message>
|
||||
@ -12588,7 +12749,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Lade Konfiguration</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+5"/>
|
||||
<location line="+12"/>
|
||||
<source>Create interface</source>
|
||||
<translation>Erstelle Oberfläche</translation>
|
||||
</message>
|
||||
@ -13307,7 +13468,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>TextPage</name>
|
||||
<message>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-991"/>
|
||||
<location filename="../gui/connect/ConnectFriendWizard.cpp" line="-992"/>
|
||||
<source>Use text representation of the PGP certificates.</source>
|
||||
<translation>Verwende diesen Text als PGP Zertifikat.</translation>
|
||||
</message>
|
||||
@ -13337,7 +13498,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Bereinige Zertifikat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+75"/>
|
||||
<location line="+76"/>
|
||||
<source>No or misspelled BEGIN tag found</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@ -13382,7 +13543,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-204"/>
|
||||
<location line="-205"/>
|
||||
<source>Text certificate</source>
|
||||
<translation>Text-Zertifikat</translation>
|
||||
</message>
|
||||
@ -13397,7 +13558,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Starte das Standard-Emailprogramm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+135"/>
|
||||
<location line="+136"/>
|
||||
<source>Connect Friend Help</source>
|
||||
<translation>Verbindungshilfe</translation>
|
||||
</message>
|
||||
@ -13412,7 +13573,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Dein Zertiifkat ist in in die Zwischenablage kopiert worden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-59"/>
|
||||
<location line="-60"/>
|
||||
<source>RetroShare Invite</source>
|
||||
<translation>RetroShare Einladung</translation>
|
||||
</message>
|
||||
|
Loading…
x
Reference in New Issue
Block a user