diff --git a/retroshare-gui/src/gui/chat/ChatWidget.cpp b/retroshare-gui/src/gui/chat/ChatWidget.cpp index 0b11baf0e..a46b3ab4b 100644 --- a/retroshare-gui/src/gui/chat/ChatWidget.cpp +++ b/retroshare-gui/src/gui/chat/ChatWidget.cpp @@ -30,6 +30,7 @@ #include #include #include +#include #include "ChatWidget.h" #include "ui_ChatWidget.h" @@ -117,7 +118,8 @@ ChatWidget::ChatWidget(QWidget *parent) : ui->chatTextEdit->installEventFilter(this); -#ifdef RS_RELEASE_VERSION +#if QT_VERSION < 0x040700 + // embedded images are not supported before QT 4.7.0 ui->attachPictureButton->setVisible(false); #endif @@ -585,7 +587,11 @@ void ChatWidget::addExtraPicture() // select a picture file QString file; if (misc::getOpenFileName(window(), RshareSettings::LASTDIR_IMAGES, tr("Load Picture File"), "Pictures (*.png *.xpm *.jpg)", file)) { - ui->hashBox->addAttachments(QStringList(file), HashedFile::Picture); + QString encodedImage; + if (RsHtml::makeEmbeddedImage(file, encodedImage, 640*480)) { + QTextDocumentFragment fragment = QTextDocumentFragment::fromHtml(encodedImage); + ui->chatTextEdit->textCursor().insertFragment(fragment); + } } } diff --git a/retroshare-gui/src/gui/msgs/MessageComposer.cpp b/retroshare-gui/src/gui/msgs/MessageComposer.cpp index f2dd48a6e..56feda96a 100644 --- a/retroshare-gui/src/gui/msgs/MessageComposer.cpp +++ b/retroshare-gui/src/gui/msgs/MessageComposer.cpp @@ -307,8 +307,8 @@ MessageComposer::MessageComposer(QWidget *parent, Qt::WFlags flags) ui.hashBox->setDropWidget(this); ui.hashBox->setAutoHide(true); -#ifdef RS_RELEASE_VERSION - ui.imagebtn->setVisible(false); +#if QT_VERSION < 0x040700 + // embedded images are not supported before QT 4.7.0 ui.imagebtn->setVisible(false); #endif @@ -1693,7 +1693,8 @@ void MessageComposer::setupInsertActions() QAction *a; -#ifndef RS_RELEASE_VERSION +#if QT_VERSION >= 0x040700 + // embedded images are not supported before QT 4.7.0 a = new QAction(QIcon(""), tr("&Image"), this); connect(a, SIGNAL(triggered()), this, SLOT(addImage())); menu->addAction(a); @@ -2094,28 +2095,16 @@ void MessageComposer::on_contactsdockWidget_visibilityChanged(bool visible) void MessageComposer::addImage() { - QString fileimg; - if (misc::getOpenFileName(this, RshareSettings::LASTDIR_IMAGES, tr("Choose Image"), tr("Image Files supported (*.png *.jpeg *.jpg *.gif)"), fileimg)) { - QImage base(fileimg); - - QString pathimage = fileimg.left(fileimg.lastIndexOf("/"))+"/"; - Settings->setValueToGroup("MessageComposer", "LastDir", pathimage); - - Create_New_Image_Tag(fileimg); + QString file; + if (misc::getOpenFileName(this, RshareSettings::LASTDIR_IMAGES, tr("Choose Image"), tr("Image Files supported (*.png *.jpeg *.jpg *.gif)"), file)) { + QString encodedImage; + if (RsHtml::makeEmbeddedImage(file, encodedImage, 640*480)) { + QTextDocumentFragment fragment = QTextDocumentFragment::fromHtml(encodedImage); + ui.msgText->textCursor().insertFragment(fragment); + } } } -void MessageComposer::Create_New_Image_Tag( const QString urlremoteorlocal ) -{ - /*if (image_extension(urlremoteorlocal)) {*/ - QString subtext = QString("

").arg(urlremoteorlocal); - ///////////subtext.append("

Description on image.

"); - QTextDocumentFragment fragment = QTextDocumentFragment::fromHtml(subtext); - ui.msgText->textCursor().insertFragment(fragment); - //emit statusMessage(QString("Image new :").arg(urlremoteorlocal)); - //} -} - void MessageComposer::fontSizeIncrease() { if ( !( ui.msgText->textCursor().blockFormat().hasProperty( TextFormat::HtmlHeading ) && diff --git a/retroshare-gui/src/gui/msgs/MessageComposer.h b/retroshare-gui/src/gui/msgs/MessageComposer.h index e64ade58f..bc9faa4e1 100644 --- a/retroshare-gui/src/gui/msgs/MessageComposer.h +++ b/retroshare-gui/src/gui/msgs/MessageComposer.h @@ -176,8 +176,6 @@ private: void clearTagLabels(); void showTagLabels(); - void Create_New_Image_Tag(const QString urlremoteorlocal); - QAction *actionSave, *actionAlignLeft, *actionAlignCenter, diff --git a/retroshare-gui/src/lang/retroshare_de.qm b/retroshare-gui/src/lang/retroshare_de.qm index d441d0e28..b069d05cf 100644 Binary files a/retroshare-gui/src/lang/retroshare_de.qm and b/retroshare-gui/src/lang/retroshare_de.qm differ diff --git a/retroshare-gui/src/lang/retroshare_de.ts b/retroshare-gui/src/lang/retroshare_de.ts index 21958c5f8..cc0e6c36f 100644 --- a/retroshare-gui/src/lang/retroshare_de.ts +++ b/retroshare-gui/src/lang/retroshare_de.ts @@ -1,35 +1,46 @@ - + + + AboutDialog + About RetroShare Über RetroShare + About Über + close Schließen + + About RetroShare %1 Über RetroShare %1 + Max score: %1 Maximaler Score: %1 + Score: %1 Score: %1 + Level: %1 Level: %1 + Have fun ;-) Viel Spaß ;-) @@ -37,23 +48,28 @@ AddFileAssociationDialog + File type(extension): Dateityp (Erweiterung): + Use default command Standardprogramm nutzen + Command Programm + RetroShare RetroShare - Sorry, can't determine system default command for this file + + Sorry, can't determine system default command for this file Entschuldigung. Es konnte kein Standardprogramm zum Öffnen gefunden werden @@ -62,34 +78,42 @@ AdvancedSearchDialog + RetroShare: Advanced Search RetroShare: Erweiterte Suche + Search Criteria Suchkriterien + Add a further search criterion. Ein weiteres Suchkriterium hinzufügen. + Reset the search criteria. Suchkriterien zurücksetzen. + Cancels the search. Bricht die Suche ab. + Cancel Abbrechen + Perform the advanced search. Die erweiterte Suche durchführen. + Search Suchen @@ -97,30 +121,37 @@ AppearancePage + Language Sprache + Style Stil + Style Sheet Style-Sheet + Appearance Aussehen + Changes to language will only take effect after restarting RetroShare! Eine Änderung der Sprache wirkt sich erst nach einem Neustart von RetroShare aus! + Choose the language used in RetroShare Wähle die Sprache, die RetroShare verwendet + Choose RetroShare's interface style Wähle den Oberflächenstil von RetroShare @@ -128,38 +159,48 @@ ApplicationWindow + + RetroShare RetroShare + Photo View Fotoansicht + Hide Verbergen + Show Anzeigen + Identities Identitäten + Wiki Pages Wiki-Seiten + The Wire The Wire + ForumsV2 ForumsV2 + Posted Links Veröffentlichte Links @@ -167,14 +208,17 @@ AttachFileItem + %p Kb %p KiB + Cancel Download Download abbrechen + [ERROR]) [Fehler]) @@ -182,6 +226,7 @@ AvatarWidget + Click to change your avatar Klick zum Ändern deines Avatars @@ -189,58 +234,73 @@ BandwidthGraph + RetroShare Bandwidth Usage RetroShare Bandbreitennutzung + + Show Settings Einstellungen anzeigen + Reset Zurücksetzen + Receive Rate Empfangsrate + Send Rate Senderate + Always on Top Immer im Vordergrund + Style Stil + Changes the transparency of the Bandwidth Graph Ändert die Transparenz des Bandbreiten-Graphen + 100 100 + % Opaque % undurchsichtig + Save Speichern + Cancel Abbrechen + Since: Seit: + Hide Settings Einstellungen verbergen @@ -248,42 +308,53 @@ BlogDetails + + Blog Details Blogdetails + Blog Info Bloginfo + Blog Name Blogname + Popularity Beliebtheit + Last Post Letzter Beitrag + Blog ID Blog-ID + Blog Description Blogbeschreibung + Cancel Abbrechen + OK OK + Close Schließen @@ -291,22 +362,28 @@ BlogMsgItem + Remove Item Eintrag entfernen + + Expand Erweitern + Subject Betreff + Play Media Medium abspielen + Hide Verbergen @@ -314,34 +391,43 @@ BlogNewItem + Remove Item Eintrag entfernen + Subscribe to Blog Blog abonnieren + + Expand Erweitern + Blog Decscription Blogbeschreibung + Unknown Blog Unbekanntes Blog + New Blog Neues Blog + Updated Blog Geändertes Blog + Hide Verbergen @@ -349,14 +435,16 @@ BlogsDialog + Form Formular + <!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;"> +</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:10pt; font-weight:600;">Blogs</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -365,14 +453,16 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt; font-weight:600;">Blogs</span></p></body></html> + Add Hinzufügen + <!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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Post To Blog</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -381,10 +471,11 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Auf Blog ver&ouml;ffentlichen</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:600; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:600; 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:'DejaVu Sans'; font-size:14pt; color:#ffffff;">Blog Name</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -393,10 +484,11 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'DejaVu Sans'; font-size:14pt; color:#ffffff;">Blog-Name</span></p></body></html> + <!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-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Unsubcribe To Blog</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -405,14 +497,16 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Blog abbestellen</span></p></body></html> + Unsubscribe Abbestellen + <!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-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Subscribe To Blog</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -421,58 +515,76 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Blog abonnieren</span></p></body></html> + Subscribe Abonnieren + + Create New Blog Neues Blog erstellen + Name Name + ID ID + Own Blogs Eigene Blogs + Subscribed Blogs Abonnierte Blogs + Popular Blogs Beliebte Blogs + Other Blogs Andere Blogs + Post to Blog Blogbeitrag erstellen + Subscribe to Blog Blog abonnieren + Unsubscribe to Blog Blog abbestellen + Show Blog Details Blogdetails anzeigen + Create a new Blog Neues Blog erstellen + + + + Popularity: %1 Fetches: %2 Available: %3 @@ -484,14 +596,16 @@ Verfügbar: %3 BlogsMsgItem + Form Formular + <!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:11pt; font-weight:600; font-style:italic;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:11pt; font-weight:600; font-style:italic;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#656565;">Blog Subject</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -500,10 +614,11 @@ 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=" color:#656565;">Blog-Betreff</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:600; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:600; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; color:#666666;">DateTime</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -512,26 +627,33 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; color:#666666;">Datum/Zeit</span></p></body></html> + + Expand Erweitern + Remove Item Beitrag löschen + Unsubscribe From Channel Kanal abbestellen + Comments here Kommentare hier + Comment Kommentar + Hide Verbergen @@ -539,58 +661,72 @@ p, li { white-space: pre-wrap; } BwCtrlWindow + Bandwidth Control WIndow Bandbreiten-Kontrollfenster + BandWidth Measurements Bandbreiten-Messungen + ID ID + Name Name + In (KB/s) Eingehend (KiB/s) + InMax (KB/s) Max. eingehend (KiB/s) + InQueue InQueue + InAllocated (KB/s) InAllocated (KiB/s) + Allocated Sent Reservierte gesendet + Out (KB/s) Ausgehend (KiB/s) + OutMax (KB/s) Max. ausgehend (KiB/s) + OutQueue OutQueue + OutAllowed (KB/s) Erlaubt ausgehend (KiB/s) + Allowed Recvd Erlaubt Empfang @@ -598,62 +734,77 @@ p, li { white-space: pre-wrap; } CalDialog + Form Formular + Local Calendars Lokale Kalender + Shared Calendar List Liste der gemeinsamen Kalender + Share Details Details verteilen + Name: Name: + Location: Ort: + ... ... + Status: Status: + Private Privat + Public Öffentlich + Allow List: Liste "erlaubt": + <Disabled> <abgeschaltet> + Add Hinzufügen + Remove Entfernen + Peer Calendars Nachbarn-Kalender @@ -661,54 +812,68 @@ p, li { white-space: pre-wrap; } ChanMsgItem + Toggle Message Read Status Den Beitrag als gelesen markieren + New Neu + Download Herunterladen + Play Abspielen + Unsubscribe From Channel Kanal abbestellen + Remove Item Eintrag entfernen + + Expand Erweitern + Copy RetroShare Link RetroShare-Link kopieren + Channel Feed Kanal + Warning! You have less than %1 hours and %2 minute before this file is delted Consider saving it. Warnung! Du hast weniger als %1 Stunden und %2 Minuten bevor die Datei gelöscht wird. Denke daran, sie zu speichern. + Hide Verbergen + Files Dateien + Set as read and remove item Als gelesen markieren und Eintrag entfernen @@ -716,34 +881,43 @@ p, li { white-space: pre-wrap; } ChanNewItem + Subscribe to Channel Kanal abonnieren + + Expand Erweitern + Remove Item Eintrag entfernen + Channel Decscription Kanalbeschreibung + Unknown Channel Unbekannter Kanal + New Channel Neuer Kanal + Updated Channel Geänderter Kanal + Hide Verbergen @@ -751,54 +925,68 @@ p, li { white-space: pre-wrap; } ChannelDetails + + Channel Details Kanaldetails + Channel Info Kanalinfo + Channel Name Kanalname + Popularity Beliebtheit + Last Post Letzter Beitrag + Channel ID Kanal-ID + Channel Description Kanalbeschreibung + Type Typ + Restricted - Anyone can read, limited publishing (Private Publish Key) Beschränkt - Jeder kann lesen, aber nicht jeder schreiben (Privater Veröffentlichungsschlüssel) + Private - (Private Publish Key required to view Messages) Privat - (Privater Veröffentlichungsschlüssel erforderlich, um Nachrichten zu lesen) + Cancel Abbrechen + OK OK + Close Schließen @@ -806,105 +994,145 @@ p, li { white-space: pre-wrap; } ChannelFeed + Display Anzeigen + Create Channel Kanal erstellen + + Post to Channel Kanalbeitrag erstellen + + + Set all as read Alle als gelesen markieren + + + + Enable Auto-Download Auto-Download aktivieren + Own Channels Meine Kanäle + Subscribed Channels Abonnierte Kanäle + Popular Channels Beliebte Kanäle + Other Channels Andere Kanäle + Subscribe to Channel Kanal abonnieren + Unsubscribe to Channel Kanal abbestellen + Show Channel Details Kanaldetails anzeigen + Restore Publish Rights for Channel Veröffentlichungsrechte für den Kanal wiederherstellen + Edit Channel Details Kanaldetails bearbeiten + Share Channel Veröffentlichungsschlüssel verteilen + Copy RetroShare Link RetroShare-Link kopieren + No Channel Selected Keinen Kanal gewählt + + Disable Auto-Download Auto-Download deaktivieren + Loading Lade + Channels Kanäle + Publish rights restored. Veröffentlichungsrechte wiederhergestellt. + Publish rights have been restored for this channel. Veröffentlichungsrechte wurden für diesen Kanal wiederhergestellt. + Publish not restored. Veröffentlichungsrechte nicht wiederhergestellt. + Publish rights can't be restored for this channel.<br/>You're not the creator of this channel. Veröffentlichungsrechte für diesen Kanal können nicht wiederhergestellt werden.<br/>Du bist nicht der Ersteller dieses Kanals. + + ChannelUserNotify + + + Channel Post + Kanalbeitrag + + ChatDialog + Your friend has more than one locations. Please choose one of it to chat with. Dein Freund verwendet mehrere Orte. @@ -914,58 +1142,76 @@ Bitte wähle einen zum Chatten aus. ChatLobbyDialog + + Change nick name Spitzname ändern + Please enter your new nick name Bitte gib deinen neuen Spitznamen ein + + + Lobby management Lobbyverwaltung + %1 has left the lobby. %1 hat die Lobby verlassen. + %1 joined the lobby. %1 hat die Lobby betreten. + Unsubscribe to lobby Lobby abbestellen + Do you want to unsubscribe to this chat lobby? Möchtest du diese Lobby abbestellen? + Hide Participants Teilnehmer ausblenden + Show Participants Teilnehmer anzeigen + Welcome to lobby %1 Willkommen in der Lobby %1 + Topic: %1 Thema: %1 + Uncheck to mute participant Haken entfernen, um Teilnehmer stumm zu schalten + %1 changed his name to: %2 %1 ändert seinen Namen zu: %2 + + Lobby chat Lobbychat @@ -973,6 +1219,7 @@ Bitte wähle einen zum Chatten aus. ChatLobbyToaster + Show Chat Lobby Chatlobby anzeigen @@ -980,54 +1227,68 @@ Bitte wähle einen zum Chatten aus. ChatLobbyWidget + Create new chat lobby Neue Chatlobby erstellen + Name Name + Count Anzahl + Private Lobbies Private Lobbys + Public Lobbies Öffentliche Lobbys + Create chat lobby Chatlobby erstellen + Unsubscribe Abbestellen + Subscribe Abonnieren + Invitation to chat lobby Einladung zur Chatlobby + %1 invites you to chat lobby named %2 %1 lädt dich in die Lobby %2 ein + Topic Thema + + [No topic provided] [Kein Thema angegeben] + Chat lobbies Chatlobbys @@ -1035,34 +1296,43 @@ Bitte wähle einen zum Chatten aus. ChatMsgItem + Remove Item Eintrag entfernen + Write a quick Message Kurznachricht schreiben + Send Mail Nachricht senden + Write Message Nachricht schreiben + + Start Chat Chat starten + Send Senden + Cancel Abbrechen + Quick Message Kurznachricht @@ -1070,126 +1340,167 @@ Bitte wähle einen zum Chatten aus. ChatPage + General Allgemein + Chat Settings Chat-Einstellungen + Enable Emoticons Privat Chat Emoticons für privaten Chat + Enable Emoticons Group Chat Emoticons für Gruppenchat + Send message with Ctrl+Return Nachricht mit Strg+Enter senden + Default nickname for chat lobbies: Standard-Spitzname für Chatlobbys: + Chat Font Chat-Schriftart + Change Chat Font Chat-Schriftart wählen + Chat Font: Chat-Schriftart: + + History Verlauf + Group Chat Gruppenchat + + Enable Aktivieren + + Number of saved messages (0 = unlimited) Anzahl der gespeicherten Nachrichten (0 = unbegrenzt) + + Load number of messages (0 = off) Lade Anzahl von Nachrichten (0 = aus) + Private Chat Privater Chat + Style Stil + Group chat Gruppenchat + + + Variant Variante + + + Author: Autor: + + + Description: Beschreibung: + Private chat Privater Chat + Incoming Eingehend + Outgoing Ausgehend + Incoming message in history Eingehende Nachricht aus dem Verlauf + Outgoing message in history Ausgehende Nachricht aus dem Verlauf + Incoming message Eingehende Nachricht + Outgoing message Ausgehende Nachricht + Outgoing offline message Ausgehende Offline-Nachricht + Chat Chat + System System + System message Systemnachricht @@ -1197,26 +1508,32 @@ Bitte wähle einen zum Chatten aus. ChatStyle + Standard style for group chat Standardstil für den Gruppenchat + Compact style for group chat Kompakter Stil für den Gruppenchat + Standard style for private chat Standardstil für den privaten Chat + Compact style for private chat Kompakter Stil für den privaten Chat + Standard style for history Standardstil für den Verlauf + Compact style for history Kompakter Stil für den Verlauf @@ -1224,137 +1541,182 @@ Bitte wähle einen zum Chatten aus. ChatToaster + Show Chat Chat anzeigen + + ChatUserNotify + + + Private Chat + Privater Chat + + ChatWidget + Close Schließen + + Bold Fett + + Underline Unterstrichen + + Italic Kursiv + Font Schriftart + Text Color Textfarbe + Attach a Picture Bild anhängen + Add a File for your Friend Füge eine Datei für deinen Freund hinzu + Send Senden + Strike Durchgestrichen + Clear Chat History Nachrichtenverlauf leeren + Disable Emoticons Emoticons deaktivieren + + Save Chat History Nachrichtenverlauf speichern + Browse Message History Nachrichtenverlauf anzeigen + Browse History Nachrichtenverlauf + Delete Chat History Nachrichtenverlauf löschen + Deletes all stored and displayed chat history Löscht den gespeicherten und angezeigten Chat Verlauf + Paste RetroShare Link RetroShare-Link einfügen + is typing... tippt... + Do you really want to physically delete the history? Möchtest du wirklich den Nachrichtenverlauf löschen? + Add Extra File Zusätzliche Datei hinzufügen + Load Picture File Bilddatei laden + Save as... Speichern unter... + Text File (*.txt );;All Files (*) Text Datei (*.txt );;Alle Dateien (*) + apears to be Offline. scheint offline zu sein. + Messages you send will be delivered after Friend is again Online Versendete Nachrichten gehen bei diesem Freund erst wieder ein wenn er Online ist + is Idle and may not reply antwortet möglicherweise nicht, da der Status auf "Untätig" gesetzt wurde + is Away and may not reply antwortet möglicherweise nicht, da der Status auf "Abwesend" gesetzt wurde + is Busy and may not reply antwortet möglicherweise nicht, da der Status auf "Beschäftigt" gesetzt wurde + Choose font Schriftart wählen + Reset font to default Schriftart auf den Standard zurücksetzen + Paste own certificate link Eigenen Zertifikat-Link einfügen @@ -1362,111 +1724,140 @@ Bitte wähle einen zum Chatten aus. ConfCertDialog + + Friend Details Freunddetails + Details Details + Peer Info Nachbar-Info + Name Name + Peer ID Nachbar-ID + Last Contact Letzter Kontakt + Version Version + Loc Ort + RetroShare ID RetroShare-ID + Status Status + Peer Address Adresse des Nachbarn + Local Address Lokale Adresse + External Address Externe Adresse + Dynamic DNS Dynamisches DNS + + Port Port + Addresses list Adressliste + Trust Vertrauen + Your trust in this peer is: Dein Vertrauen zu diesem Nachbarn ist: + None Nicht + Marginal Geringfügig + Full Voll + GPG Key PGP-Schlüssel + Peer has signed my GPG key Nachbar hat meinen PGP-Schlüssel unterzeichnet + Show Help for Trust Settings and Signing Hilfe anzeigen + Peer key is signed by : Schlüssel des Nachbarn wurde unterzeichnet von: + + <!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:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Signing a friend's key is a way to express your trust into this friend, to your other friends. Besides, only signed peers will receive information about your other trusted friends.</p> +</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Signing a friend's key is a way to express your trust into this friend, to your other friends. Besides, only signed peers will receive information about your other trusted friends.</p> <p align="justify" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Signing a key cannot be undone, so do it wisely.</p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1478,100 +1869,129 @@ p, li { white-space: pre-wrap; } <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Das Unterzeichnen eines Schlüssels kann nicht rückgängig gemacht werden, deshalb nutze es weise.</p></body></html> + + Sign GPG key Unterzeichne PGP-Schlüssel + Deny Friend Blockiere Freund + Make Friend Als Freund wählen + Certificate Zertifikat + Apply and Close Übernehmen und Schließen + OK OK + Cancel Abbrechen + + + RetroShare RetroShare + + + Error : cannot get peer details. Fehler: Kann Nachbardetails nicht ermitteln. + Your key is signed by : Dein Schlüssel wurde unterzeichnet von: + Peer key is signed by : Schlüssel des Nachbarn wurde unterzeichnet von: + Your trust in this peer is ultimate, it's probably a key you own. Du hast das höchste Vertrauen in diesen Nachbarn. Es ist wahrscheinlich ein Schlüssel von dir. + Your trust in this peer is full. Du vertraust diesem Nachbarn voll. + Your trust in this peer is marginal. Du vertraust diesem Nachbarn geringfügig. + Your trust in this peer is none. Du vertraust diesem Nachbarn nicht. + Your trust in this peer is not set. Dein Vertrauen in diesen Nachbarn ist nicht festgelegt. + Peer has authenticated me as a friend and did sign my GPG key Nachbar hat mich als Freund authentifiziert und meinen PGP-Schlüssel unterzeichnet + Peer has not authenticated me as a friend and did not sign my GPG key Nachbar hat mich nicht als Freund authentifiziert und meinen PGP-Schlüssel nicht unterzeichnet + Signature Failure Fehler beim Signieren + Maybe password is wrong Vielleicht ist das Passwort falsch + Include signatures Signaturen einschließen + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) Der angegebene Schlüsselalgorithmus wird von RetroShare nicht unterstützt. (Im Moment werden nur RSA-Schlüssel unterstützt) + Other infos Andere Informationen + Use old key format Altes Schlüsselformat benutzen @@ -1579,373 +1999,478 @@ p, li { white-space: pre-wrap; } ConnectFriendWizard + + Certificate Load Failed Das Zertifikat konnte nicht geladen werden + Connect Friend Wizard Assistent um sich zu einem Freund zu verbinden + Add a new Friend Einen neuen Freund hinzufügen + This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: Dieser Assistent hilft dir, dich mit einem Freund im RetroShare-Netzwerk zu verbinden. Die folgenden Wege sind möglich: + &Enter the certificate manually Gib das Zertifikat &manuell ein + &You get a certificate file from your friend &Du hast eine Datei mit einem Zertifikat deines Freund bekommen + &Make friend with selected friends of my friends Ausgewählte Freunde von Freunden hinzu&fügen + &Enter RetroShare ID manually Gib die RetroShare &ID manuell ein + &Send a Invitation by Email (She/He receives a email with instructions howto to download RetroShare) &Sende eine Einladung per E-Mail (er/sie erhält eine E-Mail mit der Anleitung zum Herunterladen von RetroShare) + Text certificate Text-Zertifikat + Use text representation of the PGP certificates. Verwende diesen Text als PGP Zertifikat. + The text below is your PGP certificate. You have to provide it to your friend Der folgende Text ist dein PGP-Zertifikat. Du kannst es deinem Freund geben + + Include signatures Signaturen einschließen + Copy your Cert to Clipboard Dein Zertifikat in die Zwischenablage kopieren + Save your Cert into a File Zertifikat als Datei speichern + Run Email program Das Standard-E-Mailprogramm starten + Please, paste your friends PGP certificate into the box below Bitte füge das PGP-Zertifikat deines Freundes in das Feld unten ein + Certificate files Zertifikat-Dateien + Use PGP certificates saved in files. In Dateien gespeicherte PGP Zertifikate benutzen. + Import friend's certificate... Zertifikat eines Freundes importieren... + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. 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. + Export my certificate... Mein Zertifikat exportieren... + Drag and Drop your friends's certificate in this Window or specify path in the box below Gib die Datei mit dem Zertifikat ein oder ziehe sie per Drag'n'Drop in das Fenster + Browse Durchsuchen + Friends of friends Freunde von Freunden + Select now who you want to make friends with. Wähle nun aus, wen du als Freund hinzufügen möchtest. + Show me: Zeige mir: + Make friend with these peers Diese Nachbarn zu deinen Freunden hinzufügen + RetroShare ID RetroShare-ID + Use RetroShare ID for adding a Friend which is available in your network. Benutze die RetroShare-ID, um Freunde aus deinem Netzwerk hinzuzufügen. + Add Friends RetroShare ID... Füge die RetroShare-ID des Freundes ein... + Paste Friends RetroShare ID in the box below Füge die RetroShare-ID eines Freunde in das Feld ein + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF Füge die RetroShare-ID eines Freundes ein, Beispiel Nachbar@BDE8D16A46D938CF + Invite Friends by Email Freunde per E-Mail einladen + Enter your friends' email addresses (seperate each on with a semicolon) Gib die E-Mail-Adressen deines Freundes an (mehrere Adressen müssen mit Semikolon getrennt werden) + Your friends' email addresses: E-Mail-Adresse deines Freundes: + Enter Friends Email addresses Gib die E-Mail-Adresse deines Freundes ein + Subject: Betreff: + Sorry, some error appeared Entschuldigung, es trat ein Fehler auf + Here is the error message: Dies ist die Fehlermeldung: + Make Friend Als Freund wählen + Details about your friend: Details über deinen Freund: + + Peer details Nachbardetails + Key validity: Schlüssel-Gültigkeit: + + Name: Name: + + Email: E-Mail: + + Location: Ort: + Signers Unterzeichner + It seems your friend is already registered. Adding it might just set it's ip address. Dein Freund ist bereits registriert. Das nochmalige Hinzufügen ändert nur seine IP. + + Options Optionen + + Add friend to group: Freund zur Gruppe hinzufügen: + + Authenticate friend (Sign GPG Key) Freund authentifizieren (PGP-Schlüssel unterzeichnen) + + Add as friend to connect with Als Freund hinzufügen, zu dem verbunden wird + Any peer I've not signed Jeden Nachbarn, den ich nicht unterzeichnet habe + Friends of my friends who already trust me Freunde meiner Freunde, welche mir schon vertrauen + Signed peers showing as denied Unterzeichnete Nachbarn, die geblockt sind + Peer name Nachbar Name + Also signed by Auch unterzeichnet von + Peer id Nachbar-ID + RetroShare Invitation RetroShare-Einladung + Ultimate Ultimativ + Full Voll + Marginal Geringfügig + None Kein + No Trust Kein Vertrauen + Certificate Load Failed:can't read from file %1 Fehler beim Laden des Zertifikats: Datei %1 konnte nicht gelesen werden + Certificate Load Failed:something is wrong with %1 Fehler beim Laden des Zertifikats: Etwas stimmt nicht mit %1 + Certificate Load Failed:file %1 not found Fehler beim Laden des Zertifikats: Datei %1 nicht gefunden + This Peer %1 is not available in your Network Der Nutzer %1 ist nicht in deinem Netzwerk verfügbar + Remove signatures Signaturen entfernen + RetroShare Invite RetroShare-Einladung + No or misspelled BEGIN tag found Keinen oder fehlerhaften BEGIN Tag gefunden + No or misspelled END tag found Keinen oder fehlerhaften END Tag gefunden + 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:) 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) + Unknown error. Your cert is probably not even a certificate. Unbekannter Fehler. Dein Zertifikat ist vermutlich kein Zertifikat. + Connect Friend Help Verbindungshilfe + You can copy this text and send it to your friend via email or some other way Du kannst diesen Text kopieren und an deinen Freund per E-Mail senden oder über einen anderen Weg zukommen lassen + Your Cert is copied to Clipboard, paste and send it to your riend via email or some other way Dein Zertifikat ist in die Zwischenablage kopiert worden. Du kannst es per E-Mail oder auf andere Weise an deinen Freund senden. + Save as... Speichern unter... + + + RetroShare Certificate (*.rsc );;All Files (*) RetroShare-Zertifikat (*.rsc );;Alle Dateien (*) + Select Certificate Zertifikat auswählen + Sorry, create certificate failed Zertifikat-Datei konnte nicht erstellt werden + Please choose a filename Bitte wähle einen Dateinamen + Certificate file successfully created Zertifikat-Datei erfolgreich erstellt + + Sorry, certificate file creation failed Zertifikat-Datei konnte nicht erstellt werden + *** None *** *** Keine *** + Friend request Freundschaftsanfrage + Details about the request Details der Anfrage + Cannot get peer details of gpg key %1 Kann Nachbardetails von PGP-Schlüssel %1 nicht abrufen + You have a friend request from Du hast eine Freundschaftsanfrage von + Use new certificate format (safer, more robust) Neues Zertifikatsformat benutzen (sicherer und robuster) + Use old (backward compatible) certificate format Altes (rückwärtskompatibles) Zertifikatsformat benutzen @@ -1953,14 +2478,16 @@ Die folgenden Wege sind möglich: CreateBlog + Create new Blog Neues Blog erstellen + <!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;"> +</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:24pt; font-weight:600; color:#ffffff;">New Blog</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1969,70 +2496,87 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:24pt; font-weight:600; color:#ffffff;">Neues Blog</span></p></body></html> + Name Name + Description Beschreibung + Type: Typ: + Public - Anyone can read and publish (Shared Publish Key) Öffentlich - Jeder kann lesen und schreiben (gemeinsamer Veröffentlichungsschlüssel) + Restricted - Anyone can read, limited publishing (Private Publish Key) Beschränkt - Jeder kann lesen, aber nicht jeder schreiben (Privater Veröffentlichungsschlüssel) + Private - (Private Publish Key required to view Messages) Privat - (Privater Veröffentlichungsschlüssel erforderlich, um Nachrichten zu lesen) + Allowed Messages Erlaubte Nachrichten + Authenticated Messages Authentifizierte Nachrichten + Anonymous Messages Anonyme Nachrichten + Blog Logo Bloglogo + Add Blog Logo Bloglogo hinzufügen + Cancel Abbrechen + Create Erstellen + RetroShare RetroShare + Please add a Name Bitte Name hinzufügen + Load File Datei laden + Pictures (*.png *.xpm *.jpg) Bilder (*.png *.xpm *.jpg) @@ -2040,252 +2584,317 @@ p, li { white-space: pre-wrap; } CreateBlogMsg + New Blog Post Neuer Blogbeitrag + Blog Post Blogbeitrag + Blog Post to: Blogbeitrag an: + Visual Editor Visueller Editor + Blog Message Blogeintrag + Subject : Betreff: + Html Editor HTML-Editor + toolBar toolBar + toolBar_2 toolBar_2 + blockquoute blockquote + Increase font Size Schrift vergrößern + Decrease font size Schrift verkleinern + Bold Fett + Underline Unterstrichen + Italic Kursiv + Publish Veröffentlichen + New Neu + Code Code + splitPost Beitrag teilen + Ordered List Geordnete Liste + Unordered List Ungeordnete Liste + Clipboard Zwischenablage + Undo Rückgängig + RetroShare RetroShare + Please add a Subject Bitte den Betreff nicht vergessen + &File &Datei + &New &Neu + &Open... Ö&ffnen... + &Save S&peichern + Save &As... Speichern &als... + &Print... &Drucken... + Print Preview... Druckvorschau... + &Export PDF... PDF &exportieren... + &Quit &Schließen + &Edit &Bearbeiten + &Undo Rü&ckgängig + &Redo &Wiederholen + Cu&t Auss&chneiden + &Copy Ko&pieren + &Paste Einfü&gen + &View Anse&hen + &Insert Ein&fügen + &Image &Bild + F&ormat F&ormat + &Bold &Fett + &Italic &Kursiv + &Underline &Unterstrichen + + &Left &Links + + C&enter &Zentriert + + &Right &Rechts + &Justify &Blocksatz + &Text Color... &Textfarbe... + Application Anwendung + The document has been modified. Do you want to save your changes? Das Dokument wurde verändert. Möchtest du die Änderungen speichern? + Open File... Datei öffnen... + HTML-Files (*.htm *.html);;All Files (*) HTML-Dateien (*.htm *.html);;Alle Dateien (*) + Save as... Speichern unter... + ODF files (*.odt);;HTML-Files (*.htm *.html);;All Files (*) ODF-Dateien (*.odt);;HTML-Dateien (*.htm *.html);;Alle Dateien (*) + Print Document Dokument drucken + Export PDF PDF exportieren + Choose Image Bild wählen + Image Files supported (*.png *.jpeg *.jpg *.gif) Unterstützte Bilddateien (*.png *.jpeg *.jpg *.gif) @@ -2293,90 +2902,112 @@ Möchtest du die Änderungen speichern? CreateChannel + Create a new Channel Einen neuen Kanal erstellen + Name Name + check peers you would like to share private publish key with Wähle die Nachbarn, an die du den privaten Veröffentlichungsschlüssel verteilen möchtest + Share Key With Schlüssel verteilen an + Description Beschreibung + Type: Typ: + Restricted - Anyone can read, limited publishing (Private Publish Key) Beschränkt - Jeder kann lesen, aber nicht jeder schreiben (Privater Veröffentlichungsschlüssel) + Private - (Private Publish Key required to view Messages) Privat - (Privater Veröffentlichungsschlüssel erforderlich, um Nachrichten zu lesen) + Allowed Messages Erlaubte Nachrichten + Anonymous Messages Anonyme Nachrichten + Authenticated Messages Authentifizierte Nachrichten + Key Sharing Schlüsselverteilung + Key recipients can publish to restricted-type channels, and can view and publish for private-type channels Schlüsselempfänger können eingeschränkte Kanäle anschauen und neue Nachrichten veröffentlichen + Share Private Publish Key Privaten Veröffentlichungsschlüssel verteilen + Channel Logo Kanallogo + Add Channel Logo Kanallogo hinzufügen + Cancel Abbrechen + Create Erstellen + Contacts: Kontakte: + Please add a Name Bitte einen Name hinzufügen + Load channel logo Kanallogo laden + New Channel Neuer Kanal @@ -2384,22 +3015,27 @@ Möchtest du die Änderungen speichern? CreateChannelMsg + + New Channel Post Neuer Kanalbeitrag + Channel Post Kanalbeitrag + Channel Post to: Kanal: + <!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;"> +</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;"><img src=":/images/feedback_arrow.png" /><span style=" font-size:8pt;"> You can set your Thumbnail Image for your Channel Post.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><img src=":/images/feedback_arrow.png" /><span style=" font-size:8pt;"> You can use Drap and Drop to Attach Files.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><img src=":/images/feedback_arrow.png" /><span style=" font-size:8pt;"> Set your Subject and Description for your Channel Post.</span></p> @@ -2414,82 +3050,105 @@ 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;"><img src=":/images/feedback_arrow.png" /><span style=" font-size:8pt;"> Du kannst die angehängten Dateien im Reiter "Anhang" anschauen.</span></p></body></html> + Add File to Attach Datei hinzufügen + Add Channel Thumbnail Miniaturbild hinzufügen + Message Beitrag + Subject : Betreff: + + Attachments Anhänge + Allow channels to get frame for message thumbnail from movie media attachments or not Erlaubt dem Kanal das Erstellen eines Miniaturbildes aus den Videoanhängen + Auto Thumbnail Auto-Miniaturbild + Drag and Drop Files from Search Results Drag'n'Drop Dateien aus den Suchergebnissen + Paste RetroShare Links RetroShare-Links einfügen + Paste RetroShare Link RetroShare-Link einfügen + Channel security policy prevents you from posting files that you don't have. If you have these files, you need to share them before, or attach them explicitly: Die Sicherheitsrichtlinie des Kanals verhindert das Veröffentlichen von Dateien, die du nicht besitzt. Wenn du diese Dateien besitzt, müssen sie vorher freigegeben oder eigens hinzugefügt werden: + You can only post files that you do have Du kannst nur Dateien anfügen, die du besitzt + + Drop file error. Dateifehler bei Drag'n'Drop. + Directory can't be dropped, only files are accepted. Ordner können nicht für Drag'n'Drop genutzt werden. Nur Dateien werden akzeptiert. + File not found or file name not accepted. Datei nicht gefunden oder Dateiname nicht akzeptiert. + Add Extra File Zusätzlich eine Datei hinzufügen + + RetroShare RetroShare + File already Added and Hashed Datei wurde schon hinzugefügt und gehasht + Please add a Subject Bitte Betreff nicht vergessen + Load thumbnail picture Miniaturbild laden @@ -2497,82 +3156,102 @@ p, li { white-space: pre-wrap; } CreateForum + Create new Forum Neues Forum erstellen + Name Name + check peers you would like to share private publish key with Wähle die Nachbarn, an die du den privaten Veröffentlichungsschlüssel verteilen möchtest + Share Key With Schlüssel verteilen an + Description Beschreibung + Type: Typ: + Public - Anyone can read and publish (Shared Publish Key) Öffentlich - Jeder kann lesen und schreiben (gemeinsamer Veröffentlichungsschlüssel) + Restricted - Anyone can read, limited publishing (Private Publish Key) Beschränkt - Jeder kann lesen, aber nicht jeder schreiben (Privater Veröffentlichungsschlüssel) + Private - (Private Publish Key required to view Messages) Privat - (Privater Veröffentlichungsschlüssel erforderlich, um Nachrichten zu lesen) + Key Sharing Schlüsselverteilung + Key recipients can publish to restricted-type channels, and can view and publish for private-type channels Schlüsselempfänger können eingeschränkte Kanäle anschauen und neue Beiträge veröffentlichen + Share Private Publish Key Privaten Veröffentlichungsschlüssel verteilen + Allowed Messages Erlaubte Nachrichten + Authenticated Messages Authentifizierte Nachrichten + Anonymous Messages Anonyme Nachrichten + Cancel Abbrechen + Create Erstellen + Contacts: Kontakte: + Please add a Name Bitte Name hinzüfügen + New Forum Neues Forum @@ -2580,70 +3259,88 @@ p, li { white-space: pre-wrap; } CreateForumMsg + Post Forum Message Beitrag erstellen + Forum Forum + Subject Betreff + Attach File Datei anhängen + Sign Message Beitrag unterschreiben + + Paste RetroShare Link RetroShare-Link einfügen + Forum Post Beitrag + Attach files via drag and drop Dateien mit Drag'n'Drop anhängen + You can attach files via drag and drop here in this window Du kannst Dateien mit Drag'n'Drop anhängen + Post Forum Msg Beitrag erstellen + Close Schließen + Paste full RetroShare Link Vollständigen RetroShare-Link einfügen + In Reply to Als Antwort auf + RetroShare RetroShare + Please set a Forum Subject and Forum Message Bitte einen Betreff und einen Beitrag eingeben + Add Extra File Zusätzliche Datei hinzufügen + Paste own certificate link Eigenen Zertifikat-Link einfügen @@ -2651,82 +3348,102 @@ p, li { white-space: pre-wrap; } CreateForumV2 + Create new Forum Neues Forum erstellen + Name Name + check peers you would like to share private publish key with Wähle die Nachbarn, an die du den privaten Veröffentlichungsschlüssel verteilen möchtest + Share Key With Schlüssel verteilen an + Description Beschreibung + Type: Typ: + Public - Anyone can read and publish (Shared Publish Key) Öffentlich - Jeder kann lesen und schreiben (gemeinsamer Veröffentlichungsschlüssel) + Restricted - Anyone can read, limited publishing (Private Publish Key) Beschränkt - Jeder kann lesen, aber nicht jeder schreiben (Privater Veröffentlichungsschlüssel) + Private - (Private Publish Key required to view Messages) Privat - (Privater Veröffentlichungsschlüssel erforderlich, um Nachrichten zu lesen) + Key Sharing Schlüsselverteilung + Key recipients can publish to restricted-type channels, and can view and publish for private-type channels Schlüsselempfänger können eingeschränkte Kanäle anschauen und neue Beiträge veröffentlichen + Share Private Publish Key Privaten Veröffentlichungsschlüssel verteilen + Allowed Messages Erlaubte Nachrichten + Authenticated Messages Authentifizierte Nachrichten + Anonymous Messages Anonyme Nachrichten + Cancel Abbrechen + Create Erstellen + Contacts: Kontakte: + Please add a Name Bitte Name hinzufügen + New Forum Neues Forum @@ -2734,70 +3451,88 @@ p, li { white-space: pre-wrap; } CreateForumV2Msg + Post Forum Message Beitrag erstellen + Forum Forum + Subject Betreff + Attach File Datei anhängen + Sign Message Beitrag unterschreiben + + Paste RetroShare Link RetroShare-Link einfügen + Forum Post Beitrag + Attach files via drag and drop Dateien mit Drag'n'Drop anhängen + You can attach files via drag and drop here in this window Du kannst Dateien mit Drag'n'Drop anhängen + Post Forum Msg Beitrag erstellen + Close Schließen + Paste full RetroShare Link Vollen RetroShare-Link einfügen + Paste own certificate link Eigenen Zertifikat-Link einfügen + In Reply to Als Antwort auf + RetroShare RetroShare + Please set a Forum Subject and Forum Message Bitte einen Betreff und eine Beitrag eingeben + Add Extra File Zusätzliche Datei hinzufügen @@ -2805,18 +3540,24 @@ p, li { white-space: pre-wrap; } CreateGroup + + Create a Group Gruppe erstellen + Group Name Name + Enter a name for your group Gib einen Namen für deine Gruppe ein + + Edit Group Gruppe ändern @@ -2824,62 +3565,78 @@ p, li { white-space: pre-wrap; } CreateLobbyDialog + + Create Chat Lobby Chatlobby erstellen + Lobby name: Lobbyname: + Your nick name: Dein Spitzname: + Security policy: Sicherheitsrichtlinie: + Public (Visible by friends) Öffentlich (für Freunde sichtbar) + Private (Works on invitation only) Privat (nur private Einladung) + Select the Friends with which you want to group chat. Wähle die Freunde mit denen du chatten möchtest. + Invited friends Freunde einladen + Create Erstellen + Cancel Abbrechen + Put a sensible lobby name here Gib einen Lobbynamen ein + Your nickname for this lobby (Change default name in options->chat) Dein Spitzname für diese Lobby (Ändere den Defaultnamen in den Optionen->Chat) + Contacts: Kontakte: + Lobby topic: Thema: + A chat lobby is a decentralized and anonymous chat group. All participants receive all messages. Once the lobby is created you can invite other friends from the Friends tab. Eine Chatlobby ist eine dezentralisierte und anonyme Chatgruppe. Alle Teilnehmer sehen alle Nachrichten. Wenn die Lobby erstellt wurde, kannst du Freunde über den "Freunde"-Reiter einladen. @@ -2887,66 +3644,82 @@ p, li { white-space: pre-wrap; } CryptoPage + Public Key Öffentlicher Schlüssel + Copy Key Schlüssel kopieren + Save Key Schlüssel speichern + Include signatures Signaturen einschließen + Copy RetroShare link to clipboard RetroShare-Link in die Zwischenablage kopieren + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way Der RetroShare-Link mit deinem öffentlichen Schlüssel wurde in die Zwischenablage kopiert. Sende ihn per Mail oder auf anderem Wege an deinen Freund + Error Fehler + Your certificate could not be parsed correctly. Please contact the developpers. Dein Zertifikat konnte nicht richtig eingelesen werden. Bitte kontaktiere die Entwickler. + RetroShare RetroShare + Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way Dein öffentlicher Schlüssel ist in die Zwischenablage kopiert worden. Sende ihn per Mail oder auf anderem Wege zu deinem Freund + Save as... Speichern unter... + RetroShare Certificate (*.rsc );;All Files (*) RetroShare-Zertifikat (*.rsc );;Alle Dateien (*) + Security Sicherheit + Copy my Key to Clipboard Schlüssel in Zwischenablage kopieren + Save Key into a file Schlüssel in Datei sichern + Use old key format Altes Schlüsselformat benutzen @@ -2954,26 +3727,33 @@ p, li { white-space: pre-wrap; } DHTStatus + DHT DHT + DHT Off DHT aus + DHT Searching for RetroShare Peers DHT sucht nach RetroShare-Nachbarn + + RetroShare users in DHT (Total DHT users) RetroShare-Nutzer in DHT (DHT-Nutzer gesamt) + DHT Good DHT-Zustand ist gut + DHT Error DHT-Fehler @@ -2981,18 +3761,22 @@ p, li { white-space: pre-wrap; } DLListDelegate + B B + KB KiB + MB MiB + GB GiB @@ -3000,110 +3784,141 @@ p, li { white-space: pre-wrap; } DetailsDialog + Details Details + + General Allgemein + File Name: Dateiname: + Hash: Prüfsumme: + Size: Größe: + Status: Status: + Priority: Priorität: + Type: Typ: + Transfer Transfer + Sources: Quellen: + Datarate: Übertragungsrate: + Completed: Vervollständigt: + Chunk size: Blockgröße: + + Number of Chunks Anzahl der Blöcke + Chunks: Blöcke: + Remaining: Verbleibend: + Date Datum + Download time: Restzeit: + + Comments Kommentare + + retroshare link(s) RetroShare-Link(s) + Copy Kopieren + OK OK + Cancel Abbrechen + Rating Bewertung + File Name Dateiname + Not Rated Nicht bewertet + No Comments Keine Kommentare @@ -3111,134 +3926,169 @@ p, li { white-space: pre-wrap; } DhtWindow + + DHT Details DHT-Details + Peer Details Nachbardetails + Net Status Netzstatus + Connect Options Verbindungsoptionen + Network Mode Netzwerkmodus + Nat Type NAT-Typ + Nat Hole NAT-Hole + Peer Address Adresse des Nachbarn + Extra Label Zusätzliche Beschriftung + TextLabel TextLabel + Name Name + PeerId Nachbar-ID + DHT Status DHT-Status + ConnectLogic ConnectLogic + Connect Status Verbindungsstatus + Connect Mode Verbindungsmodus + Request Status Anfragestatus + Cb Status Cb-Status + RsId RsId + Bucket Paket + IP:Port IP:Port + Key Schlüssel + Status Flags Status Flags + Found Gefunden + + Last Sent Zuletzt gesendet + Last Recv Zuletzt empfangen + Relay Mode Relay-Modus + Source Quelle + Proxy Proxy + Destination Ziel + Class Klasse + Age Alter + Bandwidth Bandbreite @@ -3246,78 +4096,99 @@ p, li { white-space: pre-wrap; } DirectoriesPage + Incoming Directory Eingehende Dateien + + Browse Durchsuchen + Partials Directory Unvollständige Dateien + Shared Directories Freigegebene Ordner + Automatically share incoming directory (Recommended) Eingehende Dateien automatisch freigeben (Empfohlen) + Edit Share Freigaben bearbeiten + Remember file hashes even if not shared. -This might be useful if you're sharing an +This might be useful if you're sharing an external HD, to avoid re-hashing files when you plug it in. Prüfsummen von Dateien merken, auch wenn sie nicht mehr freigegeben sind. Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nicht neu eingelesen werden sollen, wenn du sie anschließt. + Remember hashed files for Prüfsummen merken für + days Tage + Forget any hashed file that is not anymore shared. Prüfsummen von nicht mehr freigegebenen Dateien vergessen. + Clean Hash Cache Prüfsummen-Cache bereinigen + Auto-check shared directories every Automatische Überprüfung der Freigaben alle + minute(s) Minute(n) + Set Incoming Directory Ordner für eingehende Dateien + Set Partials Directory Ordner für unvollständige Dateien + Directories Ordner + + Cache cleaning confirmation Bestätigung der Cache-Bereinigung + + This will forget any former hash of non shared files. Do you confirm ? Du verlierst die Prüfsummen deiner freigegebenen Dateien. Möchtest du fortfahren? @@ -3325,10 +4196,12 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic DiscStatus + Waiting outgoing discovery operations Wartende ausgehende Discovery-Operationen + Waiting incoming discovery operations Wartende eingehende Discovery-Operationen @@ -3336,6 +4209,7 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic DownloadToaster + Start file Datei ausführen @@ -3343,38 +4217,47 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic EditChanDetails + Channel Details Kanaldetails + Cancel Abbrechen + OK OK + Edit Channel Details Kanaldetails bearbeiten + Channel Info Kanalinfo + Channel Name Kanalname + Channel Description Kanalbeschreibung + Add Channel Logo Kanallogo hinzufügen + Load channel logo Kanallogo laden @@ -3382,30 +4265,37 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic EditForumDetails + Forum Details Forendetails + Cancel Abbrechen + OK OK + Edit Forum Details Forendetails bearbeiten + Forum Info Foreninfo + Forum Name Forenname + Forum Description Forenbeschreibung @@ -3413,30 +4303,37 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic EditForumV2Details + Forum Details Forendetails + Cancel Abbrechen + OK OK + Edit Forum Details Forendetails bearbeiten + Forum Info Foreninfo + Forum Name Forenname + Forum Description Forenbeschreibung @@ -3444,9 +4341,10 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic ExampleDialog + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> +</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Friends</span></p></body></html> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3454,58 +4352,72 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Freunde</span></p></body></html> + # # + Status Status + Person Person + Auto Connect Automatisch verbinden + Trust Level Höhe des Vertrauens + Peer Address Adresse des Nachbarn + Last Contact Letzter Kontakt + Organisation Organisation + Location Ort + Country Land + Person Id Persönliche ID + Auth Code Authentifizierungscode + Vote Up Daumen hoch + Vote Down Daumen herunter @@ -3513,26 +4425,38 @@ p, li { white-space: pre-wrap; } ExprParamElement + + + to bis + ignore case groß/klein ignorieren + + dd.MM.yyyy TT.MM.JJJJ + + KB KiB + + MB MiB + + GB GiB @@ -3540,10 +4464,12 @@ p, li { white-space: pre-wrap; } ExpressionWidget + Expression Widget Ausdruck Oberfläche + Delete this expression Den Ausdruck löschen @@ -3551,42 +4477,52 @@ p, li { white-space: pre-wrap; } FileAssociationsPage + &New &Neu + Add new Association Neue Verknüpfung hinzufügen + &Edit &Bearbeiten + Edit this Association Diese Verknüpfung bearbeiten + &Remove &Entfernen + Remove this Association Diese Verknüpfung entfernen + File type Dateityp + Friend Help Freunde-Hilfe + You this Du dies + Associations Verknüpfungen @@ -3594,70 +4530,90 @@ p, li { white-space: pre-wrap; } FileTransferInfoWidget + Chunk map Block map + Active chunks Aktive Blöcke + Availability map (%1 active source) Verfügbarkeitskarte (%1 aktive Quelle) + Availability map (%1 active sources) Verfügbarkeitskarte (%1 aktive Quellen) + File info Datei-Info + File hash Prüfsumme + File size Dateigröße + + + + bytes Bytes + Chunk size Blockgröße + Number of chunks Anzahl der Blöcke + Transfered Übertragen + Remaining Verbleibend + Number of sources Anzahl der Quellen + Chunk strategy Blockstrategie + Transfer type Transfertyp + Anonymous F2F Anonym F2F + Direct friend transfer / Availability assumed Direkte Freund-zu-Freund-Übertragung / Verfügbarkeit angenommen @@ -3665,42 +4621,53 @@ p, li { white-space: pre-wrap; } FilesDefs + Picture Bild + Video Video + Audio Audio + Archive Archiv + Program Programm + CD/DVD-Image CD/DVD-Abbild + + Document Dokument + RetroShare collection file Kollektions-Datei + Subtitles Untertitel + Nintendo DS Rom Nintendo DS ROM @@ -3708,30 +4675,37 @@ p, li { white-space: pre-wrap; } FlatStyle_RDM + Friends Directories Dateien von Freunden + My Directories Meine Ordner + Size Größe + Age Alter + Friend Freund + Share Type Freigabetyp + Directory Ordner @@ -3739,58 +4713,73 @@ p, li { white-space: pre-wrap; } ForumDetails + + Forum Details Forendetails + Forum Info Foreninfo + Forum Name Forenname + Popularity Beliebtheit + Last Post Letzter Beitrag + Forum ID Foren-ID + Forum Description Forenbeschreibung + Security Sicherheit + Allowed Messages Erlaubte Nachrichten + Authenticated Messages Authentifizierte Nachrichten + Anonymous Messages Anonyme Nachrichten + Cancel Abbrechen + OK OK + Apply and Close Annehmen und Schließen @@ -3798,58 +4787,77 @@ p, li { white-space: pre-wrap; } ForumMsgItem + + + Subject: Betreff: + Unsubscribe To Forum Forum abbestellen + Reply Antwort + + Expand Erweitern + Remove Item Eintrag entfernen + Send Senden + Signed Unterzeichnen + Forum Post Beitrag + Unknown Forum Post Unbekannter Beitrag + + + Anonymous Anonym + In Reply to Als Antwort auf + Please give a Text Message Bitte Nachricht eingeben + Set as read and remove item Als gelesen markieren und Eintrag entfernen + Hide Verbergen @@ -3857,34 +4865,44 @@ p, li { white-space: pre-wrap; } ForumNewItem + Subscribe to Forum Forum abonnieren + + Expand Erweitern + Remove Item Eintrag entfernen + Forum Description Forenbeschreibung + Unknown Forum Unbekanntes Forum + + New Forum Neues Forum + Updated Forum Geändertes Forum + Hide Verbergen @@ -3892,77 +4910,104 @@ p, li { white-space: pre-wrap; } ForumPage + Misc Verschiedenes + Set message to read on activate Beitrag beim Aktivieren als gelesen markieren + Expand new messages Neue Beiträge erweitern + Forum Forum + + ForumUserNotify + + + Forum Post + Beitrag + + ForumV2Details + + Forum Details Forendetails + Forum Info Foreninfo + Forum Name Forenname + Popularity Beliebtheit + Last Post Letzter Beitrag + Forum ID Foren-ID + Forum Description Forenbeschreibung + Security Sicherheit + Allowed Messages Erlaubte Nachrichten + Authenticated Messages Authentifizierte Nachrichten + Anonymous Messages Anonyme Nachrichten + Cancel Abbrechen + OK OK + Apply and Close Annehmen und Schließen @@ -3970,234 +5015,301 @@ p, li { white-space: pre-wrap; } ForumsDialog + Display Anzeigen + Create Forum Forum erstellen + Forum: Forum: + Last Post Letzter Beitrag + Threaded View Hierarchische Ansicht + Flat View Ebene Ansicht + + Title Titel + + Date Datum + + Author Autor + Signed Unterzeichnet + Thread: Thema: + Previous Thread Vorheriger Beitrag + Next Thread Nächster Beitrag + Download all files Alle Dateien herunterladen + Next unread Nächste ungelesene + Content Inhalt + Reply Message Auf Beitrag antworten + Start new Thread for Selected Forum Ein neues Thema im ausgewählten Forum starten + Loading Lade + Print Drucken + PrintPreview Druckvorschau + Your Forums Deine Foren + Subscribed Forums Abonnierte Foren + Popular Forums Beliebte Foren + Other Forums Andere Foren + Subscribe to Forum Forum abonnieren + Unsubscribe to Forum Forum abbestellen + New Forum Neues Forum + Show Forum Details Forendetails anzeigen + Edit Forum Details Forendetails bearbeiten + Share Forum Privaten Veröffentlichungsschlüssel verteilen + Restore Publish Rights for Forum Veröffentlichungsrechte für das Forum wiederherstellen + + Copy RetroShare Link RetroShare-Link kopieren + Mark all as read Alle als gelesen markieren + Mark all as unread Alle als ungelesen markieren + Reply Antwort + + Start New Thread Neues Thema erstellen + Reply to Author Dem Autor antworten + Expand all Alle erweitern + Collapse all Alle reduzieren + + Mark as read Als gelesen markieren + + with children inklusive aller Antworten + + Mark as unread Als ungelesen markieren + Hide Verbergen + Expand Erweitern + AUTHD AUTHD + + RetroShare RetroShare + No Forum Selected! Kein Forum ausgewählt! + You cant reply a Anonymous Author Du kannst einem anonymen Autor nicht antworten + [ ... Missing Message ... ] [ ... Fehlender Beitrag ... ] + Placeholder for missing Message Platzhalter für fehlenden Beitrag + Search forums Forum durchsuchen + Original Message Ursprüngliche Nachricht + From Von + Sent Gesendet + Subject Betreff + On %1, %2 wrote: Am %1, schrieb %2: + Forums Foren @@ -4205,14 +5317,20 @@ p, li { white-space: pre-wrap; } ForumsFillThread + + Anonymous Anonym + + signed unterzeichnet + + none keine @@ -4220,250 +5338,322 @@ p, li { white-space: pre-wrap; } ForumsV2Dialog + Display Anzeigen + Create Forum Forum erstellen + Forum: Forum: + Last Post Letzter Beitrag + Threaded View Hierarchische Ansicht + Flat View Ebene Ansicht + + Title Titel + + Date Datum + + Author Autor + Signed Unterzeichnet + Thread: Thema: + Previous Thread Vorheriges Thema + Next Thread Nächstes Thema + Download all files Alle Dateien herunterladen + Next unread Nächste ungelesene + Search forums Forum durchsuchen + Content Inhalt + Reply Message Auf Beitrag antworten + Start new Thread for Selected Forum Ein neues Thema im ausgewählten Forum starten + Loading Lade + Print Drucken + PrintPreview Druckvorschau + Your Forums Deine Foren + Subscribed Forums Abonnierte Foren + Popular Forums Beliebte Foren + Other Forums Andere Foren + Subscribe to Forum Forum abonnieren + Unsubscribe to Forum Forum abbestellen + New Forum Neues Forum + Show Forum Details Forendetails anzeigen + Edit Forum Details Forendetails bearbeiten + Share Forum Veröffentlichungsschlüssel verteilen + Restore Publish Rights for Forum Veröffentlichungsrechte für das Forum wiederherstellen + + Copy RetroShare Link RetroShare-Link kopieren + Mark all as read Alle als gelesen markieren + Mark all as unread Alle als ungelesen markieren + Reply Antwort + + Start New Thread Neues Thema erstellen + Reply to Author Dem Autor antworten + Expand all Alle erweitern + Collapse all Alle reduzieren + + Mark as read Als gelesen markieren + + with children inklusive aller Antworten + + Mark as unread Als ungelesen markieren + Hide Verbergen + Expand Erweitern + AUTHD AUTHD + [ ... Missing Message ... ] [ ... Fehlender Beitrag ... ] + Placeholder for missing Message Platzhalter für fehlenden Beitrag + + + RetroShare RetroShare + No Forum Selected! Kein Forum ausgewählt! + Original Message Ursprüngliche Nachricht + From Von + Sent Gesendet + Subject Betreff + On %1, %2 wrote: Am %1, schrieb %2: + You cant reply to a non-existant Message Du kannst nicht auf eine nicht existierende Nachricht antworten + You cant reply to an Anonymous Author Du kannst keinem anonymen Autoren antworten + Anonymous Anonym + signed unterzeichnet + none keine + Forums Foren @@ -4471,218 +5661,282 @@ p, li { white-space: pre-wrap; } FriendList + Friends Freunde + + Status Status + + + Last Contact Letzter Kontakt + + Avatar Avatar + Hide Offline Friends Offline Freunde verstecken + State Status + Sort by State Sortiere nach Status + Hide State Status ausblenden + + Sort Descending Order Absteigend sortieren + + Sort Ascending Order Aufsteigend sortieren + Show Avatar Column Avatar-Spalte anzeigen + Name Name + Sort by Name Sortiere nach Name + Sort by last contact Sortiere nach letztem Kontakt + Show Last Contact Column Letzten Kontakt anzeigen + Set root is Decorated Zeige Baumstruktur + Set Root Decorated Zeige Baumstruktur + + Show Groups Gruppen anzeigen + Group Gruppe + Friend Freund + Location Ort + Message Group Gruppe anschreiben + Add Friend Freund hinzufügen + Edit Group Gruppe ändern + Remove Group Gruppe entfernen + + Chat lobbies Chatlobbys + Chat Chat + Message Friend Freund anschreiben + Friend Details Freunddetails + Recommend this Friend to... Freund weiterempfehlen... + Connect To Friend Zum Freund verbinden + Copy certificate link Zertifikat-Link kopieren + Copy RetroShare Link RetroShare-Link kopieren + + Paste Friend Link RetroShare-Link einfügen + Deny Friend Freund blockieren + Remove Friend Location Freund entfernen + Add to group Zu Gruppe hinzufügen + Move to group In Gruppe verschieben + Groups Gruppen + Remove from group Aus Gruppe entfernen + Remove from all groups Aus allen Gruppen entfernen + Create new Erstellen + Invite this group Diese Gruppe einladen + Invite this friend Diesen Freund einladen + Show Anzeigen + Unsubscribe Abbestellen + Expand all Alle erweitern + Collapse all Alle reduzieren + + Available Verfügbar + Do you want to remove this Friend? Möchtest du diesen Freund entfernen? + Unsubscribe to lobby Lobby abbestellen + You are about to unsubscribe a chat lobby<br>You can only re-enter if your friends invite you again. Du bestellst die Lobby ab.<br>Du kannst erst wieder teilnehmen, wenn deine Freunde dich wieder einladen. + Columns Spalten + Sort by Sortiere nach @@ -4690,26 +5944,32 @@ p, li { white-space: pre-wrap; } FriendRecommendDialog + Friend Recommendations Freundempfehlungen + Message: Nachricht: + Recommend friends Freunde empfehlen + To An + Please select at least one friend for recommendation. Bitte mindestens einen Freund als Empfehlung wählen. + Please select at least one friend as recipient. Bitte mindestens einen Empfänger wählen. @@ -4718,19 +5978,19 @@ p, li { white-space: pre-wrap; } FriendRequest Friend Request - Freundschaftsanfrage + Freundschaftsanfrage Cancel - Abbrechen + Abbrechen <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Accept Request and Close</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -4738,56 +5998,59 @@ p, li { white-space: pre-wrap; } Confirm - Bestätigen + Bestätigen Peer Info - Nachbar-Info + Nachbar-Info Name - Name + Name Peer ID - Nachbar-ID + Nachbar-ID Sign GPG Key - PGP-Schlüssel unterzeichnen + PGP-Schlüssel unterzeichnen RetroShare - RetroShare + RetroShare Error : cannot get peer details. - Fehler: Kann Details des Freundes nicht ermitteln. + Fehler: Kann Details des Freundes nicht ermitteln. Signature Failure - Signaturfehler + Signaturfehler Maybe password is wrong - Vielleicht ist das Passwort falsch + Vielleicht ist das Passwort falsch You have a friend request. - Du hast eine Freundschaftsanfrage. + Du hast eine Freundschaftsanfrage. FriendRequestToaster + Confirm Friend Request Freundschaftsanfrage bestätigen + wants to be friend with you on RetroShare möchte mit dir in RetroShare befreundet sein + Unknown (Incoming) Connect Attempt Unbekannter (eingehender) Verbindungsversuch @@ -4795,10 +6058,12 @@ p, li { white-space: pre-wrap; } FriendSelectionWidget + Search for Name: Name suchen: + Search Friends Freunde suchen @@ -4806,182 +6071,233 @@ p, li { white-space: pre-wrap; } FriendsDialog + Add Hinzufügen + Display Anzeigen + Edit Personal message Statusnachricht ändern + Group Chat Gruppenchat + Bold Fett + Underline Unterstrichen + Italic Kursiv + Font Schriftart + Text Color Textfarbe + Attach File Datei anhängen + Send Senden + Messages entered here are sent to all connected friends Nachrichten, die du hier eingibst, werden an alle verbundenen Freunde versendet + Clear Chat History Nachrichtenverlauf leeren + Add Friend Freund hinzufügen + Create new Profile Neues Profil erstellen + + Create new Forum Neues Forum erstellen + F F + + Create new Channel Neuen Kanal erstellen + C C + Add your Avatar Picture Wähle deinen Avatar + A A + Set your Personal Message Statusnachricht ändern + Edit your status Message Statusnachricht ändern + Browse Message History Nachrichtenverlauf anzeigen + Browse History Nachrichtenverlauf + + Save Chat History Nachrichtenverlauf speichern + + Add a new Group Neue Gruppe hinzufügen + Delete Chat History Nachrichtenverlauf löschen + Deletes all stored and displayed chat history Löscht den gespeicherten und angezeigten Chat Verlauf + + Create new Chat lobby Neue Chat Lobby erstellen + Chat lobbies Chatlobbys + Profile Profil + News Feed Neuigkeiten + Welcome to RetroShare's group chat. Willkommen im RetroShare-Gruppenchat. + Paste RetroShare Link RetroShare-Link einfügen + is typing... tippt... + + New group chat Neuer Gruppenchat + Do you really want to physically delete the history? Möchtest du wirklich den Nachrichtenverlauf löschen? + Add Extra File Zusätzliche Datei hinzufügen + Save as... Speichern unter... + Text File (*.txt );;All Files (*) Text Datei (*.txt );;Alle Dateien (*) + Friend Recommendations Freundempfehlungen + Choose Font Schriftart wählen + Reset font to default Schriftart auf den Standard setzen + Friends Freunde @@ -4989,13 +6305,15 @@ p, li { white-space: pre-wrap; } GamesDialog + Form Formular + <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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Games Launcher</span></p></body></html> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -5003,118 +6321,151 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Spiele-Starter</span></p></body></html> + Game: Spiel: + GameType: 0. Want to Add your Game here? Spieltyp: 0. Willst du dein Spiel hier einfügen? + GameType: 1. Get In Touch with the developers Spieltyp: 1. Kontaktiere die Entwickler + GameType: 2. Spieltyp: 2. + Title / Comment Titel/Kommentar + Create New Game Neues Spiel anlegen + Invite All Friends Alle Freunde einladen + Game Type Spieltyp + Server Server + Status Status + Comment Kommentar + GameID Spiel-ID + Player Spieler + + Invite Einladen + Interested Interessiert + Accept Bestätigen + Delete Löschen + + Move Player Spieler bewegen + Play Game Spielen + Cancel Game Spiel abbrechen + Add to Invite List Zur Einladungsliste hinzufügen + Remove from Invite List Von Einladungsliste entfernen + + Interested in Playing An Spielen interessiert + Not Interested in Game Nicht an Spielen interessiert + + Not Interested Nicht interessiert + Confirm Peer in Game Nachbar im Spiel bestätigen + Remove Peer from Game Nachbar vom Spiel entfernen + Interested in Game An Spiel interessiert + Quit Game Spiel verlassen @@ -5122,26 +6473,32 @@ p, li { white-space: pre-wrap; } GenCertDialog + Create new Profile Neues Profil erstellen + Your profile is associated to a GPG key Dein Profil ist mit einem PGP-Schlüssel verknüpft + Name Name + Enter here your nickname Gib deinen Spitznamen ein + Email E-Mail + Be careful: this email will be visible to your friends and friends of your friends. This information is required by GPG, but to stay anonymous, you can use a fake email. @@ -5149,46 +6506,61 @@ anonymous, you can use a fake email. Diese Information ist für PGP erforderlich, aber du kannst durch Eingabe einer falschen E-Mail-Adresse anonym bleiben. + This Password is for GPG Dieses Passwort ist für PGP + Password Passwort + Put a strong password here. This password protects your GPG key. Gib ein schwieriges Passwort ein. Dieses Passwort schützt deinen PGP-Schlüssel. + Location Ort + + Create new Location Neuen Ort erstellen + + Generate new Location Neuen Ort erstellen + + Create a new Location Einen neuen Ort erstellen + + Generate GPG key Failure Fehler beim Generieren des PGP-Schlüssels + Location field is required with a minimum of 3 characters Das Feld Ort ist mit min. 3 Zeichen zu versehen + All fields are required with a minimum of 3 characters Alle Felder sind mit min. 3 Zeichen zu versehen + Generating new GPG key, please be patient: this process needs generating large prime numbers, and can take some minutes on slow computers. Fill in your GPG password when asked, to sign your new key. @@ -5197,89 +6569,110 @@ Fill in your GPG password when asked, to sign your new key. Gib, wenn du gefragt wirst, dein PGP Passwort ein, um deinen neuen Schlüssel zu unterzeichnen. + Select Trusted Friend Wähle vertrauten Freund + Certificates (*.pqi *.pem) Zertifikate (*.pqi *.pem) + + Multiple instances Mehrere Instanzen + Another RetroShare using the same profile is already running on your system. Please close that instance first Ein laufendes RetroShare benutzt das gleiche Profil. Bitte schließe diese Instanz + An unexpected error occurred when Retrosharetried to acquire the single instance lock Ein unerwarteter Fehler während des "Single instance lock" ist aufgetreten + Generate ID Failure Fehler beim Generieren der ID + Failed to Load your new Certificate! Fehler beim Laden deines neuen Zertifikates! + [Optional] Visible to your friends, and friends of friends. [Optional] Sichtbar für deine Freunde und Freunde von Freunden. + [Required] Examples: Home, Laptop,... [Benötigt] Beispiel: Home, Laptop, ... + [Required] Visible to your friends, and friends of friends. [Benötigt] Sichtbar für deine Freunde und Freunde von Freunden. + [Required] This password protects your PGP key. [Benötigt] Dieses Passwort schützt deinem PGP Schlüssel. + It looks like you don't own any Profile (GPG keys). Please fill in the form below to generate one, or import an existing profile. Es sieht so aus, als ob du kein Profil (PGP-Schlüssel) besitzt. Bitte fülle die Felder aus und generiere dir ein Profil oder importiere ein bestehendes Profil. + Generate a new identity Eine neue Identität erstellen + Import new identity Eine Identität importieren + Export selected identity Ausgewählte Identität exportieren + Use identity Identität benutzen + Your profile is associated to a GPG key. RetroShare currently ignores DSA keys. Dein Profil ist mit einem PGP-Schlüssel verknüpft. RetroShare ignoriert im Moment DSA-Schlüssel. + Put a meaningfull location. ex : home, laptop, etc. This field will be used to differentiate different installations with the same identity (gpg key). Nutze einen aussagekräftigen Ort (z.B. home, laptop). Dieses Feld wird genutzt, um verschiedene Installationen mit derselben Identität auseinander zu halten. + Generate New Identity Neue Identität generieren + <!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:8pt; font-weight:600;">RetroShare uses gpg keys for identity management. </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:8pt; font-weight:600;"></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:8pt; font-weight:600;">You can use an existing identity (i.e. a gpg key pair), from the list below, or create a new one with this form.</span></p> +</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:8pt; font-weight:600;">RetroShare uses gpg keys for identity management. </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:8pt; font-weight:600;"></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:8pt; font-weight:600;">You can use an existing identity (i.e. a gpg key pair), from the list below, or create a new one with this form.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></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:8pt; font-weight:600;">You can install retroshare on different locations using the same identity. For this, just export the selected identity, and import it on the new computer, then create a new location with it.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -5293,30 +6686,43 @@ 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:8pt; font-weight:600;">Du kannst RetroShare an mehreren Orten mit der selben Identität installieren. Dafür kannst du die ausgewählte Identität exportieren und auf einem anderen Computer importieren und eine neue Identität erstellen.</span></p></body></html> + + Create new Identity Neue Identität erstellen + + Generate new Identity Neue Identität generieren + + + Create a new Identity Neue Identität erstellen + + Export Identity Identität exportieren + + RetroShare Identity files (*.asc) RetroShare-Identitätsdateien (*.asc) + Identity saved Identität gespeichert + Your identity was successfully saved It is encrypted @@ -5329,30 +6735,37 @@ Du kannst die Identität nun auf einen anderen Computer kopieren und den Import zum Laden verwenden + Identity not saved Identität nicht gespeichert + Your identity was not saved. An error occured. Deine Identität wurde nicht gespeichert. Ein Fehler ist aufgetreten. + Identity not loaded Identität nicht geladen + Your identity was not loaded properly: Deine Identität wurde nicht korrekt geladen: + New identity imported Neue Identität importiert + Your identity was imported successfuly: Deine Identität wurde erfolgreich importiert: + You can use it now to create a new location. Du kannst sie jetzt benutzen, um einen neuen Ort anzulegen. @@ -5360,82 +6773,103 @@ und den Import zum Laden verwenden GeneralPage + Startup Programmstart + Start RetroShare when my system starts RetroShare mit dem System starten + Start minimized Minimiert starten + Start minimized on system start Beim Starten mit dem System minimieren + For Advanced Users Für erfahrene Anwender + Enable Advanced Mode (Restart Required) Erweiterter Modus + Misc Verschiedenes + Do not show the Quit RetroShare MessageBox Nachfrage beim Schließen nicht anzeigen + Do not Minimize to Tray Icon Nicht in den Systemabschnitt minimieren + Auto Login Automatische Anmeldung + Register retroshare:// as url protocol (Restart required) retroshare:// als Protokoll registrieren (Neustart erforderlich) + You need administrator rights to change this option. Du benötigst Administratorrechte zum Ändern dieser Einstellung. + Idle Untätig + Idle Time Zeit bis zur Untätigkeit + seconds Sekunden + + Error Fehler + Could not add retroshare:// as protocol. Konnte retroshare:// nicht als Protokoll hinzufügen. + Could not remove retroshare:// protocol. Konnte retroshare:// nicht als Protokoll entfernen. + General Allgemein + Enable Experimental Features (Restart Required) Experimentelle Funktionen aktivieren (Neustart nötig) @@ -5443,23 +6877,27 @@ und den Import zum Laden verwenden GetStartedDialog + Getting Started Erste Schritte + + Invite Friends Freunde einladen + <!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 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> +</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="-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></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -5474,20 +6912,23 @@ 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></body></html> + Add Your Friends to RetroShare Füge deine Freunde zu RetroShare hinzu + Add Friends Freunde hinzufügen + <!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> +</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> <!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"> @@ -5499,24 +6940,26 @@ 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></body></html> + Connect To Friends Zu Freunden verbinden + <!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> +</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> <!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"> @@ -5535,22 +6978,24 @@ 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;">Schaue in die Sektion "Weitere Hilfe" um mehr Informationen über das Verbinden zu bekommen.</span></p></body></html> + Advanced: Open Firewall Port Erweitert: Öffne Firewall Port + <!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;">You can improve your Retroshare performance by opening an External Port. </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 will speed up connections and allow more people to connect with 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;">The easiest way to do this is by enabling UPnP on your Wireless Box or 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;">As each router is different, you need to find out your Router Model and Google for instructions.</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;">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> +</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;">You can improve your Retroshare performance by opening an External Port. </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 will speed up connections and allow more people to connect with 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;">The easiest way to do this is by enabling UPnP on your Wireless Box or 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;">As each router is different, you need to find out your Router Model and Google for instructions.</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;">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> <!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"> @@ -5567,25 +7012,27 @@ 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:8pt;"></p></body></html> + Further Help and Support Weitere Hilfe und Support + <!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;">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;"> - 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> +</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="-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;"> - 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></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -5605,70 +7052,87 @@ 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;">Viel Spaß beim Retrosharing</span></p></body></html> + Open RS Website RS-Website öffnen + Open FAQ Wiki Öffne FAQ (auf Wiki) + Open Online Forums Onlineforum öffnen + Email Support E-Mail-Support + Email Feedback E-Mail-Feedback + RetroShare Invitation RetroShare-Einladung + Your friend has installed RetroShare, and would like you to try it out. Dein Freund hat RetroShare installiert und möchte, dass du es auch versuchst. + You can get RetroShare here: %1 Du kannst RetroShare hier herunterladen: %1 + RetroShare is a private Friend-2-Friend sharing network. RetroShare ist ein privates Friend-2-Friend Netzwerk. + It has many features, including built-in chat, messaging, Es hat viele Funktionen wie Chat, Nachrichten, + forums and channels, all of which are as secure as the file-sharing. Foren, Kanäle, von denen alle ebenso sicher sind wie das Tauschen von Dateien. + Here is your friends ID Certificate. Hier ist das Zertifikat deines Freundes. + Cut and paste the text below into your RetroShare client Kopiere den unteren Text und füge ihn in deinem RetroShare ein + and send them your ID Certificate to get securely connected. und sende deinem Freund dein Zertifikat zum sicheren Verbinden. + Cut Below Here Hier ausschneiden + RetroShare Feedback RetroShare Feedback + RetroShare Support RetroShare Support @@ -5676,26 +7140,34 @@ p, li { white-space: pre-wrap; } GraphFrame + Recv: Empfangen: + + + %1 KB/s %1 KiB/s + Sent: Gesendet: + %1 KB %1 KiB + %1 MB %1 MiB + %1 GB %1 GiB @@ -5703,6 +7175,7 @@ p, li { white-space: pre-wrap; } GraphWidget + Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys Klicke und ziehe die Knoten umher, Zoome mit dem Mausrad oder den Tasten '+' und '-' @@ -5710,6 +7183,7 @@ p, li { white-space: pre-wrap; } GroupChatToaster + Show Group Chat Gruppenchat anzeigen @@ -5717,22 +7191,27 @@ p, li { white-space: pre-wrap; } GroupDefs + Friends Freunde + Family Familie + Co-Workers Mitarbeiter + Other Contacts Andere Kontakte + Favorites Favoriten @@ -5740,30 +7219,37 @@ p, li { white-space: pre-wrap; } GroupTreeWidget + Enter a Keyword here Gib einen Suchbegriff ein + Title Titel + Description Beschreibung + Sort by Name Nach Name sortieren + Sort by Popularity Nach Beliebtheit sortieren + Sort by Last Post Nach letztem Beitrag sortieren + Private Key Available Privater Schlüssel verfügbar @@ -5771,78 +7257,97 @@ p, li { white-space: pre-wrap; } GuiExprElement + and und + and / or und/oder + or oder + Name Name + Path Pfad + Extension Erweiterung + Hash Prüfsumme + Date Datum + Size Größe + Popularity Beliebtheit + contains enthält + contains all enthält alles + is ist + less than kleiner als + less than or equal kleiner als oder gleich + equals gleich + greater than or equal größer als oder gleich + greater than größer als + is in range im Bereich @@ -5850,14 +7355,18 @@ p, li { white-space: pre-wrap; } HashBox + + Drop file error. Dateifehler bei Drag'n'Drop. + Directory can't be dropped, only files are accepted. Ordner können nicht für Drag'n'Drop genutzt werden. Nur Dateien werden akzeptiert. + File not found or file name not accepted. Datei nicht gefunden oder Dateiname nicht akzeptiert. @@ -5865,130 +7374,167 @@ p, li { white-space: pre-wrap; } HelpBrowser + + RetroShare Help RetroShare Hilfe + Find: Suche: + Find Previous Vorheriges suchen + Find Next Nächstes suchen + Case sensitive unterscheide Groß/Klein + Whole words only Nur ganze Wörter + Contents Inhalt + Help Topics Hilfe-Kapitel + + Search Suchen + Searching for: Suche nach: + Found Documents gefundene Dokumente + Back Zurück + Move to previous page (Backspace) zur vorherigen Seite zurück (Rücktaste) + Backspace Rücktaste + Forward Vorwärts + Move to next page (Shift+Backspace) Zur nächsten Seite (Umschalt+Rücktaste) + Shift+Backspace Umschalt+Rücktaste + Home Home + Move to the Home page (Ctrl+H) Zur Startseite (Strg+H) + Ctrl+H Strg+H + + + Find Suche + Search for a word or phrase on current page (Ctrl+F) Einen Begriff auf der aktuellen Seite suchen (Strg+F) + Ctrl+F Strg+F + Close Schließen + Close Vidalia Help Vidalia-Hilfe schließen + Esc Esc + + Error Loading Help Contents: Fehler beim Laden des Hilfe-Inhalts: + Supplied XML file is not a valid Contents document. Diese XML-Datei ist kein gültiges Inhaltsdokument. + Search reached end of document Suche am Ende des Dokuments angekommen + Search reached start of document Suche am Anfang des Dokuments angekommen + Text not found in document Text im Dokument nicht gefunden + Found %1 results %1 Ergebnis(se) gefunden @@ -5996,49 +7542,56 @@ p, li { white-space: pre-wrap; } HelpDialog + About Über + Authors Autoren + Thanks to Dank an + Translation Übersetzung + License Agreement Lizenzvereinbarung + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">About RetroShare</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:8pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Über RetroShare</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">RetroShare is a Open Source cross-platform, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">private and secure decentralised commmunication platform. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">It lets you share securely your friends, </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">RetroShare provides filesharing, chat, messages and channels</span></p> -<p align="center" 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> -<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:8pt; font-weight:600;">Usefull External Links to more information:</span></p> -<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'Arial'; font-size:8pt;" align="justify" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-family:'Arial'; font-size:8pt;" align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Main_Page"><span style=" text-decoration: underline; color:#0000ff;">Retroshare Wiki</span></a></li> -<li style=" font-family:'Arial'; font-size:8pt; text-decoration: underline; color:#0000ff;" align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net/forum/">RetroShare's Forum</a></li> -<li style=" font-family:'Arial'; font-size:8pt;" align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://sourceforge.net/projects/retroshare/"><span style=" text-decoration: underline; color:#0000ff;">Retroshare Project Page</span></a></li> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">RetroShare is a Open Source cross-platform, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">private and secure decentralised commmunication platform. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">It lets you share securely your friends, </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. </span></p> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-weight:600;">RetroShare provides filesharing, chat, messages and channels</span></p> +<p align="center" 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> +<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:8pt; font-weight:600;">Usefull External Links to more information:</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'Arial'; font-size:8pt;" align="justify" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-family:'Arial'; font-size:8pt;" align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Main_Page"><span style=" text-decoration: underline; color:#0000ff;">Retroshare Wiki</span></a></li> +<li style=" font-family:'Arial'; font-size:8pt; text-decoration: underline; color:#0000ff;" align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://retroshare.sourceforge.net/forum/">RetroShare's Forum</a></li> +<li style=" font-family:'Arial'; font-size:8pt;" align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://sourceforge.net/projects/retroshare/"><span style=" text-decoration: underline; color:#0000ff;">Retroshare Project Page</span></a></li> <li style=" font-family:'Arial'; font-size:8pt;" align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.lunamutt.com"><span style=" text-decoration: underline; color:#0000ff;">Lunamutt Homepage.</span></a></li></ul></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -6058,21 +7611,22 @@ p, li { white-space: pre-wrap; } <li style=" font-family:'Arial'; font-size:8pt;" align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.lunamutt.com"><span style=" text-decoration: underline; color:#0000ff;">Lunamutt Homepage.</span></a></li></ul></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:8pt; font-weight:600;">RetroShare Translators:</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:8pt;"></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:8pt; font-weight:600;">French</span><span style=" font-family:'Arial'; font-size:8pt;">:Temet</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:8pt; font-weight:600;">Polish: </span><span style=" font-family:'Arial'; font-size:8pt;">Jarek</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:8pt; font-weight:600;">Serbian</span><span style=" font-family:'Arial'; font-size:8pt;">: Kunalagon Umuhanik &lt;kunalagon@gmail.com&gt;</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:8pt; font-weight:600;">Swedish:</span><span style=" font-family:'Arial'; font-size:8pt;"> dnylander</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:8pt;"></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:8pt; font-weight:600;">RetroShare Website Translators:</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:8pt; font-weight:600;"></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:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'Arial'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'Arial'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'Arial'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'Arial'; font-size:8pt; font-weight:600;">&gt;</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:8pt; font-weight:600;">German: </span><span style=" font-family:'Arial'; font-size:8pt;">Jan</span><span style=" font-family:'Arial'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'Arial'; font-size:8pt;">Keller</span><span style=" font-family:'Arial';"> &lt;</span><span style=" font-family:'Arial'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'Arial';">&gt;</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:8pt; font-weight:600;">RetroShare Translators:</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:8pt;"></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:8pt; font-weight:600;">French</span><span style=" font-family:'Arial'; font-size:8pt;">:Temet</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:8pt; font-weight:600;">Polish: </span><span style=" font-family:'Arial'; font-size:8pt;">Jarek</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:8pt; font-weight:600;">Serbian</span><span style=" font-family:'Arial'; font-size:8pt;">: Kunalagon Umuhanik &lt;kunalagon@gmail.com&gt;</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:8pt; font-weight:600;">Swedish:</span><span style=" font-family:'Arial'; font-size:8pt;"> dnylander</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:8pt;"></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:8pt; font-weight:600;">RetroShare Website Translators:</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:8pt; font-weight:600;"></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:8pt; font-weight:600;">Swedish: </span><span style=" font-family:'Arial'; font-size:8pt;"> Daniel Wester</span><span style=" font-family:'Arial'; font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-family:'Arial'; font-size:8pt;">wester@speedmail.se</span><span style=" font-family:'Arial'; font-size:8pt; font-weight:600;">&gt;</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:8pt; font-weight:600;">German: </span><span style=" font-family:'Arial'; font-size:8pt;">Jan</span><span style=" font-family:'Arial'; font-size:8pt; font-weight:600;"> </span><span style=" font-family:'Arial'; font-size:8pt;">Keller</span><span style=" font-family:'Arial';"> &lt;</span><span style=" font-family:'Arial'; font-size:8pt;">trilarion@users.sourceforge.net</span><span style=" font-family:'Arial';">&gt;</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-weight:600;">Polish: </span><span style=" font-family:'Arial';">Maciej Mrug</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -6095,26 +7649,32 @@ p, li { white-space: pre-wrap; } HelpTextBrowser + Error opening help file: Fehler beim Öffnen der Hilfedatei: + Opening External Link Öffne externe Verknüpfung + RetroShare can open the link you selected in your default Web browser. If your browser is not currently configured to use Tor then the request will not be anonymous. Retroshare kann den Link in deinem Browser öffnen. Falls dieser nicht z.B. mit TOR konfiguriert ist, wird der Aufruf der Seite nicht anonym sein. + Do you want Retroshare to open the link in your Web browser? Soll RetroShare den Link im Browser öffnen? + Unable to Open Link Die Verknüpfung konnte nicht geöffnet werden + RetroShare was unable to open the selected link in your Web browser. You can still copy the URL and paste it into your browser. RetroShare konnte den Link nicht mit deinem Browser öffnen. Du kannst ihn aber kopieren und im Browser per Hand einfügen. @@ -6122,110 +7682,139 @@ p, li { white-space: pre-wrap; } IdDialog + Showing: Zeige: + + Yourself Du + Friends / Friends of Friends Freunde/Freunde von Freunden + Others Andere + Pseudonyms Pseudonyme + All Alle + filter filtern + + Nickname Spitzname + KeyId Schlüssel-ID + Type Typ + Delete ID ID löschen + Edit Reputation Reputation bearbeiten + Edit ID ID bearbeiten + New ID Neue ID + Identity Type Identitätstyp + Friend Freund + Friend of Friend Freund eines Freundes + Other Andere + Pseudonym Pseudonym + Key ID Schlüssel-ID + GPG Name PGP-Name + GPG Email PGP-E-Mail + GPG Id PGP-ID + GPG Hash PGP-Hash + Reputation Reputation + Your Rating Deine Bewertung + Overall Rating Gesamtbewertung @@ -6233,46 +7822,57 @@ p, li { white-space: pre-wrap; } IdEditDialog + Nickname Spitzname + Key ID Schlüssel-ID + GPG Name PGP-Name + GPG Email PGP-E-Mail + GPG Hash PGP-Hash + GPG Id PGP-ID + New Identity Neue Identität + Gpg Assocated ID Mit PGP verknüpfte ID + Pseudonym Pseudonym + Cancel Abbrechen + Create/Update ID ID erstellen/verändern @@ -6280,30 +7880,39 @@ p, li { white-space: pre-wrap; } ImHistoryBrowser + + Message History Nachrichtenverlauf + + Copy Kopieren + Remove Entfernen + Mark all Alle markieren + Delete Löschen + Clear history Verlauf löschen + Send Senden @@ -6312,16 +7921,16 @@ p, li { white-space: pre-wrap; } InfoDialog Info - Info + Info <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">RetroShare uses GPG keys, this is required for creating a RetroShare Profile.</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-size:9pt; font-weight:600;">You must exchange your gpg keys with you friends, by emailing it or any way you want.</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-size:9pt; font-weight:600;">When you recieve a friend's gpg key, add it within RS on the add friend wizard.</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-size:9pt; font-weight:600;">When you recieve a friend's gpg key, add it within RS on the add friend wizard.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"></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-size:8pt; font-weight:600;">1. On Linux you must install GPA :</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; font-weight:600;"></p> @@ -6336,7 +7945,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://winpt.gnupt.de/winpt.zip"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://winpt.gnupt.de/winpt.zip</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; text-decoration: underline; color:#0000ff;"></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt; text-decoration: underline; color:#0000ff;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -6362,110 +7971,139 @@ p, li { white-space: pre-wrap; } MainWindow + MainWindow Hauptfenster + Add Friend Freund hinzufügen + Add a Friend Wizard Assistent zum Hinzufügen von Freunden + Add Share Dateien freigeben + + Options Optionen + Messenger Messenger + About Über + SMPlayer SMPlayer + Quit Schließen + + Quick Start Wizard Schnellstart-Assistent + RetroShare %1 a secure decentralised communication platform RetroShare %1 - eine sichere und dezentralisierte Kommunikationsplattform + Network Netzwerk + Friends Freunde + Search Suchen + Transfers Übertragungen + Files Dateien + Messages Nachrichten + Channels Kanäle + Blogs Blogs + Forums Foren + Plugins Plug-Ins + Getting Started Erste Schritte + Unfinished unfertig + Low disk space warning Wenig Festplattenspeicher + The disk space in your Der Festplattenspeicher im + directory is running low (current limit is Verzeichnis ist sehr gering (Die aktuelle Grenze ist + MB). RetroShare will now safely suspend any disk access to this directory. @@ -6478,110 +8116,137 @@ Normalerweise stoppt RetroShare jetzt sicher alle Festplattenzugriffe auf das Ve Bitte gib etwas Speicher frei und drücke OK. + Show/Hide Anzeigen/Verbergen + Status Status + Notify Meldungen + Open Messenger Messenger öffnen + Open Messages Nachrichten öffnen + Bandwidth Graph Bandbreiten-Graph + DHT Details DHT-Details + Applications Anwendungen + Help Hilfe + Minimize Minimieren + Maximize Maximieren + &Quit &Schließen + RetroShare RetroShare + %1 new messages %1 neue Nachrichten + %1 new message %1 neue Nachricht + Down: %1 (kB/s) Herunter: %1 KiB/s + Up: %1 (kB/s) Hoch: %1 KiB/s + %1 friend connected %1 Freund verbunden + %1 friends connected %1 Freunde verbunden + Do you really want to exit RetroShare ? Möchtest du RetroShare wirklich beenden? + Really quit ? Wirklich beenden? + Internal Error Interner Fehler + Hide Verbergen + Show Anzeigen + It seems to be an old RetroShare link. Please use copy instead. Es scheint ein alter RetroShare Link zu sein. Bitte kopiere den Link stattdessen. + The file link is malformed. Link ist fehlerhaft. + Bandwidth Details Bandbreitendetails @@ -6589,422 +8254,536 @@ Bitte gib etwas Speicher frei und drücke OK. MessageComposer + + Compose Verfassen + + Contacts Kontakte + >> To >> An + >> Cc >> Cc + >> Bcc >> Bcc + >> Recommend >> Empfehlen + Paragraph Absatz + Heading 1 Überschrift 1 + + Heading 2 Überschrift 2 + Heading 3 Überschrift 3 + Heading 4 Überschrift 4 + Heading 5 Überschrift 5 + Heading 6 Überschrift 6 + Font size Schriftgröße + Increase font size Schrift vergrößern + Decrease font size Schrift verkleinern + Bold Fett + Italic Kursiv + Select Color Textfarbe auswählen + Alignment Ausrichtung + Add a Image Ein Bild hinzufügen + Sets text font to code style Setzt Schriftart auf Codestil + Underline Unterstrichen + Subject: Betreff: + Tags: Schlagwörter: + + Tags Schlagwörter + Recommended Files Empfohlene Dateien + File Name Dateiname + Size Größe + Hash Prüfsumme + Send Senden + Send this message now Diese Nachricht jetzt senden + Reply Antwort + Toggle Contacts View Kontakt-Ansicht umschalten + Save Speichern + Save this message Diese Nachricht speichern + Attach Anhängen + Attach File Datei anhängen + Quote Blockquote + Add Blockquote Blockquote hinzufügen + Send To: Senden an: + &Left &Links + C&enter &Zentriert + &Right &Rechts + &Justify &Blocksatz + + Save Message Nachricht speichern + Message has not been Sent. Do you want to save message to draft box? Nachricht wurde noch nicht gesendet. Möchtest du die Nachricht in den Entwürfen speichern? + + Paste RetroShare Link RetroShare Link einfügen + Add to "To" Zu "An" hinzufügen + Add to "CC" Zu "Cc" hinzufügen + Add to "BCC" Zu "Bcc" hinzufügen + Add as Recommend Als empfohlen hinzufügen + Friend Details Freunddetails + Re: Re: + Fwd: Fwd: + + RetroShare RetroShare + Do you want to send the message without a subject ? Möchtest du die Nachricht ohne Betreff senden ? + Please insert at least one recipient. Bitte gib mindestens einen Empfänger ein. + + To An + + Cc Cc + Bcc Bcc + Unknown Unbekannt + Unknown friend Unbekannter Freund + &File &Datei + &New &Neu + &Open... Ö&ffnen... + &Save S&peichern + Save &As File Speichern &unter + Save &As Draft Als &Entwurf speichern + &Print... &Drucken... + &Export PDF... PDF &exportieren... + &Quit &Schließen + &Edit &Bearbeiten + &Undo Rü&ckgängig + &Redo &Wiederholen + Cu&t Auss&chneiden + &Copy Ko&pieren + &Paste Einfü&gen + &View &Ansicht + &Contacts Sidebar &Kontakt-Sidebar + &Insert Ein&fügen + &Image &Bild + &Horizontal Line &Horizontale Linie + &Format &Format + Open File... Datei öffnen... + + HTML-Files (*.htm *.html);;All Files (*) HTML-Dateien (*.htm *.html);;Alle Dateien (*) + Save as... Speichern unter... + Print Document Dokument drucken + Export PDF PDF exportieren + Message has not been Sent. Do you want to save message ? Nachricht noch nicht versandt. Möchtest du die Nachricht speichern ? + Choose Image Bild wählen + Image Files supported (*.png *.jpeg *.jpg *.gif) Unterstützte Bilddateien (*.png *.jpeg *.jpg *.gif) + Add Extra File Zusätzliche Datei hinzufügen + You have a friend recommendation Du hast eine Freundempfehlung + Original Message Ursprüngliche Nachricht + From Von + Sent Gesendet + Subject Betreff + On %1, %2 wrote: Am %1, schrieb %2: + wants to be friends with you on RetroShare möchte mit dir in RetroShare befreundet sein + Hi %1,<br><br>%2 wants to be friends with you on RetroShare.<br><br>Respond now:<br>%3<br><br>Thanks,<br>The RetroShare Team Hallo %1,<br><br>%2 möchte mit dir in RetroShare befreundet sein.<br><br>Jetzt antworten:<br>%3<br><br>Grüße,<br>Das RetroShare Team + Hello,<br>I recommend a good friend of me, you can trust him too when you trust me. <br> Hallo, <br> ich empfehle dir einen guten Freund von mir. Du kannst ihm vertrauen, wenn du mir vertraust. <br> + This friend is suggested by Dieser Freund wurde vorgeschlagen von + Thanks, <br>The RetroShare Team Grüße, <br>Das RetroShare Team @@ -7012,54 +8791,67 @@ Möchtest du die Nachricht speichern ? MessagePage + Reading Lesen + Set message to read on activate Setze Nachricht beim Aktivieren als gelesen + Open messages in Nachricht durch Doppelklick öffnen in + Tags Schlagwörter + Tags can be used to categorize and prioritize your messages Schlagwörter können beim Sortieren und Erkennen von Nachrichten helfen + Add Hinzufügen + Edit Bearbeiten + Delete Löschen + Default Standard + A new tab Neuem Tab + A new window Neuem Fenster + Edit Tag Schlagwort bearbeiten + Message Nachricht @@ -7067,109 +8859,143 @@ Möchtest du die Nachricht speichern ? MessageToaster + Sub: Betreff: + + MessageUserNotify + + + Message + + + MessageWidget + Download all Recommended Files Alle Dateien herunterladen + Subject: Betreff: + From: Von: + To: An: + Cc: Cc: + Bcc: Bcc: + Tags: Schlagwörter: + File Name Dateiname + Size Größe + Hash Prüfsumme + Print Drucken + Print Preview Druckvorschau + No subject Kein Betreff + Download Herunterladen + Download all Alle herunterladen + Hide Verbergen + Expand Erweitern + File Datei + Files Dateien + Print Document Dokument drucken + Save as... Speichern unter... + HTML-Files (*.htm *.html);;All Files (*) HTML-Dateien (*.htm *.html);;Alle Dateien (*) + Confirm %1 as friend %1 als Freund bestätigen + Add %1 as friend %1 als Freund hinzufügen + Recommended Files Empfohlene Dateien @@ -7177,102 +9003,131 @@ Möchtest du die Nachricht speichern ? MessageWindow + New Message Neue Nachricht + Compose Verfassen + Reply to selected message Auf gewählte Nachricht antworten + Reply Antwort + Reply all to selected message Auf gewählte Nachricht an alle Empfänger antworten + Reply all Allen antworten + Forward selected message Gewählte Nachricht weiterleiten + Foward Weiterleiten + Remove selected message Gewählte Nachricht entfernen + Delete Löschen + Print selected message Gewählte Nachricht drucken + + Print Drucken + Display Anzeigen + + + Tags Schlagwörter + Print Preview Druckvorschau + + Buttons Icon Only Buttons nur mit Icon + Buttons Text Beside Icon Button Text neben Icon + Buttons with Text Buttons mit Text + Buttons Text Under Icon Buttons Text unter dem Icon + Set Text Under Icon Text unter dem Icon + &File &Datei + Save &As File Speichern &unter + &Print... &Drucken... + Print Preview... Druckvorschau... + &Quit &Schließen @@ -7280,262 +9135,357 @@ Möchtest du die Nachricht speichern ? MessagesDialog + + New Message Neue Nachricht + Compose Verfassen + Reply to selected message Auf gewählte Nachricht antworten + Reply Antworten + Reply all to selected message Auf gewählte Nachricht an alle Empfänger antworten + Reply all Allen antworten + Forward selected message Gewählte Nachricht weiterleiten + Foward Weiterleiten + Remove selected message Gewählte Nachricht entfernen + Delete Löschen + Print selected message Gewählte Nachricht drucken + Print Drucken + Display Anzeigen + Attachments Anhänge + + Subject Betreff + + + From Von + + Date Datum + + Content Inhalt + + + + + Tags Schlagwörter + + + + Inbox Posteingang + + + + Outbox Postausgang + Draft Entwürfe + + Sent Gesendet + + + + Trash Papierkorb + Quick View Schnellansicht + Total Inbox: Posteingang gesamt: + Folders Ordner + + Print... Drucken... + Print Preview Druckvorschau + + Buttons Icon Only Buttons nur mit Icon + Buttons Text Beside Icon Button Text neben Icon + Buttons with Text Buttons mit Text + Buttons Text Under Icon Buttons Text unter dem Icon + Set Text Under Icon Text unter dem Icon + Save As... Speichern unter... + Reply to Message Absender antworten + + Reply to All Allen antworten + Forward Message Weiterleiten + Click to sort by attachments Klicken, um nach Anhang zu sortieren + Click to sort by subject Klicken, um nach Betreff zu sortieren + Click to sort by read Klicken, um nach Gelesen / Ungelesen zu sortieren + + Click to sort by from Klicken, um nach Von zu sortieren + Click to sort by date Klicken, um nach Datum zu sortieren + Click to sort by tags Klicken, um nach Schlagwörter zu sortieren + Click to sort by star Klicken, um nach Kennzeichnung zu sortieren + Forward selected Message Gewählte Nachricht weiterleiten + Starred Gekennzeichnet + Open in a new window In neuem Fenster öffnen + Open in a new tab In neuem Tab öffnen + Mark as read Als gelesen markieren + Mark as unread Als ungelesen markieren + Add Star Kennzeichnen + Edit Bearbeiten + Edit as new Als neu bearbeiten + Remove Messages Nachrichten entfernen + Remove Message Nachricht entfernen + Undelete Wiederherstellen + Empty trash Papierkorb leeren + + + Drafts Entwürfe + No starred messages available. Stars let you give messages a special status to make them easier to find. To star a message, click on the light grey star beside any message. Es sind keine gekennzeichneten Nachrichten vorhanden. Durch die Kennzeichnung kannst du Nachrichten mit einem speziellen Status versehen, sodass sie leichter zu finden sind. Klicke zum Kennzeichnen einer Nachricht auf den hellgrauen Stern neben der jeweiligen Nachricht. + To An + Click to sort by to Klicken, um nach Empfänger zu sortieren + + + + + Total: Gesamt: + System System + No system messages available. Keine Systemnachrichten vorhanden. @@ -7543,18 +9493,22 @@ Möchtest du die Nachricht speichern ? MessengerWindow + RetroShare Messenger RetroShare-Messenger + Add a Friend Einen Freund hinzufügen + Share Files for your Friends Ordner für deine Freunde freigeben + Search Friends Freunde suchen @@ -7562,46 +9516,58 @@ Möchtest du die Nachricht speichern ? MsgItem + + Expand Erweitern + Remove Item Element entfernen + Reply to Message Auf die Nachricht antworten + Reply Message Auf Nachricht antworten + Delete Message Nachricht löschen + Play Media Medium abspielen + Message From Nachricht von + Sent Msg Gesendet + Draft Msg Entwurf + Pending Msg Wartend + Hide Verbergen @@ -7609,58 +9575,72 @@ Möchtest du die Nachricht speichern ? NATStatus + <strong>NAT:</strong> <strong>NAT:</strong> + Network Status Unknown Netzwerkstatus unbekannt + Offline Offline + Nasty Firewall Firewall + DHT Disabled and Firewalled DHT ausgeschaltet und durch Firewall geschützt + Network Restarting Netzwerkneustart + Behind Firewall Hinter Firewall + DHT Disabled DHT ausgeschaltet + RetroShare Server RetroShare Server + Forwarded Port Weitergeleiteter Port + OK | RetroShare Server OK | RetroShare-Server + Internet connection Internetverbindung + No internet connection Keine Internetverbindung + No local network Kein lokales Netzwerk @@ -7668,172 +9648,220 @@ Möchtest du die Nachricht speichern ? NetworkDialog + + Network Netzwerk + + + Name Name + + Did I authenticated peer Habe ich den Nachbarn authentifiziert + Did I sign his gpg key Habe ich den PGP-Schlüssel unterzeichnet + + Did peer authenticated me Hat mich der Nachbar authentifiziert + + Cert Id ID des Zertifikates + Search Network Netzwerksuche + Peer ID Nachbar-ID + Show keys that are not validated by the GPG web of trust Nicht vom "Web of Trust" bestätigte Schlüssel anzeigen + Network Status Netzwerkstatus + Local network Lokales Netzwerk + UPnP UPnP + External ip address finder Externer IP Adressen Finder + Clear Leeren + Set Tabs Right Tabs nach Rechts setzen + Set Tabs North Tabs nach Oben setzen + Set Tabs South Tabs nach Unten setzen + Set Tabs Left Tabs nach Links setzen + Set Tabs Rounded Tabs Form Rund setzen + Set Tabs Triangular Tabs Form Dreieck setzen + Add Friend Freund hinzufügen + Copy My Key to Clipboard Mein Zertifikat in die Zwischenablage kopieren + Export My Key Mein Zertifikat exportieren + Create New Profile Neues Profil erstellen + Create a new Profile Ein neues Profil erstellen + Network View Netzwerkansicht + Deny friend Freund blockieren + Make friend Freund hinzufügen + Delete certificate Zertifikat löschen + Export my Cert Mein Zertifikat exportieren + Peer details... Nachbardetails... + Copy RetroShare Link RetroShare-Link kopieren + Personal signature Persönliche Unterschrift + GPG key signed by you PGP-Schlüssel von dir unterzeichnet + Marginally trusted peer Geringfügig vertrauter Nachbar + Fully trusted peer Voll vertrauter Nachbar + Untrusted peer Nicht vertrauter Nachbar + Unknown Unbekannt + Has authenticated me Hat mich authentifiziert + has authenticated you. Right-click and select 'make friend' to be able to connect. hat mich authentifiziert. Rechtsklick und als Freund hinzufügen um zu verbinden. + yourself selbst + Display Anzeigen @@ -7841,6 +9869,7 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. NetworkPage + Network Netzwerk @@ -7848,14 +9877,17 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. NetworkView + Redraw Neu zeichnen + Friendship level: Freundschaftslevel: + Edge length: Kantenlänge: @@ -7863,22 +9895,27 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. NewTag + New Tag Neues Schlagwort + Name: Name: + Choose color Farbe wählen + OK OK + Cancel Abbrechen @@ -7886,18 +9923,22 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. NewsFeed + Remove All Alle entfernen + Options Optionen + News Feed Neuigkeiten + This is a test. Dies ist ein Test. @@ -7905,142 +9946,180 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. NotifyPage + News Feed News Feed + Peers Nachbarn + Channels Kanäle + Forums Foren + Blogs Blogs + Messages Nachrichten + Chat Chat + Security Sicherheit + Add feeds at end Neuigkeiten am Ende anfügen + Systray Icon Systray Icon + Message Nachricht + Download completed Download fertig + Combined Kombiniert + Toasters Hinweise + Friend Connect Verbindung zu Freund + New Message Neue Nachricht + Position Position + X Margin Abstand X + Y Margin Abstand Y + + Private Chat Privater Chat + Open Window for new chat Fenster für neuen Chat öffnen + Grab Focus when chat arrives Fokus auf neues Chatfenster legen + Use a single tabbed window Ein Fenster mit Tabs verwenden + Group chat Gruppenchat + Top Left Oben Links + Top Right Oben Rechts + Bottom Left Unten Links + Bottom Right Unten Rechts + Notify Meldungen + Group Chat Gruppenchat + Chat Lobby Chatlobby + + Connect attempt Verbindungsversuch + Systray message Nachricht im Systemabschnitt + Chat lobbies Chatlobbys + + Test Test @@ -8048,42 +10127,52 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. NotifyQt + GPG key passphrase PGP-Schlüssel-Passwort + Wrong password ! Falsches Passwort! + Examining shared files... Prüfe freigegebene Dateien... + Hashing file Erstelle Prüfsumme + Saving file index... Speichere Dateiindex... + To sign, please enter the password that unlocks your PGP key: Zum unterschreiben bitte dein PGP-Passwort eingeben: + Unregistered plugin/executable Nicht registriertes Plug-in/Programm + RetroShare has detected an unregistered plugin. This happens in two cases:<UL><LI>Your RetroShare executable has changed.</LI><LI>The plugin has changed</LI></UL>Click on Yes to authorize this plugin, or No to deny it. You can change your mind later in Options -> Plugins, then restart. RetroShare hat ein nicht registriertes Plug-in entdeckt. Dies kommt in zwei Fällen vor: <ul><li>Deine RetroShare-Installation wurde geändert</li><li>Das Plug-in wurde verändert</li></ul>Wähle "Ja", um dieses Plug-in zu autorisieren, oder "Nein", um die Autorisierung zu verweigern. Du kannst diese Entscheidung später unter Optionen -> Plug-ins ändern. Dann wird ein Neustart erforderlich sein. + Test Test + This is a test. Dies ist ein Test. @@ -8091,6 +10180,7 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. OnlineToaster + Friend Online Freund Online @@ -8098,6 +10188,8 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. PeerDefs + + Unknown Unbekannt @@ -8105,94 +10197,126 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. PeerItem + + Expand Erweitern + Remove Item Element entfernen + Write a quick Message Kurznachricht schreiben + Chat Chat + Start Chat Chat starten + Cancel Abbrechen + Send Senden + Name: Name: + Peer ID: Nachbar-ID: + Trust: Vertrauen: + Location: Ort: + IP Address: IP-Adresse: + Connection Method: Verbindungsmethode: + Status: Status: + Write Message Nachricht schreiben + Friend Freund + Friend Connected Freund verbunden + Connect Attempt Verbindungsversuch + Friend of Friend Freund eines Freundes + Peer Nachbar + + + + + + + + + Unknown Peer Unbekannter Nachbar + Hide Verbergen + Quick Message Kurznachricht @@ -8200,14 +10324,17 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. PeerStatus + Friends: 0/0 Freunde: 0/0 + Online Friends/Total Friends Freunde online/Freunde gesamt + Friends Freunde @@ -8215,146 +10342,183 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. PhotoAddDialog + Share Options Freigabeoptionen + Public Öffentlich + All Friends Alle Freunde + Restricted Beschränkt + N/A N/A + University Friends Universitätsfreunde + + Family Familie + This List Contains Diese Liste enthält + All your Groups Alle deine Gruppen + Resize Images (< 1Mb) Bildergröße anpassen (<1 MiB) + Resize Images (< 10Mb) Bildergröße anpassen (<10 MiB) + Send Original Images Originalbilder senden + No Comments Allowed Keine Kommentare erlaubt + Authenticated Comments Authentifizierte Kommentare + Any Comments Allowed Beliebige Kommentare erlaubt + Publish with XXX Key Mit XXX-Schlüssel veröffentlichen + Album Thumbnail Album-Vorschau + Summary Zusammenfassung + Category: Kategorie: + Travel Reise + Holiday Urlaub + Friends Freunde + Work Arbeit + Random Zufall + Caption Überschrift + Where: Wo: + Album Title: Albumtitel: + When Wann + Delete Album Album löschen + Edit Album Details Albumdetails bearbeiten + HELP: Drag & Drop to insert, and re-order pictures. Click on a picture to edit details below. HILFE: Ziehen & Loslassen, um einzufügen und Bilder neu zu ordnen. Auf Bild klicken, um Details unten zu bearbeiten. + Delete Photo Bild löschen + Edit Photo Details Fotodetails bearbeiten + << << + >> >> + Publish Album Album veröffentlichen @@ -8362,42 +10526,52 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. PhotoDetailsDialog + Album Description Albumsbeschreibung + Album Name: Albumname: + Category: Kategorie: + Travel Reise + Holiday Urlaub + Friends Freunde + Family Familie + Work Arbeit + Random Zufall + Thumbnail Here Dummy @@ -8416,34 +10590,42 @@ Text ................................... + Caption: Überschrift: + Photographer: Fotograf: + Description Beschreibung + Where: Wo: + When Wann + Other 1: Andere 1: + HashTags: HashTags: + Update Details Details aktualisieren @@ -8451,52 +10633,84 @@ Text PhotoDialog + + Rating Bewertung + Filter Filter + + Source Quelle + + Category Kategorie + + [ - ] [ - ] + + [ + ] [ + ] + Slide Show Diaschau + Edit Album Album bearbeiten + New Album Neues Album + + + + + + + + + PhotoShare PhotoShare + + + + + + Please select an album before requesting to edit it! Bitte Album vor dem Bearbeiten auswählen! + + + Cannot Edit Someone Else's Album Du kannst nicht das Album einer anderen Person bearbeiten @@ -8504,18 +10718,22 @@ Bearbeiten auswählen! PhotoItem + Album: Album: + From Von + Status Status + Date Datum @@ -8523,30 +10741,37 @@ Bearbeiten auswählen! PhotoSlideShow + Album Name Albumname + Image Bild + Show/Hide Details Details anzeigen/verstecken + << << + Stop/Run Start/Stopp + >> >> + Close Schließen @@ -8554,6 +10779,7 @@ Bearbeiten auswählen! PluginFrame + Remove Entfernen @@ -8561,10 +10787,11 @@ Bearbeiten auswählen! PluginItem + <!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;"> +</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;"><a href="more"><span style=" text-decoration: underline; color:#0000ff;">more...</span></a></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -8573,34 +10800,42 @@ 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> + Add the plugin into the white list of accepted plugins. This will be effective after you restart RetroShare, since plugins need to be loaded at startup. Fügt das Plug-in als vertrauenswürdig hinzu. Das wirkt sich nach dem Neustart von RetroShare aus, da die Plug-ins beim Start geladen werden. + Enabled Aktivieren + Launch configuration panel, if provided by the plugin Einstellungen öffnen, wenn vom Plug-in unterstützt + Configure Einstellung + File name: Dateiname: + File hash: Prüfsumme: + Status: Status: + About Über @@ -8608,14 +10843,17 @@ p, li { white-space: pre-wrap; } PluginManagerWidget + Install New Plugin... Neues Plug-in installieren... + Open Plugin to install Plug-in zum Installieren öffnen + Plugins (*.so *.dll) Plug-ins (*.so *.dll) @@ -8623,46 +10861,57 @@ p, li { white-space: pre-wrap; } PluginsPage + Loaded plugins Geladene Plug-ins + Authorize all plugins Alle Plug-ins erlauben + Plugin look-up directories Plug-in Verzeichnis + Loading error. Fehler beim Laden. + Missing symbol. Wrong version? Fehlendes Symbol. Falsche Version? + No plugin object Kein Plug-in Objekt + Plugins is loaded. Plug-in ist geladen. + Unknown status. Unbekannter Status. + Title unavailable Titel nicht verfügbar + Description unavailable Beschreibung nicht verfügbar + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -8672,22 +10921,27 @@ schützt dich aber eine Überprüfung des Prüfsumme vor schädlichem Verhalten von Plug-ins. + Plugins Plug-ins + Hash rejected. Enable it manually and restart, if you need. Hash zurückgewiesen. Bitte manuell anwählen und, falls nötig, neu starten. + No API number supplied. Please read plugin development manual. Keine API-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. + No SVN number supplied. Please read plugin development manual. Keine SVN-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. + Unknown version Unbekannte Version @@ -8695,6 +10949,7 @@ schädlichem Verhalten von Plug-ins. PopularityDefs + Popularity Beliebtheit @@ -8702,14 +10957,17 @@ schädlichem Verhalten von Plug-ins. PopupChatDialog + Clear offline messages Offline-Nachrichten entfernen + Hide Avatar Avatar verstecken + Show Avatar Avatar anzeigen @@ -8717,26 +10975,36 @@ schädlichem Verhalten von Plug-ins. PopupChatWindow + Avatar Avatar + Set your Avatar Picture Wähle dein Avatar Bild + + Dock tab Tab andocken + + Undock tab Tab abdocken + + Set Chat Window Color Farbe des Chatfensters setzen + + Set window on top Immer im Vordergrund @@ -8744,54 +11012,67 @@ schädlichem Verhalten von Plug-ins. PostedComments + Form Formular + Hot Hot + New Neu + Top Anfang + Today Heute + Yesterday Gestern + This Week diese Woche + This Month diesen Monat + This Year dieses Jahr + Refresh Aktualisieren + Showing 1-100 Zeige 1–100 + Prev Vorheriges + Next Nächstes @@ -8799,38 +11080,47 @@ schädlichem Verhalten von Plug-ins. PostedItem + 1 1 + /\ /\ + score Punktzahl + \/ V + Title this is a very very very very loooooooooooooooonnnnnnnnnnnnnnnnng title dont you think? yes it is and should wrap around I hope Titel. Das ist ein sehr sehr sehr laaaaaaaaaaaaaaaaaannnnnnnnnnger Titel, nicht wahr? Ja, und er sollte umgebrochen werden. + Date Datum + From Von + Site Site + View Comments Kommentare anzeigen @@ -8838,122 +11128,152 @@ schädlichem Verhalten von Plug-ins. PostedListDialog + Form Formular + Hot Hot + New Neu + Top Anfang + Today Heute + Yesterday Gestern + This Week diese Woche + This Month diesen Monat + This Year dieses Jahr + New Link Group Neue Linkgruppe + Submit Post Beitrag absenden + Refresh Aktualisieren + Showing 1-100 Zeige 1–100 + Prev Vorheriges + Next Nächstes + Your Topics Deine Themen + Subscribed Topics Abonnierte Themen + Popular Topics Beliebte Themen + Other Topics Andere Themen + Subscribe to Forum Forum abonnieren + Unsubscribe to Forum Forum abbestellen + New Forum Neues Forum + Show Forum Details Forendetails anzeigen + Edit Forum Details Forendetails bearbeiten + Share Forum Veröffentlichungsschlüssel verteilen + Restore Publish Rights for Forum Veröffentlichungsrechte für das Forum wiederherstellen + Copy RetroShare Link RetroShare-Link kopieren + Mark all as read Alle als gelesen markieren + Mark all as unread Alle als ungelesen markieren + AUTHD AUTHD @@ -8961,109 +11281,262 @@ schädlichem Verhalten von Plug-ins. PrintPreview + RetroShare Message - Print Preview RetroShare-Nachricht - Druckvorschau + Print Drucken + &Print... &Drucken... + Page Setup... Seiteneinstellung... + Zoom In Hereinzoomen + Zoom Out Herauszoomen + &Close S&chliessen + + ProfileManager + + + + Profile Manager + Profil-Manager + + + + Generate New Identity + Neue Identität generieren + + + + Import new identity + Eine Identität importieren + + + + Export selected identity + Ausgewählte Identität exportieren + + + + Identities + Identitäten + + + + Name + Name + + + + Email + E-Mail + + + + GID + + + + + You can manage here your profiles, import, export your profiles or generate one . + + + + + + + Export Identity + Identität exportieren + + + + + RetroShare Identity files (*.asc) + RetroShare-Identitätsdateien (*.asc) + + + + Identity saved + Identität gespeichert + + + + Your identity was successfully saved +It is encrypted + +You can now copy it to another computer +and use the import button to load it + Deine Identität wurde erfolgreich gespeichert +Sie ist verschlüsselt + +Du kannst die Identität nun auf einen anderen Computer kopieren +und den Import zum Laden verwenden + + + + Identity not saved + Identität nicht gespeichert + + + + Your identity was not saved. An error occured. + Deine Identität wurde nicht gespeichert. Ein Fehler ist aufgetreten. + + + + Identity not loaded + Identität nicht geladen + + + + Your identity was not loaded properly: + Deine Identität wurde nicht korrekt geladen: + + + + New identity imported + Neue Identität importiert + + + + Your identity was imported successfuly: + Deine Identität wurde erfolgreich importiert: + + + + You can use it now to create a new location. + Du kannst sie jetzt benutzen, um einen neuen Ort anzulegen. + + + + Select Trusted Friend + Wähle vertrauten Freund + + + + Certificates (*.pqi *.pem) + Zertifikate (*.pqi *.pem) + + ProfileWidget + + Edit Personal message Statusnachricht ändern + Copy Certificate Zertifikat kopieren + + RetroShare RetroShare + Sorry, create certificate failed Zertifikat-Datei konnte nicht erstellt werden + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way Dein Zertifikat ist in die Zwischenablage kopiert worden. Du kannst es per E-Mail oder auf andere Weise an deinen Freund senden. + Profile Manager Profil-Manager + Public Information Öffentliche Information + Name: Name: + Location: Ort: + Peer ID: Nachbar-ID: + Other Information Andere Informationen + Number of Friends: Zahl der Freunde: + Version: Version: + Online since: Online seit: + My Address Meine Adresse + Local Address: Lokale Adresse: + External Address: Externe Adresse: + Dynamic DNS: Dynamisches DNS: + Addresses list Adressliste @@ -9071,46 +11544,61 @@ schädlichem Verhalten von Plug-ins. PulseAddDialog + Post From: Beitrag von: + + Account 1 Konto 1 + + Account 2 Konto 2 + + Account 3 Konto 3 + + Add to Pulse Zu Puls hinzufügen + filter filtern + URL Adder URL-Hinzufüger + Display As Anzeigen als + URL URL + Cancel Abbrechen + Post Pulse to Wire Puls an Wire senden @@ -9118,14 +11606,19 @@ schädlichem Verhalten von Plug-ins. PulseItem + From Von + Date Datum + + + ... @@ -9133,22 +11626,30 @@ schädlichem Verhalten von Plug-ins. QObject + + RetroShare RetroShare + Inititialize failed. Wrong or missing installation of gpg. Initialisierung fehlgeschlagen. GPG fehlt oder es ist eine falsche Version installiert. + + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. Ein unerwarteter Fehler ist aufgetreten. Bitte melde 'RsInit::InitRetroShare unexpected return code %1'. + + Multiple instances Mehrere Instanzen + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: @@ -9157,6 +11658,7 @@ Lockdatei: + An unexpected error occurred when Retrosharetried to acquire the single instance lock Lock file: @@ -9165,14 +11667,17 @@ Lockdatei: + Login Failure Loginfehler + Maybe password is wrong Vielleicht ist das Passwort falsch + Click to add this RetroShare cert to your GPG keyring and open the Make Friend Wizard. @@ -9180,206 +11685,256 @@ and open the Make Friend Wizard. + Add file Datei hinzufügen + Add files Dateien hinzufügen + Add friend Freund hinzufügen + Add friends Freunde hinzufügen + Do you want to process the link ? Möchtest du den Link verarbeiten ? + Do you want to process %1 links ? Möchtest du %1 Links verarbeiten ? + Confirmation Bestätigung + %1 of %2 RetroShare link processed. %1 von %2 RetroShare Link verarbeitet. + %1 of %2 RetroShare links processed. %1 von %2 RetroShare Links verarbeitet. + File added Datei hinzugefügt + Files added Dateien hinzugefügt + File exist Datei vorhanden + Files exist Dateien vorhanden + Friend added Freund hinzugefügt + Friends added Freunde hinzugefügt + Friend exist Freund vorhanden + Friends exist Freunde vorhanden + Friend not added Freund nicht hinzugefügt + Friends not added Freunde nicht hinzugefügt + Friend not found Freund nicht gefunden + Friends not found Freunde nicht gefunden + Forum not found Forum nicht gefunden + Forums not found Foren nicht gefunden + Forum message not found Beitrag nicht gefunden + Forum messages not found Beiträge nicht gefunden + Channel not found Kanal nicht gefunden + Channels not found Kanäle nicht gefunden + Channel message not found Kanalbeitrag nicht gefunden + Channel messages not found Kanalbeiträge nicht gefunden + Receipient not accepted Empfänger nicht akzeptiert + Receipients not accepted Empfänger nicht akzeptiert + Unkown receipient Unbekannter Empfänger + Unkown receipients Unbekannte Empfänger + Malformed links Unbekannte Links + Invalid links Ungültige Links + Result Ergebnis + Unable to make path Konnte Verzeichnis nicht erstellen + Unable to make path: Konnte Verzeichnis nicht erstellen: + Treatment of collection file has failed Die Kollektion konnte nicht verarbeitet werden + The collection file %1 could not be openned. Reported error is: %2 Die Kollektion %1 konnte nicht geöffnet werden. Fehlermeldung: %2 + Deny friend Freund blockieren + Make friend Freund hinzufügen + Peer details Nachbardetails + File Request canceled Dateianforderung abgebrochen + The following has not been added to your download list, because you already have it: Die folgende Datei wurde nicht zur Downloadliste hinzugefügt, da du diese schon hast: + Start with a RetroShare link is only supported for Windows. Der Start mit einem RetroShare-Link wird nur unter Windows unterstützt. + You appear to have locations associated to DSA keys: Du scheinst Orte zu besitzen, die mit DSA-Schlüsseln verknüpft sind: + DSA keys are not yet supported by this version of RetroShare. All these locations will be unusable. We're very sorry for that. DSA-Schlüssel werden von dieser Version von RetroShare noch nicht unterstützt. Alle diese Orte können nicht benutzt werden. Das tut uns sehr leid. + This version of RetroShare is using OpenPGP-SDK. As a side effect, it's not using the system shared PGP keyring, but has it's own keyring shared by all RetroShare instances. <br><br>You do not appear to have such a keyring, although GPG keys are mentionned by existing RetroShare accounts, probably because you just changed to this new version of the software. Diese Version von RetroShare benutzt das OpenPGP-SDK. Der Schlüsselring von GPG4Win wird nicht mehr verwendet, sondern ein eigener Schlüsselring für alle laufenden Instanzen. <br><br>Du scheinst keinen solchen Schlüsselring zu besitzen, obwohl Schlüssel von existierenden RetroShare-Accounts benötigt werden. Vielleicht hast du auch gerade zu dieser Version gewechselt. + Choose between:<br><ul><li><b>Ok</b> to copy the existing keyring from gnupg (safest bet), or </li><li><b>Close without saving</b> to start fresh with an empty keyring (you will be asked to create a new PGP key to work with RetroShare, or import a previously saved pgp keypair). </li><li><b>Cancel</b> to quit and forge a keyring by yourself (needs some PGP skills)</li></ul> Wähle zwischen:<br><ul><li><b>Ok</b> um den existierenden Schlüsselring von GnuPG zu kopieren (sicherste Wahl), oder</li><li><b>Verwerfen</b> um mit einem neuen Schlüsselring zu starten (RetroShare legt dir einen neuen Schlüssel an oder du kannst einen vorher gespeicherten Schlüssel verwenden).</li><li><b>Abbrechen</b> um zu beenden und den Schlüsselring selbst zu kopieren (Du benötigst einige PGP-Kenntnisse</li></ul> @@ -9387,19 +11942,21 @@ Fehlermeldung: %2 QuickStartWizard + Quick Start Wizard Schnellstart-Assistent + <!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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Welcome to 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-size:8pt;"></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-size:8pt;">This QuickStart wizard can help you configure your RetroShare in a few simple steps.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></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-size:8pt;">If you're a more advanced user, you can access the full range of RetroShare's options via the ToolBar. Click Exit to close the wizard at any time.</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-size:8pt;">If you're a more advanced user, you can access the full range of RetroShare's options via the ToolBar. Click Exit to close the wizard at any time.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></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-size:8pt;">This wizard will assist you to:</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> @@ -9427,77 +11984,102 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> beim Start von RetroShare.</span></p></body></html> + + + Next > Weiter > + + + + Exit Beenden + For best performance, RetroShare needs to know a little about your connection to the internet. Zur Leistungsoptimierung muss RetroShare ein wenig über deine Internetverbindung wissen. + Choose your download speed limit: Wähle deine maximale Downloadgeschwindigkeit: + + KB/s KiB/s + Choose your upload speed limit: Wähle deine maximale Uploadgeschwindigkeit: + Connection : Verbindung: + Automatic (UPnP) Automatisch (UPnP) + Firewalled Firewall + Manually forwarded port Manuell weitergeleiteter Port + Discovery : Entdeckung: + Public: DHT & Discovery Öffentlich: DHT & Discovery + Private: Discovery Only Privat: nur Discovery + Inverted: DHT Only Umgekehrt: nur DHT + Dark Net: None Darknet: keins + + + < Back < Zurück + <!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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of shared folders . You can add and remove folders using the button on the left. When you add a new folder, intially all file in that folder are shared.</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:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory:</span><span style=" font-size:8pt;"> </span></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">Browsable by friends</span><span style=" font-family:'Sans'; font-size:8pt;">: files are browsable from your direct friends.</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:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory:</span><span style=" font-size:8pt;"> </span></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">Browsable by friends</span><span style=" font-family:'Sans'; font-size:8pt;">: files are browsable from your direct friends.</span></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:8pt; font-weight:600;">Anonymously shared</span><span style=" font-family:'Sans'; font-size:8pt;">: files can be downloaded by anybody through anonymous tunnels.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -9510,36 +12092,43 @@ 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:'Sans'; font-size:8pt; font-weight:600;">Netzwerkweit</span><span style=" font-family:'Sans'; font-size:8pt;">: Dateien können von jedem über anonyme Tunnel heruntergeladen werden.</span></p></body></html> + Directory Ordner + Network Wide Netzwerkweit + Browseable Durchsuchbar + Add Hinzufügen + Remove Entfernen + Automatically share incoming directory (Recommended) Eingehende Ordner automatisch freigeben (Empfohlen) + <!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:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<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:'MS Shell Dlg 2'; font-size:8pt;"></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:'MS Shell Dlg 2'; font-size:8pt;"></p> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<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:'MS Shell Dlg 2'; font-size:8pt;"></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:'MS Shell Dlg 2'; font-size:8pt;"></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:'MS Shell Dlg 2'; font-size:8pt;">Enjoy using RetroShare!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -9550,11 +12139,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt;">Viel Spaß beim Benutzen von RetroShare!</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Just one more step! You're almost done configuring RetroShare to work with your computer.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Just one more step! You're almost done configuring RetroShare to work with your computer.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></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-size:8pt;">These settings configure how and when RetroShare starts .</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> @@ -9568,38 +12158,47 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p></body></html> + Do not show a message when Closing RetroShare Keine Nachricht beim Beenden von RetroShare anzeigen + Start Minimized Minimiert starten + Start RetroShare when my System Starts. RetroShare mit dem System starten. + Start minimized on system start Beim Starten mit dem System minimieren + Finish Fertigstellen + Select A Folder To Share Wähle einen Ordner zum Freigeben + Shared Directory Added! Ordner wurde hinzugefügt! + Do you really want to stop sharing this directory ? Möchtest du die Freigabe dieses Ordners wirklich aufheben ? + Warning! Warnung! @@ -9607,6 +12206,7 @@ p, li { white-space: pre-wrap; } RSettingsWin + Error Saving Configuration on page Fehler beim Speichern der Konfiguration auf der Seite @@ -9614,14 +12214,17 @@ p, li { white-space: pre-wrap; } RatesStatus + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) <strong>Herunter:</strong> 0.00 KiB/s | <strong>Hoch:</strong> 0.00 KiB/s + Down Herunter + Up Hoch @@ -9629,66 +12232,84 @@ p, li { white-space: pre-wrap; } RelayPage + Enable Relay Connections Relay-Verbindungen aktivieren + Use Relay Servers Relay-Server benutzen + Relay options Relay-Optionen + Number Anzahl + Bandwidth per link Bandbreite pro Verbindung + Total Bandwidth Bandbreite gesamt + Friends Freunde + + + kB/s KiB/s + Friends of Friends Freunde von Freunden + General Allgemein + Total: Gesamt: + Relay Server Setup Relay-Server Einstellung + Add Server Server hinzufügen + Server DHT Key Server-DHT-Schlüssel + Remove Server Server entfernen + Relay Relay @@ -9696,18 +12317,22 @@ p, li { white-space: pre-wrap; } RetroshareDirModel + Anonymous Anonym + Anonymous and browsable by friends Anonym und Durchsuchbar von Freunden + Only browsable by friends Nur Durchsuchbar von Freunden + NEW NEU @@ -9715,46 +12340,57 @@ p, li { white-space: pre-wrap; } RsCollectionDialog + Collection Kollektion + File name : Dateiname: + Total size : Größe: + Selected files: Ausgewählt: + Select all Alle auswählen + Deselect all Keine auswählen + Cancel Abbrechen + Download! Herunterladen + File Datei + Size Größe + Hash Prüfsumme @@ -9762,77 +12398,106 @@ p, li { white-space: pre-wrap; } RsCollectionFile + Cannot open file %1 Kann Datei %1 nicht öffnen + Error parsing xml file Fehler beim Parsen des XML + Open collection file Kollektion öffnen + + Collection files Kollektion + Create collection file Kollektion erstellen + + RsHtml + + + Image is oversized for transmission. +Reducing image to %1x%2 pixels? + Bild ist zu groß zum Übertragen. +Bild auf %1x%2 Pixel reduzieren? + + Rshare + Resets ALL stored RetroShare settings. Setzt alle RetroShare Einstellungen zurück. + Sets the directory RetroShare uses for data files. Setzt das Verzeichnis, welches RetroShare für Daten benutzt. + Sets the name and location of RetroShare's logfile. Setzt den Ort und Namen der Logdatei. + Sets the verbosity of RetroShare's logging. Setzt die Ausgaben der RetroShare Logdatei. + Sets RetroShare's interface style. Setzt den RetroShare Interface Stil. + Sets RetroShare's interface stylesheets. Setzt das RetroShare Stylesheet. + Sets RetroShare's language. Setzt die Sprache. + RetroShare Usage Information RetroShare-Nutzungsinformationen + Invalid language code specified: Ungültige Sprach-Codierung ausgewählt: + Invalid GUI style specified: Ungültigen Stil der Benutzeroberfläche ausgewählt: + Invalid log level specified: Ungültiges Loglevel spezifiziert: + Unable to open log file '%1': %2 Kann Logdatei nicht öffnen '%1': %2 + built-in eingebaut @@ -9840,18 +12505,22 @@ p, li { white-space: pre-wrap; } SFListDelegate + B B + KB KiB + MB MiB + GB GiB @@ -9859,196 +12528,249 @@ p, li { white-space: pre-wrap; } SearchDialog + Any Alle + Archive Archiv + Audio Audio + CD-Image CD-Abbild + Document Dokument + Picture Bilder + Program Programme + Video Video + Directory Ordner + Start Search Suche starten + Search Suchen + Advanced Search Erweiterte Suche + Advanced Erweitert + KeyWords Schlüsselwörter + Results Ergebnisse + Search Id Such-ID + Filter Search Result Suchergebnis filtern + File Name Dateiname + File Size Dateigröße + Filename Dateiname + Size Größe + Sources Quellen + Type Typ + Age Alter + Hash Prüfsumme + Close all Search Resullts Alle Suchergebnisse schließen + Close All Search Results Alle Suchergebnisse schließen + Download Selected Auswahl herunterladen + + Download Herunterladen + Include files from your own file list in the search result Eigene Dateien in die Suchergebnisse einschließen + Include own files Eigene Dateien einschließen + Search inside "browsable" files of your friends Freigegebene Dateien von Freunden durchsuchen + Search in friends lists In der Freundesliste suchen + Multi-hop search at distance 6 in the network (always reports available files) Multi-hop Suche mit einer Distanz von 6, (gibt immer verfügbare Dateien zurück) + F2F search F2F-Suche + Limit number of results to : Anzahl der Resultate begrenzen auf: + Enter a keyword here (at least 3 char long) Gib einen Suchbegriff ein (min. 3 Zeichen) + + Copy RetroShare Link RetroShare-Link kopieren + Send RetroShare Link RetroShare-Link senden + Download Notice Download + Skipping Local Files Überspringe lokale Dateien + + Sorry Entschuldigung + + This function is not yet implemented. Diese Funktion ist noch nicht eingebaut. + Search again Erneut suchen + Remove Entfernen + Remove All Alle entfernen + + Folder Ordner + New RetroShare Link(s) Neu(e) RetroShare-Link(s) @@ -10056,114 +12778,147 @@ p, li { white-space: pre-wrap; } SecurityItem + + Expand Erweitern + Remove Item Element entfernen + Peer details Nachbardetails + Deny friend Freund blockieren + Write a quick Message Kurznachricht schreiben + Chat Chat + Start Chat Chat starten + Cancel Abbrechen + Send Senden + Name: Name: + Peer ID: Nachbar-ID: + Trust: Vertrauen: + Location: Ort: + IP Address: IP-Adresse: + Connection Method: Verbindungsmethode: + Status: Status: + Write Message Nachricht schreiben + Connect Attempt Verbindungsversuch + Not Yet Friends Noch keine Freunde + Unknown (Incoming) Connect Attempt Unbekannter (eingehender) Verbindungsversuch + Unknown (Outgoing) Connect Attempt Unbekannter (ausgehender) Verbindungsversuch + Unknown Security Issue Unbekanntes Sicherheitsproblem + + + + + Unknown Peer Unbekannter Nachbar + Hide Verbergen + Do you want to remove this Friend? Möchtest du diesen Freund entfernen? + Quick Message Kurznachricht + Accept Friend Request Freundschaftsanfrage bestätigen + wants to be friend with you on RetroShare möchte mit dir in RetroShare befreundet sein @@ -10171,24 +12926,30 @@ p, li { white-space: pre-wrap; } ServerPage + + Network Configuration Netzwerkkonfiguration + Automatic (Upnp) Automatisch (UPnP) + Firewalled Mit Firewall + Manual Forwarded Port Portweiterleitung von Hand + The DHT allows you to answer connection -requests from your friends using BitTorrent's DHT. +requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. The Discovery service sends locations and GPG @@ -10203,77 +12964,98 @@ Der Discovery-Dienst sendet die Orte und PGP-Schlüssel deiner vertrauenswürdig Die Freundschaft wird nicht automatisch erstellt. Beide Freunde müssen sich vertrauen um eine Verbindung zu erstellen. + Public: DHT & Discovery Öffentlich: DHT & Discovery + Private: Discovery Only Privat: nur Discovery + Inverted: DHT Only Umgekehrt: nur DHT + Dark Net: None Darknet: keine + Transfer Rates Übertragungsgeschwindigkeiten + Download (KB/s) Download (KiB/s) + + kB/s KiB/s + Upload (KB/s) Upload (KiB/s) + If you unckeck this, RetroShare will not use tunnel connection between peers that are firewalled and cannot connect directly. This is independant from F2F routing (turtle router). Wenn du dies abwählst, wird RetroShare keinen Tunnel zwischen Nachbarn aufbauen, die sich aufgrund einer Firewall nicht direkt miteinander verbinden können. Dies ist unabhängig vom "Turtle router" F2F-Routing-Prinzip. + Allow Tunnel Connection Erlaube Tunnelverbindungen + Local Address Lokale Adresse + External Address Externe Adresse + Dynamic DNS Dynamisches DNS + + Port: Port: + + Acceptable ports range from 1024 to 65535. Ports below 1024 are reserved by your system. Verwendbare Ports liegen zwischen 1024 und 65535. Ports unter 1024 sind für das System reserviert. + Show Discovery information in statusbar Discovery-Informationen in der Statuszeile anzeigen + IP Service IP-Dienst + If you unckeck this, RetroShare can only determine your IP when you connect to somebody. Leaving this checked helps -connecting when you have few friends. It also helps if you're +connecting when you have few friends. It also helps if you're behind a firewall or a VPN. Wenn du dies abwählst, kann RetroShare nur deine IP herausfinden, wenn du mit jemandem verbunden bist. Wenn du dies anwählst, @@ -10281,20 +13063,23 @@ wird es helfen Verbindungen aufzubauen, trotz geringer Anzahl von Freunden. Es hilft auch, wenn du dich hinter einer Firewall/VPN befindest. + Allow RetroShare to ask my ip to these websites: Erlaube RetroShare folgende Webseiten nach deiner IP zu fragen: + Turtle router Turtle-Router + <!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:'Ubuntu'; font-size:11pt; font-weight:600;">Warning</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:'Ubuntu'; font-size:11pt; font-weight:600;"></p> +</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:'Ubuntu'; font-size:11pt; font-weight:600;">Warning</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:'Ubuntu'; font-size:11pt; font-weight:600;"></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:'Ubuntu'; font-size:11pt; font-weight:600;"> </span><span style=" font-family:'Ubuntu'; font-size:11pt;">This tab contains hard-core parameters which are unlikely to need modification. Dont change them unless you really know what you're doing. </span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -10305,10 +13090,12 @@ 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:'Ubuntu'; font-size:11pt; font-weight:600;"> </span><span style=" font-family:'Ubuntu'; font-size:11pt;">Es ist sehr unwahrscheinlich, dass die in diesem Tab enthaltenen Parameter angepasst werden müssen. Bitte nicht ändern, außer du weißt wirklich was du tust. </span></p></body></html> + Max average tunnel request forwarded per second: Maximale durchschnittliche Weiterleitung von Tunnelanfragen pro Sekunde: + This value controls how many tunnel request your peer can forward per second. If you have a large internet bandwidth, you may raise this up to 30-40, to allow @@ -10325,6 +13112,7 @@ viele kleine Pakete die deine eigenen Dateitransfers merklich verlangsamen könn Voreinstellung ist 20. + Server Server @@ -10332,14 +13120,17 @@ Voreinstellung ist 20. Settings + Options Optionen + Cancel Abbrechen + OK OK @@ -10347,54 +13138,68 @@ Voreinstellung ist 20. ShareDialog + RetroShare Share Folder RetroShare Ordner freigeben + + Share Folder Ordner + Local Path Lokaler Pfad + Browse Durchsuchen + Virtual Folder Virtueller Ordner + Share Flags Freigabe + Browseable by Friends Durchsuchbar von Freunden + Browsable Durchsuchbar + Anonymous shared Network Wide Anonym im ganzen Netzwerk freigeben + Network Wide Netzwerkweit + OK OK + Cancel Abbrechen + Select A Folder To Share Wähle einen Ordner zum Freigeben aus @@ -10402,34 +13207,43 @@ Voreinstellung ist 20. ShareKey + + Share Channel Veröffentlichungsschlüssel verteilen + check peers you would like to share private publish key with Wähle die Nachbarn, an die du den privaten Schlüssel verteilen möchtest + Share for Friend Für Freund verteilen + Share Verteilen + Cancel Abbrechen + Contacts: Kontakte: + Please select at least one peer Bitte wähle mindestens einen Nachbarn + Select the Friends with which you want to Share your Channel. Wähle die Freunde, mit denen du deinen Kanal teilen möchtest. @@ -10437,22 +13251,25 @@ Voreinstellung ist 20. ShareManager + RetroShare Share Manager RetroShare-Freigabemanager + Shared Folder Manager Ordnerfreigabe-Manager + <!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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of shared folders. You can add and remove folders using the buttons at the bottom.</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-size:8pt;">When you add a new folder, intially all files in that folder are shared.</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:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory:</span><span style=" font-size:8pt;"> </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:'Sans'; font-size:8pt; font-weight:600;">Browsable</span><span style=" font-family:'Sans'; font-size:8pt;">: files are browsable from your direct friends.</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:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory:</span><span style=" font-size:8pt;"> </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:'Sans'; font-size:8pt; font-weight:600;">Browsable</span><span style=" font-family:'Sans'; font-size:8pt;">: files are browsable from your direct friends.</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:'Sans'; font-size:8pt; font-weight:600;">Network Wide</span><span style=" font-family:'Sans'; font-size:8pt;">: files can be downloaded by anybody through anonymous tunnels.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -10465,78 +13282,100 @@ 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:'Sans'; font-size:8pt; font-weight:600;">Netzwerkweit</span><span style=" font-family:'Sans'; font-size:8pt;">: Dateien können von jedem über anonyme Tunnel heruntergeladen werden.</span></p></body></html> + Directory Ordner + Virtual Folder Virtueller Ordner + Network Wide Netzwerkweit + Browsable Durchsuchbar + Add a Share Directory Freigabe hinzufügen + Add Hinzufügen + Stop sharing selected Directory Freigabe entfernen + + Remove Entfernen + Close Schließen + Edit selected Shared Directory Freigabe bearbeiten + + Edit Bearbeiten + If checked, the share is anonymously shared to anybody. Wenn aktiviert, dann ist dieser Ordner anonym freigegeben. + If checked, the share is browsable by your friends. Wenn aktiviert, dann ist dieser Ordner von deinen Freunden durchsuchbar. + Warning! Warnung! + Do you really want to stop sharing this directory ? Möchtest du die Freigabe dieses Ordners wirklich aufheben ? + + Drop file error. Dateifehler bei Drag'n'Drop. + File can't be dropped, only directories are accepted. Dateien können nicht für Drag'n'Drop genutzt werden. Nur Ordner werden akzeptiert. + Directory not found or directory name not accepted. Ordner nicht gefunden oder Ordnername nicht akzeptiert. + Share Manager Freigabemanager @@ -10544,142 +13383,184 @@ p, li { white-space: pre-wrap; } SharedFilesDialog + Splitted View Geteiltes Fenster + Friends Folders Ordner der Freunde + My Folders Meine Ordner + All Alle + One day old Einen Tag alt + One Week old Eine Woche alt + One month old Einen Monat alt + Search files Dateien suchen + Start Search Suche starten + Reset Zurücksetzen + Tree view Baumansicht + Flat view Listenansicht + Download selected Auswahl herunterladen + + Download Herunterladen + check files Prüfe Dateien + Copy retroshare Links to Clipboard RetroShare-Links in die Zwischenablage kopieren + Copy retroshare Links to Clipboard (HTML) RetroShare Links in die Zwischenablage kopieren (HTML) + Send retroshare Links RetroShare-Links senden + Send retroshare Links to Cloud RetroShare-Links an die Verknüpfungs-Wolke senden + Add Links to Cloud Die Links zur Verknüpfungs-Wolke hinzufügen + Create collection file Kollektion erstellen + + Open File Datei öffnen + Open Folder Ordner öffnen + Checking... Überprüfe... + Check files Dateien überprüfen + Copy retroshare Link RetroShare-Link kopieren + Send retroshare Link RetroShare-Link senden + + Recommend in a message to Empfehle in einer Nachricht an + + RetroShare Link RetroShare-Link + + + + Recommendation(s) Empfehlung(en) + Set command for opening this file Setze eine Regel zum Öffnen dieser Datei + <strong>My Shared Files</strong> <strong>Meine Dateien</strong> + <strong>Friends Files</strong> <strong>Dateien von Freunden</strong> + <strong>Files</strong> <strong>Dateien</strong> + Files Dateien @@ -10687,46 +13568,57 @@ p, li { white-space: pre-wrap; } SoundPage + Event: Ereignis: + Filename: Dateiname: + Browse Durchsuchen + Event Ereignis + Filename Dateiname + Friend Freund + go Online Online + Chatmessage Chatnachricht + New Msg Neue Nachricht + Open File Datei öffnen + Sound Ton @@ -10734,10 +13626,12 @@ p, li { white-space: pre-wrap; } SoundStatus + Sound on Ton an + Sound off Ton aus @@ -10745,14 +13639,17 @@ p, li { white-space: pre-wrap; } SplashScreen + Load profile Profil laden + Load configuration Konfiguration laden + Create interface Oberfläche erstellen @@ -10760,10 +13657,12 @@ p, li { white-space: pre-wrap; } StartDialog + RetroShare RetroShare + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. @@ -10772,10 +13671,11 @@ zum Hinzufügen von Orten zu deinem vorhandenen Profil. Die aktuellen Identitäten/Orte werden nicht geändert. + <!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:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Sans'; font-size:10pt; 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;"><a href="Create new Profile..."><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; text-decoration: underline; color:#0000ff;">Manage profiles and locations...</span></a></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -10784,34 +13684,45 @@ 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="Create new Profile..."><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; text-decoration: underline; color:#0000ff;">Verwalte Profile und Orte...</span></a></p></body></html> + Log In Anmelden + Name (GPG Id) - location: Name (PGP-ID) - Ort: + Remember Password Passwort speichern + + Multiple instances Mehrere Instanzen + Login Failure Anmeldefehler + Maybe password is wrong Vielleicht ist das Passwort falsch + + + Warning Warnung + The passwd to your SSL certificate (your location) will be stored encrypted in your Gnome Keyring. Your PGP passwd will not be stored. @@ -10824,6 +13735,7 @@ Dein PGP-Passwort wird nicht gespeichert. Du kannst die Auswahl in den Optionen zurücksetzen. + The passwd to your SSL certificate (your location) will be stored encrypted in the keys/help.dta file. This is not secure. Your PGP passwd will not be stored. @@ -10836,6 +13748,7 @@ Dein PGP-Passwort wird nicht gespeichert. Du kannst die Auswahl in den Optionen zurücksetzen. + The passwd to your SSL certificate (your location) will be stored encrypted in your Keychain. Your PGP passwd will not be stored. @@ -10848,6 +13761,7 @@ Dein PGP-Passwort wird nicht gespeichert. Du kannst die Auswahl in den Optionen zurücksetzen. + Another RetroShare using the same profile is already running on your system. Please close that instance first, or choose another profile lock file: @@ -10856,6 +13770,7 @@ Lockdatei: + An unexpected error occurred when Retroshare tried to acquire the single instance lock lock file: @@ -10864,14 +13779,17 @@ Lockdatei: + Login Login + Load Person Failure Personen-Ladefehler + Missing PGP Certificate Fehlendes PGP-Zertifikat @@ -10879,90 +13797,113 @@ Lockdatei: StatusDefs + + Offline Offline + Away Abwesend + Busy Beschäftigt + Online Online + Idle Untätig + Friend is offline Freund ist offline + Friend is away Freund ist abwesend + Friend is busy Freund ist beschäftigt + Friend is online Freund ist online + Friend is idle Freund ist untätig + Connected Verbunden + Unreachable Unerreichbar + Available Verfügbar + Neighbour Nachbar + Trying tunnel connection Versuche Tunnelverbindung + Trying TCP Versuche TCP + Trying UDP Versuche UDP + Connected: TCP Verbunden: TCP + Connected: UDP Verbunden: UDP + Connected: Tunnel Verbunden: Tunnel + Connected: Unknown Verbunden: Unbekannt + DHT: Contact DHT: Kontakt @@ -10970,18 +13911,21 @@ Lockdatei: StatusMessage + Personal message Persönliche Nachricht + Status message Statusnachricht + <!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;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">Personal message</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -10990,10 +13934,11 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">Statusnachricht </span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; color:#666666;">Enter your Status message</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -11002,10 +13947,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; color:#666666;">Bitte gib deine Statusnachricht ein</span></p></body></html> + OK OK + Cancel Abbrechen @@ -11013,34 +13960,44 @@ p, li { white-space: pre-wrap; } StyleDialog + + Define Style Stil definieren + + Choose color Farbe wählen + Color 2 Farbe 2 + Color 1 Farbe 1 + Style Stil + None Kein + Solid Farbe + Gradient Farbverlauf @@ -11049,76 +14006,97 @@ p, li { white-space: pre-wrap; } SubDestItem Delete FeedItem - Nachricht löschen + Nachricht löschen SubFileItem + %p Kb %p KiB + Cancel Download Download abbrechen + Download File Datei herunterladen + Download Herunterladen + + + Play File Datei abspielen + Play Abspielen + Save File Datei speichern + + ERROR FEHLER + EXTRA EXTRA + REMOTE VERFÜGBAR + DOWNLOAD DOWNLOAD + LOCAL LOKAL + UPLOAD UPLOAD + + Remove Attachment Anhang entfernen + File %1 does not exist at location. Datei %1 existiert nicht. + File %1 is not completed. Datei %1 ist nicht komplett. + Save Channel File Datei speichern @@ -11126,6 +14104,7 @@ p, li { white-space: pre-wrap; } TBoard + Pause Pause @@ -11133,22 +14112,27 @@ p, li { white-space: pre-wrap; } TagDefs + Important Wichtig + Work Arbeit + Personal Persönlich + Todo Zu erledigen + Later Später @@ -11156,10 +14140,12 @@ p, li { white-space: pre-wrap; } TagsMenu + Remove All Tags Alle Schlagwörter entfernen + New tag ... Neues Schlagwort... @@ -11167,26 +14153,32 @@ p, li { white-space: pre-wrap; } TransferPage + Transfer options Übertragungsoptionen + Maximum simultaneous downloads: Maximale gleichzeitige Downloads: + Slots reserved for non-cache transfers: Reservierte Slots für nicht Cache-Übertragung: + Default chunk strategy: Standard Blockstrategie: + Safety disk space limit : Sicherheitsgrenze Festplattenspeicher: + You can use this to force RetroShare to download your files rather than cache files for as many slots as requested. Setting that number to be equal to the queue size above will always prioritize your files @@ -11199,26 +14191,30 @@ als Cache-Dateien. Deine Dateien werden immer bevorzugt, wenn die Zahl gleich de Es wird jedoch empfohlen, mindestens einige Slots für Cache-Dateien freizulassen. + Streaming Streaming + Random Zufall + MB MiB + <!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:'Ubuntu'; font-size:11pt; 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:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transfering data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</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:'Sans'; font-size:8pt;"></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:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> -<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'Sans'; font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; 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:'Sans'; font-size:8pt; font-weight:600;">RetroShare</span><span style=" font-family:'Sans'; font-size:8pt;"> is capable of transfering data and search requests between peers that are not necessarily friends. This traffic however only transits through a connected list of friends and is anonymous.</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:'Sans'; font-size:8pt;"></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:'Sans'; font-size:8pt;">You can separately setup share flags for each shared directory in the shared files dialog to be:</span></p> +<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'Sans'; font-size:8pt;" style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Browsable by friends</span>: files are seen by your friends.</li> <li style=" font-family:'Sans'; font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonymously shared</span>: files are anonymously reachable through distant F2F tunnels.</li></ul></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -11232,294 +14228,409 @@ p, li { white-space: pre-wrap; } <li style=" font-family:'Sans'; font-size:8pt;" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Anonym freigegeben</span>: Dateien sind anonym durch F2F Tunnel erreichbar.</li></ul></body></html> + Transfer Übertragung + + TransferUserNotify + + + Download completed + Download fertig + + + + You have %1 completed downloads + + + + + You have %1 completed download + + + + + %1 completed downloads + + + + + %1 completed download + + + TransfersDialog + Open Collection Kollektion öffnen + Show cache transfers Cache-Übertragungen anzeigen + Uploads Uploads + Selected transfer Transfer + Done Fertig + Active Aktiv + Outstanding Ausstehend + + Name i.e: file name Name + + Size i.e: file size Größe + Completed Fertiggestellt + Speed i.e: Download speed Geschwindigkeit + Progress / Availability i.e: % downloaded Fortschritt/Verfügbarkeit + Sources i.e: Sources Quellen + + Status Status + Speed / Queue position Geschwindigkeit/Warteschlangenposition + Remaining Verbleibend + Download time i.e: Estimated Time of Arrival / Time left Restzeit + Core-ID Kern-ID + Peer i.e: user name Nachbar + Progress i.e: % uploaded Fortschritt + Speed i.e: upload speed Geschwindigkeit + Transferred Übertragen + Hash Prüfsumme + Router Statistics Routerstatistiken + Router Requests Routeranfragen + Pause Pause + Resume Fortsetzen + Force Check Überprüfung erzwingen + Cancel Abbrechen + Open Folder Ordner öffnen + Open File Datei öffnen + Preview File Vorschau + Details... Details... + Clear Completed Fertige ausblenden + Copy RetroShare Link RetroShare-Link kopieren + Paste RetroShare Link RetroShare-Link einfügen + Down Herunter + Up Hoch + Top Anfang + Bottom Ende + Streaming Streaming + + Slower Langsamer + + + Average Durchschnitt + + Faster Schneller + Random Zufall + Play Abspielen + Move in Queue... In Warteschlange verschieben... + Priority (Speed)... Priorität (Geschwindigkeit)... + Chunk strategy Blockstrategie + + + Failed Gescheitert + + + Okay OK + Transferring Übertrage + + + + Complete Vollständig + + Waiting Warte + Downloading Ladend + Queued In Warteschleife + Paused Pausiert + Checking... Überprüfe... + Unknown Unbekannt + version: Version: + Uploading Hochladend + Are you sure that you want to cancel and delete these files? Soll dieser Download wirklich abgebrochen und gelöscht werden? + RetroShare RetroShare + Details: Details: + + + File preview Dateivorschau + File %1 preview failed. Datei %1 Vorschau fehlgeschlagen. + Open Transfer Übertragung öffnen + File %1 is not completed. If it is a media file, try to preview it. Datei %1 ist nicht komplett. Wenn es eine Mediadatei ist dann versuche "Vorschau". + If the hash of the downloaded data does not correspond to the hash announced by the file source. The data is likely @@ -11541,18 +14652,22 @@ vergleichen und fehlerhafte Blöcke erneut herunterladen. Bitte habe etwas Geduld! + Needs checking Überprüfung erforderlich + Can't create link for file %1. Konnte Verknüpfung für Datei %1 nicht erstellen. + Click OK when program terminates! Drücke OK sobald das Programm beendet ist! + Downloads Downloads @@ -11560,50 +14675,64 @@ Bitte habe etwas Geduld! TreeStyle_RDM + My files Meine Dateien + + FILE DATEI + Files Dateien + File Datei + + DIR ORDNER + Friends Directories Dateien von Freunden + My Directories Meine Ordner + Size Größe + Age Alter + Friend Freund + Share Type Freigabetyp + What's new Was ist neu @@ -11611,62 +14740,79 @@ Bitte habe etwas Geduld! TrustView + Zoom : Zoom: + Update Update + + Showing: whole network Zeige: Ganzes Netzwerk + This table normaly auto-updates every 10 seconds. Diese Tabelle wird normalerweise alle 10 Sekunden neu geladen. + Self Selbst + Trust Vertrauen + is authenticated (one way) by ist (einseitig) authentifiziert von + Half Halb + authenticated himself authentifizierte sich selbst + authenticated each other authentifizierten sich einander + Full Voll + is authenticated by ist authentifiziert von + + peers, including him(her)self. Nachbarn, sich selbst eingeschlossen. + authenticated authentifiziert + Showing: peers connected to Zeige: Verbundene Nachbarn @@ -11674,30 +14820,44 @@ Bitte habe etwas Geduld! TurtleRouterDialog + + Search requests Suchanfragen + + Tunnel requests Tunnelanfragen + + + + + Unknown hashes Unbekannte Hashs + Tunnel id Tunnel ID + last transfer letzte Übertragung + Speed Geschwindigkeit + + Request id: %1 from [%2] %3 secs ago Anfrage ID: %1 von [%2] vor %3 Sekunden @@ -11705,10 +14865,12 @@ Bitte habe etwas Geduld! TurtleRouterDialogForm + Router Statistics Routerstatistiken + F2F router information F2F-Routerinformationen @@ -11716,22 +14878,27 @@ Bitte habe etwas Geduld! TurtleRouterStatistics + Router Statistics Routerstatistiken + Age in seconds Alter in Sekunden + Depth Tiefe + total gesamt + Unknown Peer Unbekannter Nachbar @@ -11739,38 +14906,47 @@ Bitte habe etwas Geduld! TurtleRouterStatisticsWidget + Search requests repartition Aufteilung der Suchanfragen + Tunnel requests repartition Aufteilung der Tunnelanfragen + Turtle router traffic Turtle-Router-Verkehr + Tunnel requests Up Ausgehende Tunnelanfragen + Tunnel requests Dn Eingehende Tunnelanfragen + Incoming file data Eingehende Dateidaten + Outgoing file data Ausgehende Dateidaten + Forwarded data Weitergeleitete Daten + TR Forward probabilities TA-Weiterleitungswahrscheinlichkeiten @@ -11778,65 +14954,103 @@ Bitte habe etwas Geduld! ULListDelegate + B B + KB KiB + MB MiB + GB GiB + + UserNotify + + + You have %1 new messages + + + + + You have %1 new message + + + + + %1 new messages + %1 neue Nachrichten + + + + %1 new message + %1 neue Nachricht + + VMessageBox + OK OK + Cancel Abbrechen + Yes Ja + No Nein + Help Hilfe + Retry Erneut versuchen + Show Log Log anzeigen + Show Settings Einstellungen anzeigen + Continue Fortsetzen + Quit Schließen + Browse Durchsuchen @@ -11844,98 +15058,123 @@ Bitte habe etwas Geduld! WikiAddDialog + Basic Details Grundlegende Details + Group Name: Gruppenname + Category: Kategorie: + Travel Reise + Holiday Urlaub + Friends Freunde + + Family Familie + Work Arbeit + Random Zufall + Description: Beschreibung: + Share Options Freigabeoptionen + Public Öffentlich + All Friends Alle Freunde + Restricted Beschränkt + N/A N/A + University Friends Universitäts-Freunde + This List Contains Diese Liste enthält + All your Groups Alle deine Gruppen + No Comments Allowed Keine Kommentare erlaubt + Authenticated Comments Authentifizierte Kommentare + Any Comments Allowed Beliebige Kommentare erlaubt + Publish with XXX Key Mit XXX-Schlüssel veröffentlichen + Cancel Abbrechen + Create Group Gruppe erstellen @@ -11943,54 +15182,67 @@ Bitte habe etwas Geduld! WikiDialog + Wiki Group Wiki-Gruppe + Page Seite + Id ID + Page Modification Seitenänderung + By durch + << << + >> >> + << Mod << Änderung + Edit Bearbeiten + Mod >> Änderung >> + New Group Neue Gruppe + New Page Neue Seite + Delete Löschen @@ -11998,38 +15250,47 @@ Bitte habe etwas Geduld! WikiEditDialog + Wiki Page Wiki-Seite + Wiki Group: Wiki-Gruppe: + Page Name: Seitenname: + Edit ID ID bearbeiten + Previous Version Vorhergehende Version + Prev ID Vorhergehende ID + Cancel Abbrechen + Revert Rückgängig machen + Submit Absenden @@ -12037,86 +15298,112 @@ Bitte habe etwas Geduld! WireDialog + TimeRange TimeRange + + All Alle + Last Month Letzter Monat + Last Week Letzte Woche + Today Heute + New Neu + from von + until bis + Search/Filter Suchen/Filtern + Network Wide Netzwerkweit + Manage Accounts Konten verwalten + Showing: Zeige: + Yourself Du + Friends Freunde + Following Folgend + Custom Benutzerdefiniert + Account 1 Konto 1 + Account 2 Konto 2 + Account 3 Konto 3 + + + + + CheckBox CheckBox + Post Pulse to Wire Puls an Wire senden @@ -12124,96 +15411,115 @@ Bitte habe etwas Geduld! misc + Unknown Unknown (size) Unbekannt + B bytes B + Unknown Unbekannt + < 1m < 1 minute < 1min + %1 minutes e.g: 10minutes %1 Minuten + %1h %2m e.g: 3hours 5minutes %1h %2m + %1d %2h e.g: 2days 10hours %1T %2h + %1y %2d e.g: 2 years 2days %1J %2T + k e.g: 3.1 k Ki + M e.g: 3.1 M Mi + G e.g: 3.1 G Gi + T e.g: 3.1 T Ti + Load avatar image Lade Avatar Bild + Pictures (*.png *.xpm *.jpg *.tiff *.gif) Bilder (*.png *.xpm *.jpg *.tiff *.gif) + KB kilobytes (1024 bytes) KiB + MB megabytes (1024 kilobytes) MiB + GB gigabytes (1024 megabytes) GiB + TB, terabytes (1024 gigabytes) TiB, + TB terabytes (1024 gigabytes) TiB - \ No newline at end of file + diff --git a/retroshare-gui/src/util/HandleRichText.cpp b/retroshare-gui/src/util/HandleRichText.cpp index aefba173d..0b5a1a4de 100644 --- a/retroshare-gui/src/util/HandleRichText.cpp +++ b/retroshare-gui/src/util/HandleRichText.cpp @@ -19,8 +19,12 @@ * Boston, MA 02110-1301, USA. ****************************************************************/ +#include #include #include +#include +#include +#include #include "HandleRichText.h" #include "gui/RetroShareLink.h" @@ -625,3 +629,62 @@ QString RsHtml::toHtml(QString text, bool realHtml) doc.setHtml(text); return doc.toHtml(); } + +/** Loads image and converts image to embedded image HTML fragment **/ +bool RsHtml::makeEmbeddedImage(const QString &fileName, QString &embeddedImage, const int maxPixels) +{ + QImage image; + + if (image.load (fileName) == false) { + fprintf (stderr, "RsHtml::makeEmbeddedImage() - image \"%s\" can't be load", fileName.toAscii().constData()); + return false; + } + return RsHtml::makeEmbeddedImage(image, embeddedImage, maxPixels); +} + +/** Converts image to embedded image HTML fragment **/ +bool RsHtml::makeEmbeddedImage(const QImage &originalImage, QString &embeddedImage, const int maxPixels) +{ + QByteArray bytearray; + QBuffer buffer(&bytearray); + QImage resizedImage; + const QImage *image = &originalImage; + + if (maxPixels > 0) { + QSize imgSize = originalImage.size(); + if ((imgSize.height() * imgSize.width()) > maxPixels) { + // image is too large - resize keeping aspect ratio + QSize newSize; + newSize.setWidth(int(qSqrt((maxPixels * imgSize.width()) / imgSize.height()))); + newSize.setHeight(int((imgSize.height() * newSize.width()) / imgSize.width())); + + // ask user + QMessageBox msgBox; + msgBox.setText(QString(QApplication::translate("RsHtml", "Image is oversized for transmission.\nReducing image to %1x%2 pixels?", 0, QApplication::UnicodeUTF8)).arg(newSize.width()).arg(newSize.height())); + msgBox.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel); + msgBox.setDefaultButton(QMessageBox::Ok); + if (msgBox.exec() != QMessageBox::Ok) { + return false; + } + resizedImage = originalImage.scaled(newSize, Qt::KeepAspectRatio, Qt::SmoothTransformation); + image = &resizedImage; + } + } + + if (buffer.open(QIODevice::WriteOnly)) { + if (image->save(&buffer, "PNG")) { + QByteArray encodedByteArray = bytearray.toBase64(); + + embeddedImage = ""); + } else { + fprintf (stderr, "RsHtml::makeEmbeddedImage() - image can't be saved to buffer"); + return false; + } + } else { + fprintf (stderr, "RsHtml::makeEmbeddedImage() - buffer can't be opened"); + return false; + } + return true; +} diff --git a/retroshare-gui/src/util/HandleRichText.h b/retroshare-gui/src/util/HandleRichText.h index 1994202b2..ec24d5185 100644 --- a/retroshare-gui/src/util/HandleRichText.h +++ b/retroshare-gui/src/util/HandleRichText.h @@ -64,6 +64,9 @@ public: static void optimizeHtml(QString &text, unsigned int flag = 0); static QString toHtml(QString text, bool realHtml = true); + static bool makeEmbeddedImage(const QString &fileName, QString &embeddedImage, const int maxPixels); + static bool makeEmbeddedImage(const QImage &originalImage, QString &embeddedImage, const int maxPixels); + protected: void embedHtml(QTextDocument *textDocument, QDomDocument &doc, QDomElement ¤tElement, EmbedInHtml& embedInfos, ulong flag); void replaceAnchorWithImg(QDomDocument& doc, QDomElement &element, QTextDocument *textDocument, const RetroShareLink &link);