diff --git a/retroshare-gui/src/gui/ChannelFeed.ui b/retroshare-gui/src/gui/ChannelFeed.ui index f308d0e8a..35817092b 100644 --- a/retroshare-gui/src/gui/ChannelFeed.ui +++ b/retroshare-gui/src/gui/ChannelFeed.ui @@ -22,9 +22,6 @@ 0 - - Form - diff --git a/retroshare-gui/src/gui/advsearch/guiexprelement.cpp b/retroshare-gui/src/gui/advsearch/guiexprelement.cpp index 43470c12f..47e286ae4 100644 --- a/retroshare-gui/src/gui/advsearch/guiexprelement.cpp +++ b/retroshare-gui/src/gui/advsearch/guiexprelement.cpp @@ -29,33 +29,6 @@ #define STD_CB_WIDTH 90 #define CONDITION_CB_WIDTH 170 -const QString GuiExprElement::AND = QObject::tr("and"); -const QString GuiExprElement::OR = QObject::tr("and / or"); -const QString GuiExprElement::XOR = QObject::tr("or"); // exclusive or - -const QString GuiExprElement::NAME = QObject::tr("Name"); -const QString GuiExprElement::PATH = QObject::tr("Path"); -const QString GuiExprElement::EXT = QObject::tr("Extension"); -const QString GuiExprElement::HASH = QObject::tr("Hash"); -//const QString GuiExprElement::KEYWORDS= QObject::tr("Keywords"); -//const QString GuiExprElement::COMMENTS= QObject::tr("Comments"); -//const QString GuiExprElement::META = QObject::tr("Meta"); -const QString GuiExprElement::DATE = QObject::tr("Date"); -const QString GuiExprElement::SIZE = QObject::tr("Size"); -const QString GuiExprElement::POP = QObject::tr("Popularity"); - -const QString GuiExprElement::CONTAINS= QObject::tr("contains"); -const QString GuiExprElement::CONTALL = QObject::tr("contains all"); -const QString GuiExprElement::IS = QObject::tr("is"); - -const QString GuiExprElement::LT = QObject::tr("less than"); -const QString GuiExprElement::LTE = QObject::tr("less than or equal"); -const QString GuiExprElement::EQUAL = QObject::tr("equals"); -const QString GuiExprElement::GTE = QObject::tr("greater than or equal"); -const QString GuiExprElement::GT = QObject::tr("greater than"); -const QString GuiExprElement::RANGE = QObject::tr("is in range"); - - const int GuiExprElement::AND_INDEX = 0; const int GuiExprElement::OR_INDEX = 1; const int GuiExprElement::XOR_INDEX = 2; @@ -115,6 +88,32 @@ GuiExprElement::GuiExprElement(QWidget * parent) void GuiExprElement::initialiseOptionsLists() { + const QString AND = tr("and"); + const QString OR = tr("and / or"); + const QString XOR = tr("or"); // exclusive or + + const QString NAME = tr("Name"); + const QString PATH = tr("Path"); + const QString EXT = tr("Extension"); + const QString HASH = tr("Hash"); + //const QString KEYWORDS= tr("Keywords"); + //const QString COMMENTS= tr("Comments"); + //const QString META = tr("Meta"); + const QString DATE = tr("Date"); + const QString SIZE = tr("Size"); + const QString POP = tr("Popularity"); + + const QString CONTAINS= tr("contains"); + const QString CONTALL = tr("contains all"); + const QString IS = tr("is"); + + const QString LT = tr("less than"); + const QString LTE = tr("less than or equal"); + const QString EQUAL = tr("equals"); + const QString GTE = tr("greater than or equal"); + const QString GT = tr("greater than"); + const QString RANGE = tr("is in range"); + exprOpsList->append(AND); exprOpsList->append(OR); exprOpsList->append(XOR); @@ -175,28 +174,28 @@ void GuiExprElement::initialiseOptionsLists() (*GuiExprElement::relConditionIndexMap)[GuiExprElement::RANGE_INDEX] = InRange; // the string to index map - (*GuiExprElement::termsStrMap)[GuiExprElement::NAME_INDEX] = GuiExprElement::NAME; - (*GuiExprElement::termsStrMap)[GuiExprElement::PATH_INDEX] = GuiExprElement::PATH; - (*GuiExprElement::termsStrMap)[GuiExprElement::EXT_INDEX] = GuiExprElement::EXT; - (*GuiExprElement::termsStrMap)[GuiExprElement::HASH_INDEX] = GuiExprElement::HASH; - (*GuiExprElement::termsStrMap)[GuiExprElement::DATE_INDEX] = GuiExprElement::DATE; - (*GuiExprElement::termsStrMap)[GuiExprElement::SIZE_INDEX] = GuiExprElement::SIZE; - (*GuiExprElement::termsStrMap)[GuiExprElement::POP_INDEX] = GuiExprElement::POP; + (*GuiExprElement::termsStrMap)[GuiExprElement::NAME_INDEX] = NAME; + (*GuiExprElement::termsStrMap)[GuiExprElement::PATH_INDEX] = PATH; + (*GuiExprElement::termsStrMap)[GuiExprElement::EXT_INDEX] = EXT; + (*GuiExprElement::termsStrMap)[GuiExprElement::HASH_INDEX] = HASH; + (*GuiExprElement::termsStrMap)[GuiExprElement::DATE_INDEX] = DATE; + (*GuiExprElement::termsStrMap)[GuiExprElement::SIZE_INDEX] = SIZE; + (*GuiExprElement::termsStrMap)[GuiExprElement::POP_INDEX] = POP; - (*GuiExprElement::logicalOpStrMap)[GuiExprElement::AND_INDEX] = GuiExprElement::AND; - (*GuiExprElement::logicalOpStrMap)[GuiExprElement::XOR_INDEX] = GuiExprElement::XOR; - (*GuiExprElement::logicalOpStrMap)[GuiExprElement::OR_INDEX] = GuiExprElement::OR; + (*GuiExprElement::logicalOpStrMap)[GuiExprElement::AND_INDEX] = AND; + (*GuiExprElement::logicalOpStrMap)[GuiExprElement::XOR_INDEX] = XOR; + (*GuiExprElement::logicalOpStrMap)[GuiExprElement::OR_INDEX] = OR; - (*GuiExprElement::strConditionStrMap)[GuiExprElement::CONTAINS_INDEX] = GuiExprElement::CONTAINS; - (*GuiExprElement::strConditionStrMap)[GuiExprElement::CONTALL_INDEX] = GuiExprElement::CONTALL; - (*GuiExprElement::strConditionStrMap)[GuiExprElement::IS_INDEX] = GuiExprElement::IS; + (*GuiExprElement::strConditionStrMap)[GuiExprElement::CONTAINS_INDEX] = CONTAINS; + (*GuiExprElement::strConditionStrMap)[GuiExprElement::CONTALL_INDEX] = CONTALL; + (*GuiExprElement::strConditionStrMap)[GuiExprElement::IS_INDEX] = IS; - (*GuiExprElement::relConditionStrMap)[GuiExprElement::LT_INDEX] = GuiExprElement::LT; - (*GuiExprElement::relConditionStrMap)[GuiExprElement::LTE_INDEX] = GuiExprElement::LTE; - (*GuiExprElement::relConditionStrMap)[GuiExprElement::EQUAL_INDEX] = GuiExprElement::EQUAL; - (*GuiExprElement::relConditionStrMap)[GuiExprElement::GTE_INDEX] = GuiExprElement::GTE; - (*GuiExprElement::relConditionStrMap)[GuiExprElement::GT_INDEX] = GuiExprElement::GT; - (*GuiExprElement::relConditionStrMap)[GuiExprElement::RANGE_INDEX] = GuiExprElement::RANGE; + (*GuiExprElement::relConditionStrMap)[GuiExprElement::LT_INDEX] = LT; + (*GuiExprElement::relConditionStrMap)[GuiExprElement::LTE_INDEX] = LTE; + (*GuiExprElement::relConditionStrMap)[GuiExprElement::EQUAL_INDEX] = EQUAL; + (*GuiExprElement::relConditionStrMap)[GuiExprElement::GTE_INDEX] = GTE; + (*GuiExprElement::relConditionStrMap)[GuiExprElement::GT_INDEX] = GT; + (*GuiExprElement::relConditionStrMap)[GuiExprElement::RANGE_INDEX] = RANGE; GuiExprElement::initialised = true; diff --git a/retroshare-gui/src/gui/advsearch/guiexprelement.h b/retroshare-gui/src/gui/advsearch/guiexprelement.h index 0c80557b4..739931bac 100644 --- a/retroshare-gui/src/gui/advsearch/guiexprelement.h +++ b/retroshare-gui/src/gui/advsearch/guiexprelement.h @@ -64,32 +64,6 @@ public: virtual void set(QObject*){} bool isStringSearchExpression(); - /* translatable option strings for the comboboxes */ - static const QString AND ; - static const QString XOR ; - static const QString OR ; - static const QString NAME ; - static const QString PATH ; - static const QString EXT ; - static const QString HASH ; - static const QString KEYWORDS; - static const QString COMMENTS; - static const QString META ; - static const QString DATE ; - static const QString SIZE ; - static const QString POP ; - - static const QString CONTAINS; - static const QString CONTALL ; - static const QString IS ; - - static const QString LT ; - static const QString LTE ; - static const QString EQUAL ; - static const QString GTE ; - static const QString GT ; - static const QString RANGE ; - /* indices for possible cb options */ static const int AND_INDEX; static const int XOR_INDEX; diff --git a/retroshare-gui/src/gui/settings/TransferPage.ui b/retroshare-gui/src/gui/settings/TransferPage.ui index 4ded2a639..45edbc954 100644 --- a/retroshare-gui/src/gui/settings/TransferPage.ui +++ b/retroshare-gui/src/gui/settings/TransferPage.ui @@ -1,133 +1,130 @@ - - - TransferPage - - - - 0 - 0 - 604 - 340 - - - - Form - - - - - - Transfer options - - - - - - - - - - Queue Size: - - - - - - - Default chunk strategy: - - - - - - - Safety disk space limit : - - - - - - - - - - - true - - - 1 - - - 1 - - - 5 - - - - - - - true - - - - Streaming - - - - - Random - - - - - - - - MB - - - 50 - - - 1000 - - - 10 - - - 100 - - - - - - - - - - - true - - - <!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 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;">RetroShare</span><span style=" 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-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;">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-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-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> - - - - - - - - - - - + + + TransferPage + + + + 0 + 0 + 604 + 340 + + + + + + + Transfer options + + + + + + + + + + Queue Size: + + + + + + + Default chunk strategy: + + + + + + + Safety disk space limit : + + + + + + + + + + + true + + + 1 + + + 1 + + + 5 + + + + + + + true + + + + Streaming + + + + + Random + + + + + + + + MB + + + 50 + + + 1000 + + + 10 + + + 100 + + + + + + + + + + + true + + + <!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:'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> + + + + + + + + + + + diff --git a/retroshare-gui/src/lang/retroshare_de.qm b/retroshare-gui/src/lang/retroshare_de.qm index 6524597b8..f93e7b80b 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 09dd4b87a..06965840b 100644 --- a/retroshare-gui/src/lang/retroshare_de.ts +++ b/retroshare-gui/src/lang/retroshare_de.ts @@ -931,17 +931,17 @@ p, li { white-space: pre-wrap; } Type - Typ + Typ Restricted - Anyone can read, limited publishing (Private Publish Key) - Beschränkt - Jeder kann lesen, aber nicht jeder schreiben (Privater Veröffentlichungs-Schlüssel) + Beschränkt - Jeder kann lesen, aber nicht jeder schreiben (Privater Veröffentlichungs-Schlüssel) Private - (Private Publish Key required to view Messages) - Privat - (Privater Veröffentlichungsschlüssel erforderlich, um Nachrichten zu lesen) + Privat - (Privater Veröffentlichungsschlüssel erforderlich, um Nachrichten zu lesen) @@ -972,12 +972,7 @@ p, li { white-space: pre-wrap; } ChannelFeed - - 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; } @@ -1078,7 +1073,7 @@ p, li { white-space: pre-wrap; } Share Channel - + Verteile Kanal @@ -2210,7 +2205,7 @@ p, li { white-space: pre-wrap; } Zusätzlich eine Datei hinzufügen - + RetroShare @@ -2790,12 +2785,12 @@ p, li { white-space: pre-wrap; } Load File - Lade Datei + Lade Datei Pictures (*.png *.xpm *.jpg) - Bilder (*.png *.xpm *.jpg) + Bilder (*.png *.xpm *.jpg) @@ -2974,7 +2969,7 @@ p, li { white-space: pre-wrap; } ExprParamElement - + to @@ -3385,7 +3380,7 @@ p, li { white-space: pre-wrap; } Edit Forum Details - Forum-Details bearbeiten + Forum-Details bearbeiten @@ -4152,6 +4147,104 @@ Fill in your GPG password when asked, to sign your new key. Favoriten + + GuiExprElement + + + and + und + + + + and / or + und / oder + + + + or + oder + + + + Name + Name + + + + Path + Pfad + + + + Extension + Erweiterung + + + + Hash + Prüfsumme + + + + Date + Datum + + + + Size + Grösse + + + + 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össer als oder gleich + + + + greater than + grösser als + + + + is in range + im Bereich + + HelpBrowser @@ -4835,11 +4928,12 @@ p, li { white-space: pre-wrap; } Kanäle + Blogs - Blogs + Blogs - + Internal Error Interener Fehler @@ -4895,7 +4989,7 @@ p, li { white-space: pre-wrap; } Schnellstart Assistent - + Search Suchen @@ -4910,7 +5004,7 @@ p, li { white-space: pre-wrap; } Messenger - + Show/Hide Anzeigen/Verbergen @@ -4987,12 +5081,12 @@ p, li { white-space: pre-wrap; } Foren - + RetroShare %1 a secure decentralised communication platform RetroShare %1 eine sichere und dezentralisierte Kommunikationsplattform - + Open Messages Öffne Nachrichten @@ -5308,29 +5402,29 @@ Bitte gib etwas Speicher frei und drücke OK. - + 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? - + Unknown Unbekannt - + Unknown friend Unbekannter Freund - + &File &Datei @@ -5478,7 +5572,7 @@ Willst Du die Nachricht speichern ? Zusätzliche Datei hinzufügen - + Friend Recommendation Freundempfehlung @@ -7679,7 +7773,7 @@ p, li { white-space: pre-wrap; } Clear offline messages - + Entferne offline Nachrichten @@ -7951,7 +8045,7 @@ Do you want to send them a Message instead ProfileView - + Clear Photo Photo entfernen @@ -8250,101 +8344,6 @@ p, li { white-space: pre-wrap; } QObject - - - Name - Name - - - - Path - Pfad - - - - Extension - Erweiterung - - - - Date - Datum - - - - Size - Grösse - - - - Popularity - Beliebtheit - - - - contains - enthält - - - - contains all - enthält alles - - - - is - ist - - - - less than - kleiner als - - - - less than or equal - kleiner als oder gleich - - - - greater than or equal - grösser als oder gleich - - - - greater than - grösser als - - - - is in range - im Bereich - - - - and - und - - - - and / or - und / oder - - - - or - oder - - - - equals - gleich - - - - Hash - Prüfsumme - @@ -9486,7 +9485,7 @@ p, li { white-space: pre-wrap; } Share Channel - + Verteile Kanal @@ -9495,12 +9494,16 @@ p, li { white-space: pre-wrap; } 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:18pt; font-weight:600; color:#ffffff;">Share Channel</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-family:'Arial'; font-size:18pt; font-weight:600; color:#ffffff;">Verteile Kanal</span></p></body></html> Share for Friend - + Verteile für Freund @@ -9524,7 +9527,11 @@ p, li { white-space: pre-wrap; } 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;">Select the Friends with which you want to Share your Channel.</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;">Wähle die Freunde aus, mit denen Du den Kanal teilen möchtest.</span></p></body></html> @@ -10299,7 +10306,7 @@ p, li { white-space: pre-wrap; } Delete FeedItem - Nachricht löschen + Nachricht löschen @@ -10479,12 +10486,7 @@ p, li { white-space: pre-wrap; } TransferPage - - Form - Formular - - - + Transfer options Übertragungsoptionen @@ -10509,7 +10511,20 @@ p, li { white-space: pre-wrap; } Zufall - + + <!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:'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> + + + + Safety disk space limit : Sicherheitsgrenze Festplattenspeicher: @@ -10518,19 +10533,6 @@ p, li { white-space: pre-wrap; } MB - - - <!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 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;">RetroShare</span><span style=" 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-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;">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-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-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> - - TransfersDialog