From aa194caea3d935a6a2d5a7c23fb54a544011ccdd Mon Sep 17 00:00:00 2001 From: csoler Date: Sun, 31 Jan 2016 20:27:53 -0500 Subject: [PATCH 01/23] fixed bug preventing save of routage info in distant messaging --- libretroshare/src/grouter/p3grouter.cc | 26 ++++++++++++------- libretroshare/src/services/p3msgservice.cc | 1 + .../gui/statistics/GlobalRouterStatistics.cpp | 10 ++++--- 3 files changed, 24 insertions(+), 13 deletions(-) diff --git a/libretroshare/src/grouter/p3grouter.cc b/libretroshare/src/grouter/p3grouter.cc index f8bccaa0f..bbee74c8f 100644 --- a/libretroshare/src/grouter/p3grouter.cc +++ b/libretroshare/src/grouter/p3grouter.cc @@ -191,6 +191,7 @@ #include "turtle/p3turtle.h" #include "gxs/rsgixs.h" #include "retroshare/rspeers.h" +#include "retroshare/rsreputations.h" #include "p3grouter.h" #include "grouteritems.h" @@ -1170,8 +1171,6 @@ void p3GRouter::locked_collectAvailableFriends(const GRouterKeyId& gxs_id,const for(uint32_t i=0;i > mypairs ; for(uint32_t i=0;i=0 && n::iterator it=_pending_messages.begin();it!=_pending_messages.end();) - if( (it->second.data_status == RS_GROUTER_DATA_STATUS_DONE && - (!(it->second.routing_flags & GRouterRoutingInfo::ROUTING_FLAGS_IS_DESTINATION) + if( (it->second.data_status == RS_GROUTER_DATA_STATUS_DONE && (!(it->second.routing_flags & GRouterRoutingInfo::ROUTING_FLAGS_IS_DESTINATION) || it->second.received_time_TS + MAX_DESTINATION_KEEP_TIME < now)) || ((it->second.received_time_TS + GROUTER_ITEM_MAX_CACHE_KEEP_TIME < now) && !(it->second.routing_flags & GRouterRoutingInfo::ROUTING_FLAGS_IS_ORIGIN) @@ -1490,7 +1487,6 @@ void p3GRouter::handleIncomingReceiptItem(RsGRouterSignedReceiptItem *receipt_it // in the proxy case, we should only store the receipt. GRouterClientService *client_service = NULL; - GRouterServiceId service_id ; GRouterMsgPropagationId mid = 0 ; { @@ -1953,7 +1949,11 @@ bool p3GRouter::verifySignedDataItem(RsGRouterAbstractMsgItem *item) { try { - RsTlvSecurityKey signature_key ; + if(rsReputations->isIdentityBanned(item->signature.keyId)) + { + std::cerr << "(WW) received global router message from banned identity " << item->signature.keyId << ". Rejecting the message." << std::endl; + return false ; + } uint32_t data_size = item->signed_data_size() ; RsTemporaryMemory data(data_size) ; @@ -1966,12 +1966,20 @@ bool p3GRouter::verifySignedDataItem(RsGRouterAbstractMsgItem *item) uint32_t error_status ; - + if(!mGixs->validateData(data,data_size,item->signature,true,error_status)) { switch(error_status) { - case RsGixs::RS_GIXS_ERROR_KEY_NOT_AVAILABLE: std::cerr << "(EE) Key for GXS Id " << item->signature.keyId << " is not available. Cannot verify." << std::endl; + case RsGixs::RS_GIXS_ERROR_KEY_NOT_AVAILABLE: + { + std::list peer_ids ; + peer_ids.push_back(item->PeerId()) ; + + std::cerr << "(EE) Key for GXS Id " << item->signature.keyId << " is not available. Cannot verify. Asking key to peer " << item->PeerId() << std::endl; + + mGixs->requestKey(item->signature.keyId,peer_ids) ; // request the key around + } break ; case RsGixs::RS_GIXS_ERROR_SIGNATURE_MISMATCH: std::cerr << "(EE) Signature mismatch. Spoofing/Corrupted/MITM?." << std::endl; break ; diff --git a/libretroshare/src/services/p3msgservice.cc b/libretroshare/src/services/p3msgservice.cc index 0473d0e3c..d3e37ea90 100644 --- a/libretroshare/src/services/p3msgservice.cc +++ b/libretroshare/src/services/p3msgservice.cc @@ -2032,6 +2032,7 @@ void p3MsgService::sendDistantMsgItem(RsMsgItem *msgitem) RS_STACK_MUTEX(mMsgMtx) ; _ongoing_messages[grouter_message_id] = msgitem->msgId ; } + IndicateConfigChanged(); // save _ongoing_messages } diff --git a/retroshare-gui/src/gui/statistics/GlobalRouterStatistics.cpp b/retroshare-gui/src/gui/statistics/GlobalRouterStatistics.cpp index 1ec95b2f3..e5a35b28c 100644 --- a/retroshare-gui/src/gui/statistics/GlobalRouterStatistics.cpp +++ b/retroshare-gui/src/gui/statistics/GlobalRouterStatistics.cpp @@ -54,7 +54,7 @@ #define COL_SEND 8 #define COL_DUPLICATION_FACTOR 9 -static const int PARTIAL_VIEW_SIZE = 5 ; +static const int PARTIAL_VIEW_SIZE = 9 ; static const int MAX_TUNNEL_REQUESTS_DISPLAY = 10 ; static QColor colorScale(float f) @@ -350,7 +350,6 @@ void GlobalRouterStatisticsWidget::updateContent() //if(!is_null) //{ ids = QString::fromStdString(it->first.toStdString())+" : " ; - mMaxWheelZoneX = ox+2*cellx + fm_monospace.width(ids); painter.drawText(ox+2*cellx,oy+celly,ids) ; for(uint32_t i=0;igetIdDetails(current_id,iddetails)) painter.drawText(current_width+cellx, current_oy+celly, QString::fromUtf8(iddetails.mNickname.c_str())) ; + else + painter.drawText(current_width+cellx, current_oy+celly, tr("[Unknown identity]")) ; mMaxWheelZoneY = oy+celly ; @@ -415,10 +417,10 @@ void GlobalRouterStatisticsWidget::wheelEvent(QWheelEvent *e) return ; } - if(e->delta() > 0 && mCurrentN+PARTIAL_VIEW_SIZE/2+1 < mNumberOfKnownKeys) + if(e->delta() < 0 && mCurrentN+PARTIAL_VIEW_SIZE/2+1 < mNumberOfKnownKeys) mCurrentN++ ; - if(e->delta() < 0 && mCurrentN > PARTIAL_VIEW_SIZE/2+1) + if(e->delta() > 0 && mCurrentN > PARTIAL_VIEW_SIZE/2+1) mCurrentN-- ; updateContent(); From 6d1a3937d605a206a370712c82c6b2e915260140 Mon Sep 17 00:00:00 2001 From: csoler Date: Mon, 1 Feb 2016 00:33:11 -0500 Subject: [PATCH 02/23] fixed but in re-sending of failed grouter items --- .../src/grouter/grouterclientservice.h | 2 +- libretroshare/src/grouter/groutertypes.h | 1 + libretroshare/src/grouter/p3grouter.cc | 37 +++++++++++++------ libretroshare/src/services/p3msgservice.cc | 15 ++++++-- libretroshare/src/services/p3msgservice.h | 2 +- 5 files changed, 41 insertions(+), 16 deletions(-) diff --git a/libretroshare/src/grouter/grouterclientservice.h b/libretroshare/src/grouter/grouterclientservice.h index 99be9d564..727d8ea82 100644 --- a/libretroshare/src/grouter/grouterclientservice.h +++ b/libretroshare/src/grouter/grouterclientservice.h @@ -61,7 +61,7 @@ public: // This method is called by the global router when a message has been received, or cannot be sent, etc. // - virtual void notifyDataStatus(const GRouterMsgPropagationId& received_id,uint32_t data_status) + virtual void notifyDataStatus(const GRouterMsgPropagationId& received_id,const RsGxsId& signer_id,uint32_t data_status) { std::cerr << "!!!!!! Received Data status from global router, but the client service is not handling it !!!!!!!!!!" << std::endl ; std::cerr << " message ID = " << received_id << std::endl; diff --git a/libretroshare/src/grouter/groutertypes.h b/libretroshare/src/grouter/groutertypes.h index 4341b5d65..2bb34e635 100644 --- a/libretroshare/src/grouter/groutertypes.h +++ b/libretroshare/src/grouter/groutertypes.h @@ -51,6 +51,7 @@ static const uint32_t MAX_TUNNEL_WAIT_TIME = 60 ; // wa static const uint32_t MAX_TUNNEL_UNMANAGED_TIME = 600 ; // min time before retry tunnels for that msg. static const uint32_t MAX_DELAY_FOR_RESEND = 2*86400+300 ; // re-send if held for more than 2 days (cache store period) plus security delay. static const uint32_t MAX_DESTINATION_KEEP_TIME = 20*86400 ; // keep for 20 days in destination cache to avoid re- +static const uint32_t MAX_RECEIPT_KEEP_TIME = 20*86400 ; // keep for 20 days in destination cache to avoid re- static const uint32_t TUNNEL_OK_WAIT_TIME = 2 ; // wait for 2 seconds after last tunnel ok, so that we have a complete set of tunnels. static const uint32_t MAX_GROUTER_DATA_SIZE = 2*1024*1024 ; // 2MB size limit. This is of course arbitrary. static const uint32_t MAX_TRANSACTION_ACK_WAITING_TIME = 60 ; // wait for at most 60 secs for a ACK. If not restart the transaction. diff --git a/libretroshare/src/grouter/p3grouter.cc b/libretroshare/src/grouter/p3grouter.cc index bbee74c8f..d9b441718 100644 --- a/libretroshare/src/grouter/p3grouter.cc +++ b/libretroshare/src/grouter/p3grouter.cc @@ -1286,18 +1286,30 @@ void p3GRouter::autoWash() bool items_deleted = false ; time_t now = time(NULL) ; - std::map failed_msgs ; + std::map > failed_msgs ; { RS_STACK_MUTEX(grMtx) ; for(std::map::iterator it=_pending_messages.begin();it!=_pending_messages.end();) - if( (it->second.data_status == RS_GROUTER_DATA_STATUS_DONE && (!(it->second.routing_flags & GRouterRoutingInfo::ROUTING_FLAGS_IS_DESTINATION) - || it->second.received_time_TS + MAX_DESTINATION_KEEP_TIME < now)) - || ((it->second.received_time_TS + GROUTER_ITEM_MAX_CACHE_KEEP_TIME < now) - && !(it->second.routing_flags & GRouterRoutingInfo::ROUTING_FLAGS_IS_ORIGIN) - && !(it->second.routing_flags & GRouterRoutingInfo::ROUTING_FLAGS_IS_DESTINATION) - )) // is the item too old for cache + { + bool delete_entry = false ; + + if(it->second.data_status == RS_GROUTER_DATA_STATUS_DONE ) + { + if(!(it->second.routing_flags & GRouterRoutingInfo::ROUTING_FLAGS_IS_DESTINATION) || it->second.received_time_TS + MAX_DESTINATION_KEEP_TIME < now) // is the item too old for cache + delete_entry = true ; + } + else if(it->second.data_status == RS_GROUTER_DATA_STATUS_RECEIPT_OK ) + { + if(it->second.received_time_TS + MAX_RECEIPT_KEEP_TIME < now) // is the item too old for cache + delete_entry = true ; + } + else + if(it->second.received_time_TS + GROUTER_ITEM_MAX_CACHE_KEEP_TIME < now) + delete_entry = true ; + + if(delete_entry) { #ifdef GROUTER_DEBUG grouter_debug() << " Removing cached item " << std::hex << it->first << std::dec << std::endl; @@ -1310,7 +1322,7 @@ void p3GRouter::autoWash() GRouterClientService *client = NULL; if(locked_getLocallyRegisteredClientFromServiceId(it->second.client_id,client)) - failed_msgs[it->first] = client ; + failed_msgs[it->first] = std::make_pair(client,it->second.data_item->signature.keyId) ; else std::cerr << " ERROR: client id " << it->second.client_id << " not registered. Consistency error." << std::endl; } @@ -1329,6 +1341,7 @@ void p3GRouter::autoWash() } else ++it ; + } // also check all existing tunnels @@ -1368,12 +1381,12 @@ void p3GRouter::autoWash() } // Look into pending items. - for(std::map::const_iterator it(failed_msgs.begin());it!=failed_msgs.end();++it) + for(std::map >::const_iterator it(failed_msgs.begin());it!=failed_msgs.end();++it) { #ifdef GROUTER_DEBUG std::cerr << " notifying client for message id " << std::hex << it->first << " state = FAILED" << std::endl; #endif - it->second->notifyDataStatus(it->first ,GROUTER_CLIENT_SERVICE_DATA_STATUS_FAILED) ; + it->second.first->notifyDataStatus(it->first,it->second.second ,GROUTER_CLIENT_SERVICE_DATA_STATUS_FAILED) ; } if(items_deleted) @@ -1481,6 +1494,7 @@ void p3GRouter::handleIncomingReceiptItem(RsGRouterSignedReceiptItem *receipt_it std::cerr << "Item content:" << std::endl; receipt_item->print(std::cerr,2) ; #endif + RsGxsId signer_id ; // Because we don't do proxy-transmission yet, the client needs to be notified. Otherwise, we will need to // first check if we're a proxy or not. We also remove the message from the global router sending list. @@ -1498,6 +1512,7 @@ void p3GRouter::handleIncomingReceiptItem(RsGRouterSignedReceiptItem *receipt_it std::cerr << " ERROR: no routing ID corresponds to this message. Inconsistency!" << std::endl; return ; } + signer_id = it->second.data_item->signature.keyId ; // check hash. @@ -1554,7 +1569,7 @@ void p3GRouter::handleIncomingReceiptItem(RsGRouterSignedReceiptItem *receipt_it #ifdef GROUTER_DEBUG std::cerr << " notifying client " << (void*)client_service << " that msg " << std::hex << mid << std::dec << " was received." << std::endl; #endif - client_service->notifyDataStatus(mid, GROUTER_CLIENT_SERVICE_DATA_STATUS_RECEIVED) ; + client_service->notifyDataStatus(mid, signer_id, GROUTER_CLIENT_SERVICE_DATA_STATUS_RECEIVED) ; } // also note the incoming route in the routing matrix diff --git a/libretroshare/src/services/p3msgservice.cc b/libretroshare/src/services/p3msgservice.cc index d3e37ea90..048be035d 100644 --- a/libretroshare/src/services/p3msgservice.cc +++ b/libretroshare/src/services/p3msgservice.cc @@ -1852,7 +1852,7 @@ void p3MsgService::manageDistantPeers() } } -void p3MsgService::notifyDataStatus(const GRouterMsgPropagationId& id,uint32_t data_status) +void p3MsgService::notifyDataStatus(const GRouterMsgPropagationId& id, const RsGxsId &signer_id, uint32_t data_status) { if(data_status == GROUTER_CLIENT_SERVICE_DATA_STATUS_FAILED) { @@ -1860,7 +1860,7 @@ void p3MsgService::notifyDataStatus(const GRouterMsgPropagationId& id,uint32_t d std::cerr << "(WW) p3MsgService::notifyDataStatus: Global router tells us that item ID " << id << " could not be delivered on time." ; std::map::iterator it = _ongoing_messages.find(id) ; - + if(it == _ongoing_messages.end()) { std::cerr << " (EE) cannot find pending message to acknowledge. Weird. grouter id = " << id << std::endl; @@ -1868,6 +1868,7 @@ void p3MsgService::notifyDataStatus(const GRouterMsgPropagationId& id,uint32_t d } uint32_t msg_id = it->second ; std::cerr << " message id = " << msg_id << std::endl; + mDistantOutgoingMsgSigners[msg_id] = signer_id ; // this is needed because it's not saved in config, but we should probably include it in _ongoing_messages std::map::iterator mit = msgOutgoing.find(msg_id) ; @@ -1991,7 +1992,15 @@ void p3MsgService::sendDistantMsgItem(RsMsgItem *msgitem) { RS_STACK_MUTEX(mMsgMtx) ; - signing_key_id = mDistantOutgoingMsgSigners[msgitem->msgId] ; + std::map::const_iterator it = mDistantOutgoingMsgSigners.find(msgitem->msgId) ; + + if(it == mDistantOutgoingMsgSigners.end()) + { + std::cerr << "(EE) no signer registered for distant message " << msgitem->msgId << ". Cannot send!" << std::endl; + return ; + } + + signing_key_id = it->second ; if(signing_key_id.isNull()) { diff --git a/libretroshare/src/services/p3msgservice.h b/libretroshare/src/services/p3msgservice.h index 401fc4e0a..a36486514 100644 --- a/libretroshare/src/services/p3msgservice.h +++ b/libretroshare/src/services/p3msgservice.h @@ -142,7 +142,7 @@ private: virtual bool acceptDataFromPeer(const RsGxsId& gxs_id) ; virtual void receiveGRouterData(const RsGxsId& destination_key,const RsGxsId& signing_key, GRouterServiceId &client_id, uint8_t *data, uint32_t data_size) ; - virtual void notifyDataStatus(const GRouterMsgPropagationId& msg_id,uint32_t data_status) ; + virtual void notifyDataStatus(const GRouterMsgPropagationId& msg_id,const RsGxsId& signer_id,uint32_t data_status) ; // Utility functions From a41d9df4da2e43c07fba567fc598f2cf3fcc0189 Mon Sep 17 00:00:00 2001 From: Cyril Soler Date: Mon, 1 Feb 2016 09:59:13 -0500 Subject: [PATCH 03/23] fixed small bug in probability computation in grouter --- libretroshare/src/grouter/p3grouter.cc | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/libretroshare/src/grouter/p3grouter.cc b/libretroshare/src/grouter/p3grouter.cc index d9b441718..c5ebc6a97 100644 --- a/libretroshare/src/grouter/p3grouter.cc +++ b/libretroshare/src/grouter/p3grouter.cc @@ -1137,7 +1137,6 @@ void p3GRouter::locked_collectAvailableFriends(const GRouterKeyId& gxs_id,const #endif // remove incoming peers and peers for which the proba is less than half the maximum proba - float total_probas = 0.0f ; uint32_t count=0; for(uint32_t i=0;i > mypairs ; for(uint32_t i=0;i 0 && max_count > 0) + { + for(int i=mypairs.size()-1,n=0;i>=0 && n=0 && n=0 && n=0 && n Sat, 23 Jan 2016 16:00:00 +0100 + -- Cyril Soler Mon, 01 Fev 2016 20:00:00 +0100 retroshare06 (0.6.0-1.20160115.a34f66aa~trusty) trusty; urgency=low From dc9fadd7c944c3422b6cc17d99bda13afd6d3492 Mon Sep 17 00:00:00 2001 From: Cyril Soler Date: Tue, 2 Feb 2016 09:45:48 -0500 Subject: [PATCH 05/23] added missing subscription change notify in rsgenexchange when creating a new group --- libretroshare/src/gxs/rsgenexchange.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libretroshare/src/gxs/rsgenexchange.cc b/libretroshare/src/gxs/rsgenexchange.cc index 65ee5dc10..772ed6c46 100644 --- a/libretroshare/src/gxs/rsgenexchange.cc +++ b/libretroshare/src/gxs/rsgenexchange.cc @@ -2365,7 +2365,9 @@ void RsGenExchange::publishGrps() if(ggps.mIsUpdate) mDataAccess->updateGroupData(grp); else - mDataAccess->addGroupData(grp); + mDataAccess->addGroupData(grp); + + mNetService->subscribeStatusChanged(grpId,true) ; } else { From 3664626704af8aee4f4a6097f48d918c1c17b216 Mon Sep 17 00:00:00 2001 From: Cyril Soler Date: Tue, 2 Feb 2016 12:14:39 -0500 Subject: [PATCH 06/23] added missing check for mNetService --- libretroshare/src/gxs/rsgenexchange.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libretroshare/src/gxs/rsgenexchange.cc b/libretroshare/src/gxs/rsgenexchange.cc index 772ed6c46..70fb78aeb 100644 --- a/libretroshare/src/gxs/rsgenexchange.cc +++ b/libretroshare/src/gxs/rsgenexchange.cc @@ -2367,7 +2367,8 @@ void RsGenExchange::publishGrps() else mDataAccess->addGroupData(grp); - mNetService->subscribeStatusChanged(grpId,true) ; + if(mNetService!=NULL) + mNetService->subscribeStatusChanged(grpId,true) ; } else { From 4394580e551efb25b5fe87a4d557db9955b96bcd Mon Sep 17 00:00:00 2001 From: thunder2 Date: Tue, 2 Feb 2016 18:26:45 +0100 Subject: [PATCH 07/23] Fixed Windows installer script. --- build_scripts/Windows/retroshare-Qt4.nsi | 20 ++++++++++---------- build_scripts/Windows/retroshare-Qt5.nsi | 20 ++++++++++---------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/build_scripts/Windows/retroshare-Qt4.nsi b/build_scripts/Windows/retroshare-Qt4.nsi index aa27dc1eb..1ffef8283 100644 --- a/build_scripts/Windows/retroshare-Qt4.nsi +++ b/build_scripts/Windows/retroshare-Qt4.nsi @@ -102,7 +102,7 @@ Var StyleSheetDir !define MUI_COMPONENTSPAGE_SMALLDESC !define MUI_FINISHPAGE_LINK "Visit the RetroShare forum for the latest news and support" !define MUI_FINISHPAGE_LINK_LOCATION "http://retroshare.sourceforge.net/forum/" -!define MUI_FINISHPAGE_RUN "$INSTDIR\RetroShare.exe" +!define MUI_FINISHPAGE_RUN "$INSTDIR\RetroShare06.exe" !define MUI_FINISHPAGE_SHOWREADME $INSTDIR\changelog.txt !define MUI_FINISHPAGE_SHOWREADME_TEXT changelog.txt !define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED @@ -175,8 +175,8 @@ Section $(Section_Main) Section_Main ; Main binaries SetOutPath "$INSTDIR" - File /oname=RetroShare.exe "${RELEASEDIR}\retroshare-gui\src\release\RetroShare06.exe" - File /oname=retroshare-nogui.exe "${RELEASEDIR}\retroshare-nogui\src\release\RetroShare06-nogui.exe" + File /oname=RetroShare06.exe "${RELEASEDIR}\retroshare-gui\src\release\RetroShare06.exe" + File /oname=retroshare06-nogui.exe "${RELEASEDIR}\retroshare-nogui\src\release\RetroShare06-nogui.exe" ; Qt binaries File "${QTDIR}\bin\QtCore4.dll" @@ -265,7 +265,7 @@ SectionEnd ; WriteRegStr HKCR retroshare "" "PQI File" ; WriteRegBin HKCR retroshare EditFlags 00000100 ; WriteRegStr HKCR "retroshare\shell" "" open -; WriteRegStr HKCR "retroshare\shell\open\command" "" `"$INSTDIR\RetroShare.exe" "%1"` +; WriteRegStr HKCR "retroshare\shell\open\command" "" `"$INSTDIR\RetroShare06.exe" "%1"` ;SectionEnd # Shortcuts @@ -274,24 +274,24 @@ Section $(Section_StartMenu) Section_StartMenu SetOutPath "$INSTDIR" CreateDirectory "$SMPROGRAMS\${APPNAME}" CreateShortCut "$SMPROGRAMS\${APPNAME}\$(Link_Uninstall).lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0 - CreateShortCut "$SMPROGRAMS\${APPNAME}\${APPNAME}.lnk" "$INSTDIR\RetroShare.exe" "" "$INSTDIR\RetroShare.exe" 0 + CreateShortCut "$SMPROGRAMS\${APPNAME}\${APPNAME}.lnk" "$INSTDIR\RetroShare06.exe" "" "$INSTDIR\RetroShare06.exe" 0 SectionEnd Section $(Section_Desktop) Section_Desktop - CreateShortCut "$DESKTOP\${APPNAME}.lnk" "$INSTDIR\RetroShare.exe" "" "$INSTDIR\RetroShare.exe" 0 + CreateShortCut "$DESKTOP\${APPNAME}.lnk" "$INSTDIR\RetroShare06.exe" "" "$INSTDIR\RetroShare06.exe" 0 SectionEnd Section $(Section_QuickLaunch) Section_QuickLaunch - CreateShortCut "$QUICKLAUNCH\${APPNAME}.lnk" "$INSTDIR\RetroShare.exe" "" "$INSTDIR\RetroShare.exe" 0 + CreateShortCut "$QUICKLAUNCH\${APPNAME}.lnk" "$INSTDIR\RetroShare06.exe" "" "$INSTDIR\RetroShare06.exe" 0 SectionEnd SectionGroupEnd Section $(Section_AutoStart) Section_AutoStart - WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "RetroShare" "$INSTDIR\${APPNAME}.exe -m" + WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "RetroShare" "$INSTDIR\${APPNAME}06.exe -m" SectionEnd ;Section $(Section_AutoStart) Section_AutoStart -; CreateShortCut "$SMSTARTUP\${APPNAME}.lnk" "$INSTDIR\RetroShare.exe" "" "$INSTDIR\RetroShare.exe -m" 0 +; CreateShortCut "$SMSTARTUP\${APPNAME}.lnk" "$INSTDIR\RetroShare06.exe" "" "$INSTDIR\RetroShare06.exe -m" 0 ;SectionEnd Section -FinishSection @@ -300,7 +300,7 @@ Section -FinishSection WriteRegStr HKLM "Software\${APPNAME}" "Version" "${VERSION}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayName" "${APPNAME}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayVersion" "${VERSION}" - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayIcon" "$INSTDIR\RetroShare.exe" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayIcon" "$INSTDIR\RetroShare06.exe" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "Publisher" "${PUBLISHER}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "NoModify" "1" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "NoRepair" "1" diff --git a/build_scripts/Windows/retroshare-Qt5.nsi b/build_scripts/Windows/retroshare-Qt5.nsi index d946d286e..1d9e6afa8 100644 --- a/build_scripts/Windows/retroshare-Qt5.nsi +++ b/build_scripts/Windows/retroshare-Qt5.nsi @@ -102,7 +102,7 @@ Var StyleSheetDir !define MUI_COMPONENTSPAGE_SMALLDESC !define MUI_FINISHPAGE_LINK "Visit the RetroShare forum for the latest news and support" !define MUI_FINISHPAGE_LINK_LOCATION "http://retroshare.sourceforge.net/forum/" -!define MUI_FINISHPAGE_RUN "$INSTDIR\RetroShare.exe" +!define MUI_FINISHPAGE_RUN "$INSTDIR\RetroShare06.exe" !define MUI_FINISHPAGE_SHOWREADME $INSTDIR\changelog.txt !define MUI_FINISHPAGE_SHOWREADME_TEXT changelog.txt !define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED @@ -175,8 +175,8 @@ Section $(Section_Main) Section_Main ; Main binaries SetOutPath "$INSTDIR" - File /oname=RetroShare.exe "${RELEASEDIR}\retroshare-gui\src\release\RetroShare06.exe" - File /oname=retroshare-nogui.exe "${RELEASEDIR}\retroshare-nogui\src\release\RetroShare06-nogui.exe" + File /oname=RetroShare06.exe "${RELEASEDIR}\retroshare-gui\src\release\RetroShare06.exe" + File /oname=retroshare06-nogui.exe "${RELEASEDIR}\retroshare-nogui\src\release\RetroShare06-nogui.exe" ; Qt binaries File "${QTDIR}\bin\Qt5Core.dll" @@ -285,7 +285,7 @@ SectionEnd ; WriteRegStr HKCR retroshare "" "PQI File" ; WriteRegBin HKCR retroshare EditFlags 00000100 ; WriteRegStr HKCR "retroshare\shell" "" open -; WriteRegStr HKCR "retroshare\shell\open\command" "" `"$INSTDIR\RetroShare.exe" "%1"` +; WriteRegStr HKCR "retroshare\shell\open\command" "" `"$INSTDIR\RetroShare06.exe" "%1"` ;SectionEnd # Shortcuts @@ -294,24 +294,24 @@ Section $(Section_StartMenu) Section_StartMenu SetOutPath "$INSTDIR" CreateDirectory "$SMPROGRAMS\${APPNAME}" CreateShortCut "$SMPROGRAMS\${APPNAME}\$(Link_Uninstall).lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0 - CreateShortCut "$SMPROGRAMS\${APPNAME}\${APPNAME}.lnk" "$INSTDIR\RetroShare.exe" "" "$INSTDIR\RetroShare.exe" 0 + CreateShortCut "$SMPROGRAMS\${APPNAME}\${APPNAME}.lnk" "$INSTDIR\RetroShare06.exe" "" "$INSTDIR\RetroShare06.exe" 0 SectionEnd Section $(Section_Desktop) Section_Desktop - CreateShortCut "$DESKTOP\${APPNAME}.lnk" "$INSTDIR\RetroShare.exe" "" "$INSTDIR\RetroShare.exe" 0 + CreateShortCut "$DESKTOP\${APPNAME}.lnk" "$INSTDIR\RetroShare06.exe" "" "$INSTDIR\RetroShare06.exe" 0 SectionEnd Section $(Section_QuickLaunch) Section_QuickLaunch - CreateShortCut "$QUICKLAUNCH\${APPNAME}.lnk" "$INSTDIR\RetroShare.exe" "" "$INSTDIR\RetroShare.exe" 0 + CreateShortCut "$QUICKLAUNCH\${APPNAME}.lnk" "$INSTDIR\RetroShare06.exe" "" "$INSTDIR\RetroShare06.exe" 0 SectionEnd SectionGroupEnd Section $(Section_AutoStart) Section_AutoStart - WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "RetroShare" "$INSTDIR\${APPNAME}.exe -m" + WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "RetroShare" "$INSTDIR\${APPNAME}06.exe -m" SectionEnd ;Section $(Section_AutoStart) Section_AutoStart -; CreateShortCut "$SMSTARTUP\${APPNAME}.lnk" "$INSTDIR\RetroShare.exe" "" "$INSTDIR\RetroShare.exe -m" 0 +; CreateShortCut "$SMSTARTUP\${APPNAME}.lnk" "$INSTDIR\RetroShare06.exe" "" "$INSTDIR\RetroShare06.exe -m" 0 ;SectionEnd Section -FinishSection @@ -320,7 +320,7 @@ Section -FinishSection WriteRegStr HKLM "Software\${APPNAME}" "Version" "${VERSION}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayName" "${APPNAME}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayVersion" "${VERSION}" - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayIcon" "$INSTDIR\RetroShare.exe" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayIcon" "$INSTDIR\RetroShare06.exe" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "Publisher" "${PUBLISHER}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "NoModify" "1" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "NoRepair" "1" From 06b7417eed49377ae03d4ce2bf8f8302c67c5c68 Mon Sep 17 00:00:00 2001 From: Cyril Soler Date: Tue, 2 Feb 2016 12:34:10 -0500 Subject: [PATCH 08/23] added comment in rsinit.cc for the initialisation of NetService for GxsIds --- libretroshare/src/rsserver/rsinit.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/libretroshare/src/rsserver/rsinit.cc b/libretroshare/src/rsserver/rsinit.cc index 5cdbaf521..abaacc2d5 100644 --- a/libretroshare/src/rsserver/rsinit.cc +++ b/libretroshare/src/rsserver/rsinit.cc @@ -1336,7 +1336,14 @@ int RsServer::StartupRetroShare() false,false); // don't synchronise group automatic (need explicit group request) // don't sync messages at all. + // Normally we wouldn't need this (we do in other service): + // mGxsIdService->setNetworkExchangeService(gxsid_ns) ; + // ...since GxsIds are propagated manually. But that requires the gen exchange of GXSids to + // constantly test that mNetService is not null. The call below is to make the service aware of the + // netService so that it can request the missing ids. We'll need to fix this. + mGxsIdService->setNes(gxsid_ns); + /**** GxsCircle service ****/ // create GXS Circle service From ca8eee50d6fbea05630c4321f5c1eb15d777d668 Mon Sep 17 00:00:00 2001 From: thunder2 Date: Tue, 2 Feb 2016 19:36:35 +0100 Subject: [PATCH 09/23] Updated english translation --- plugins/VOIP/lang/VOIP_en.ts | 248 +++- retroshare-gui/src/lang/retroshare_en.ts | 1305 ++++++++++++++-------- 2 files changed, 1052 insertions(+), 501 deletions(-) diff --git a/plugins/VOIP/lang/VOIP_en.ts b/plugins/VOIP/lang/VOIP_en.ts index 05ec2f65f..c1e5b12b3 100644 --- a/plugins/VOIP/lang/VOIP_en.ts +++ b/plugins/VOIP/lang/VOIP_en.ts @@ -134,11 +134,36 @@ Video Processing + + + Available bandwidth: + + + + + <html><head/><body><p>Use this field to simulate the maximum bandwidth available so as to preview what the encoded video will look like with the corresponding compression rate.</p></body></html> + + + + + KB/s + + + + + <html><head/><body><p>Display encoded (and then decoded) frame, to check the codec's quality. If not selected, the image above only shows the frame that is grabbed from your camera.</p></body></html> + + + + + preview + + AudioInputConfig - + Continuous @@ -168,7 +193,7 @@ - + VOIP @@ -460,7 +485,7 @@ QObject - + <h3>RetroShare VOIP plugin</h3><br/> * Contributors: Cyril Soler, Josselin Jacquard<br/> @@ -502,31 +527,111 @@ This plugin provides voice communication between friends in RetroShare. + + + + + + VOIP + + + + + Incoming audio call + + + + + Incoming video call + + + + + Outgoing audio call + + + + + Outgoing video call + + VOIPChatWidgetHolder - + + Mute - + + Start Call - + + Start Video Call - + + Hangup Call - + + + Hide Chat Text + + + + + + + Fullscreen mode + + + + + %1 inviting you to start an audio conversation. Do you want Accept or Decline the invitation? + + + + + Accept Audio Call + + + + + Decline Audio Call + + + + + Refuse audio call + + + + + %1 inviting you to start a video conversation. Do you want Accept or Decline the invitation? + + + + + Decline Video Call + + + + + Refuse video call + + + + Mute yourself @@ -536,83 +641,129 @@ - - - - - - + + Waiting your friend respond your video call. + + + + + Your friend is calling you for video. Respond. + + + + + + + + + + + + + + VoIP Status - - Outgoing Call stopped. - - - - + Hold Call - + Outgoing Call is started... - + Resume Call - + + Outgoing Audio Call stopped. + + + + Shut camera off - + You're now sending video... - - + + Activate camera - + Video call stopped - - %1 inviting you to start a video conversation. do you want Accept or Decline the invitation? - - - - + Accept Video Call - - %1 inviting you to start a audio conversation. do you want Accept or Decline the invitation? - - - - - Accept Call - - - - + Activate audio + + + Show Chat Text + + + + + Return to normal view. + + + + + %1 hang up. Your call is closed. + + + + + %1 hang up. Your audio call is closed. + + + + + %1 hang up. Your video call is closed. + + + %1 accepted your audio call. + + + + + %1 accepted your video call. + + + + + Waiting your friend respond your audio call. + + + + + Your friend is calling you for audio. Respond. + + + + + Answer @@ -620,7 +771,7 @@ VOIPPlugin - + VOIP @@ -637,6 +788,11 @@ Answer with video + + + Decline + + VOIPToasterNotify @@ -750,7 +906,7 @@ voipGraphSource - + Required bandwidth diff --git a/retroshare-gui/src/lang/retroshare_en.ts b/retroshare-gui/src/lang/retroshare_en.ts index 7fcc06389..971eed7fd 100644 --- a/retroshare-gui/src/lang/retroshare_en.ts +++ b/retroshare-gui/src/lang/retroshare_en.ts @@ -1,6 +1,6 @@ - + AWidget @@ -485,7 +485,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language @@ -525,24 +525,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -637,7 +641,12 @@ p, li { white-space: pre-wrap; } - + + Disable SysTray ToolTip + + + + Icon Size = 32x32 @@ -742,7 +751,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar @@ -948,12 +957,12 @@ p, li { white-space: pre-wrap; } - + Friend: - + Type: @@ -973,10 +982,15 @@ p, li { white-space: pre-wrap; } - + Unit: + + + Log scale + + ChannelPage @@ -1006,14 +1020,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -1027,7 +1033,7 @@ p, li { white-space: pre-wrap; } - + Mute participant @@ -1037,7 +1043,17 @@ p, li { white-space: pre-wrap; } - + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby @@ -1057,7 +1073,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 @@ -1067,13 +1083,13 @@ p, li { white-space: pre-wrap; } - + Lobby chat - + Lobby management @@ -1105,7 +1121,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1120,12 +1136,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1258,7 +1274,7 @@ p, li { white-space: pre-wrap; } - + Private @@ -1268,12 +1284,17 @@ p, li { white-space: pre-wrap; } - + + Anonymous IDs accepted + + + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1283,7 +1304,7 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 @@ -1293,7 +1314,7 @@ p, li { white-space: pre-wrap; } - + Search Name @@ -1368,14 +1389,14 @@ p, li { white-space: pre-wrap; } - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1405,7 +1426,7 @@ Double click lobbies to enter and chat. - + Default identity is anonymous @@ -1420,12 +1441,7 @@ Double click lobbies to enter and chat. - - Anonymous ids accepted - - - - + You will need to create a non anonymous identity in order to join this chat lobby. @@ -1435,12 +1451,12 @@ Double click lobbies to enter and chat. - + Choose an identity for this lobby: - + Create an identity and enter this lobby @@ -1507,12 +1523,37 @@ Double click lobbies to enter and chat. ChatPage - + General - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings @@ -1656,7 +1697,7 @@ Double click lobbies to enter and chat. - + Incoming @@ -1700,6 +1741,16 @@ Double click lobbies to enter and chat. System message + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1791,7 +1842,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1814,7 +1865,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat @@ -1863,17 +1914,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close - + Send - + Bold @@ -1888,12 +1939,12 @@ Double click lobbies to enter and chat. - + Attach a Picture - + Strike @@ -1944,12 +1995,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - + Do you really want to physically delete the history? @@ -1974,7 +2050,7 @@ Double click lobbies to enter and chat. - + appears to be Offline. @@ -1999,7 +2075,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -2021,7 +2097,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -2036,12 +2112,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -2051,7 +2127,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -2062,7 +2138,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -2097,12 +2173,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -2112,7 +2188,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2398,6 +2474,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2453,7 +2534,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2506,13 +2587,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2532,7 +2608,17 @@ Double click lobbies to enter and chat. - + + Please, paste your friend's Retroshare certificate into the box below + + + + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2622,7 +2708,7 @@ Double click lobbies to enter and chat. - + GMail @@ -2647,7 +2733,12 @@ Double click lobbies to enter and chat. - + + Email + + + + Invite Friends by Email @@ -2727,7 +2818,7 @@ resources. - + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: @@ -2758,12 +2849,7 @@ resources. - - Please, paste your friend's PGP certificate into the box below - - - - + Add friend to group: @@ -3073,7 +3159,12 @@ resources. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: @@ -3163,7 +3254,7 @@ even if you don't make friends. - + Paste Cert of your friend from Clipboard @@ -4025,7 +4116,7 @@ p, li { white-space: pre-wrap; } - + Forum @@ -4035,7 +4126,7 @@ p, li { white-space: pre-wrap; } - + Attach File @@ -4065,12 +4156,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -4108,12 +4199,12 @@ p, li { white-space: pre-wrap; } - + Send - + Forum Message @@ -4124,7 +4215,7 @@ Do you want to reject this message? - + Post as @@ -4372,7 +4463,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4394,7 +4490,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4522,7 +4618,7 @@ Do you want to reject this message? - + Name @@ -4638,7 +4734,7 @@ Do you want to reject this message? - + IP @@ -4648,7 +4744,12 @@ Do you want to reject this message? - + + Copy %1 to clipboard + + + + Unknown NetState @@ -4853,7 +4954,7 @@ Do you want to reject this message? - + RELAY END @@ -4887,19 +4988,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4909,9 +5015,10 @@ Do you want to reject this message? - + + DHT @@ -4986,7 +5093,7 @@ Do you want to reject this message? - + Filter: @@ -4997,6 +5104,7 @@ Do you want to reject this message? + Peers @@ -5011,7 +5119,7 @@ Do you want to reject this message? - + Proxy VIA @@ -5424,7 +5532,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5822,7 +5930,7 @@ at least one peer was not added to a group - + Mark all @@ -6079,7 +6187,7 @@ anonymous, you can use a fake email. - + Failed to generate your new certificate, maybe PGP password is wrong! @@ -6112,7 +6220,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -6318,12 +6426,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6488,23 +6596,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6518,8 +6621,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6528,35 +6643,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6565,7 +6658,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6663,10 +6771,15 @@ p, li { white-space: pre-wrap; } - + ID + + + Identity Name + + Destinaton @@ -6703,7 +6816,17 @@ p, li { white-space: pre-wrap; } - + + Branching factor + + + + + Details + + + + Unknown Peer @@ -6721,7 +6844,7 @@ p, li { white-space: pre-wrap; } GlobalRouterStatisticsWidget - + Managed keys @@ -6731,24 +6854,16 @@ p, li { white-space: pre-wrap; } - - Friend Order ( + + [Unknown identity] - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6928,7 +7043,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -6948,7 +7063,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6962,13 +7077,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -7671,7 +7791,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7803,12 +7923,12 @@ before you can comment - + Start new Thread for Selected Forum - + Search forums @@ -7829,7 +7949,7 @@ before you can comment - + Title @@ -7842,13 +7962,18 @@ before you can comment - + Author - - + + Save image + + + + + Loading @@ -7878,7 +8003,7 @@ before you can comment - + Search Title @@ -7903,7 +8028,7 @@ before you can comment - + No name @@ -7961,7 +8086,7 @@ before you can comment - + Hide @@ -7971,17 +8096,38 @@ before you can comment - + + This message was obtained from %1 + + + + [Banned] - + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + [ ... Redacted message ... ] - + Anonymous @@ -8024,28 +8170,32 @@ before you can comment + + RetroShare - + No Forum Selected! + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -8070,7 +8220,7 @@ before you can comment - + Forum name @@ -8085,7 +8235,7 @@ before you can comment - + Description @@ -8095,7 +8245,7 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> @@ -8173,13 +8323,13 @@ before you can comment GxsGroupDialog - - + + Name - + Add Icon @@ -8194,7 +8344,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -8204,36 +8354,36 @@ before you can comment - - + + Description - + Message Distribution - + Public - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -8263,7 +8413,7 @@ before you can comment - + PGP Required @@ -8279,12 +8429,12 @@ before you can comment - + Comments - + Allow Comments @@ -8294,33 +8444,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -8330,12 +8520,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8408,7 +8598,7 @@ before you can comment - + Unsubscribe @@ -8418,12 +8608,12 @@ before you can comment - + Open in new tab - + Show Details @@ -8461,7 +8651,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8545,6 +8735,49 @@ before you can comment + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -9034,34 +9267,29 @@ p, li { white-space: pre-wrap; } IdDialog - + New ID - + + All - - + + Reputation - - - Todo - - - Search - + Unknown real name @@ -9071,12 +9299,17 @@ p, li { white-space: pre-wrap; } - + Create new Identity - + + Persons + + + + Edit identity @@ -9097,12 +9330,7 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : @@ -9112,17 +9340,22 @@ p, li { white-space: pre-wrap; } - + + () + + + + Identity ID - + Send message - + Identity info @@ -9142,7 +9375,12 @@ p, li { white-space: pre-wrap; } - + + Send Invite + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> @@ -9207,7 +9445,12 @@ p, li { white-space: pre-wrap; } - + + Contacts + + + + Owned by you @@ -9217,7 +9460,17 @@ p, li { white-space: pre-wrap; } - + + ID + + + + + Search ID + + + + This identity is owned by you @@ -9233,7 +9486,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -9258,7 +9511,32 @@ p, li { white-space: pre-wrap; } - + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -9268,15 +9546,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -9297,12 +9595,12 @@ p, li { white-space: pre-wrap; } - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - + Linked to a friend Retroshare node @@ -9317,7 +9615,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -9327,12 +9625,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - + Distant chat refused with this person. @@ -9342,7 +9635,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -9357,17 +9650,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - + Node name: @@ -9377,7 +9670,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9420,8 +9713,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9465,7 +9758,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9520,7 +9813,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9618,16 +9911,35 @@ p, li { white-space: pre-wrap; } + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9637,7 +9949,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9814,7 +10126,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9884,7 +10196,7 @@ p, li { white-space: pre-wrap; } - + Add @@ -9909,7 +10221,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9918,38 +10230,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -10030,7 +10321,7 @@ p, li { white-space: pre-wrap; } - + Subject: @@ -10041,12 +10332,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -10056,7 +10357,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -10126,7 +10427,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -10151,7 +10452,22 @@ p, li { white-space: pre-wrap; } - + + All addresses (mixed) + + + + + All people + + + + + My contacts + + + + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -10223,19 +10539,21 @@ Do you want to save message to draft box? - + + To - + + Cc - + Sent @@ -10277,12 +10595,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown @@ -10444,12 +10763,7 @@ Do you want to save message ? - - Show: - - - - + Close @@ -10459,22 +10773,12 @@ Do you want to save message ? - - All - - - - + Friend Nodes - - Distant peer identities - - - - + Bullet list (disc) @@ -10514,7 +10818,7 @@ Do you want to save message ? - + Thanks, <br> @@ -10542,7 +10846,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10557,7 +10881,7 @@ Do you want to save message ? - + Tags @@ -10597,7 +10921,7 @@ Do you want to save message ? - + Edit Tag @@ -10607,22 +10931,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10978,16 +11292,16 @@ Do you want to save message ? - - + + Inbox - - + + Outbox @@ -10999,14 +11313,14 @@ Do you want to save message ? - + Sent - + Trash @@ -11075,7 +11389,7 @@ Do you want to save message ? - + Reply to All @@ -11093,12 +11407,12 @@ Do you want to save message ? - + From - + Date @@ -11126,12 +11440,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -11256,14 +11570,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -11283,7 +11597,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -11298,12 +11617,12 @@ Do you want to save message ? - + Click to sort by signature - + This message was signed and the signature checks @@ -11313,7 +11632,7 @@ Do you want to save message ? - + This message comes from a distant person. @@ -11339,10 +11658,20 @@ Do you want to save message ? MimeTextEdit - + Paste as plain text + + + Spoiler + + + + + Select text to hide, then push this button + + Paste RetroShare Link @@ -11378,7 +11707,7 @@ Do you want to save message ? - + Expand @@ -12101,7 +12430,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -12141,7 +12470,7 @@ Reported error: - + Test @@ -12156,13 +12485,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -12234,12 +12563,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -12274,33 +12613,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -12311,6 +12668,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -12365,7 +12727,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12539,12 +12901,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12896,7 +13258,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12957,7 +13319,7 @@ p, li { white-space: pre-wrap; } - + Plugin look-up directories @@ -13029,7 +13391,7 @@ malicious behavior of crafted plugins. - + Plugins @@ -13102,11 +13464,16 @@ malicious behavior of crafted plugins. PopupDistantChatDialog + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -13116,12 +13483,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -13485,7 +13847,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13829,7 +14191,7 @@ p, li { white-space: pre-wrap; } QObject - + Confirmation @@ -14038,7 +14400,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -14123,11 +14485,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -14212,13 +14569,7 @@ Reported error is: - - -Security: no anonymous ids - - - - + Join chat lobby @@ -14239,7 +14590,7 @@ Security: no anonymous ids - + %1 seconds ago @@ -14280,7 +14631,7 @@ Security: no anonymous ids - + Subject: @@ -14299,6 +14650,12 @@ Security: no anonymous ids Id: + + + +Security: no anonymous IDs + + @@ -14603,7 +14960,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14826,7 +15183,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -15162,7 +15519,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -15265,7 +15622,7 @@ Reducing image to %1x%2 pixels? SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15446,12 +15803,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download @@ -15520,7 +15877,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15540,7 +15897,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15834,12 +16191,12 @@ Reducing image to %1x%2 pixels? - + Local Address - + External Address @@ -16012,7 +16369,12 @@ Also check your ports! - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test @@ -16022,7 +16384,7 @@ Also check your ports! - + IP Filters @@ -16110,12 +16472,32 @@ Also check your ports! - + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + I2P Socks Proxy - + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + I2P outgoing Okay @@ -16136,12 +16518,7 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why - - <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - + Service Address @@ -16158,6 +16535,11 @@ You can connect to Hidden Nodes, even if you are running a standard Node, so why + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + incoming ok @@ -16214,7 +16596,7 @@ If you have issues connecting over Tor check the Tor logs too. - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> @@ -16275,7 +16657,7 @@ If you have issues connecting over Tor check the Tor logs too. - + Tor outgoing Okay @@ -16601,7 +16983,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -16626,7 +17008,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16642,7 +17024,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16665,7 +17047,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16691,11 +17073,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16704,6 +17087,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -17371,7 +17759,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17504,16 +17892,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17783,39 +18173,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay - - + + Waiting - + Downloading - + Complete - + Queued @@ -17849,7 +18239,7 @@ Try to be patient! - + Transferring @@ -17859,7 +18249,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17917,7 +18307,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -18049,7 +18439,7 @@ Try to be patient! - + Could not delete preview file @@ -18059,7 +18449,7 @@ Try to be patient! - + Create Collection... @@ -18084,12 +18474,12 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers @@ -18130,7 +18520,7 @@ Try to be patient! - + Friends Directories @@ -18173,7 +18563,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -18251,7 +18641,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -18260,16 +18660,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition From 26744d552aef74f49c82967c2a08c9f125b22b12 Mon Sep 17 00:00:00 2001 From: csoler Date: Tue, 2 Feb 2016 22:50:59 -0500 Subject: [PATCH 10/23] worked a bit on the french translation --- retroshare-gui/src/lang/retroshare_fr.ts | 13525 +++++++++------------ 1 file changed, 6084 insertions(+), 7441 deletions(-) diff --git a/retroshare-gui/src/lang/retroshare_fr.ts b/retroshare-gui/src/lang/retroshare_fr.ts index 0bbaa26f1..df49ae28d 100644 --- a/retroshare-gui/src/lang/retroshare_fr.ts +++ b/retroshare-gui/src/lang/retroshare_fr.ts @@ -1,491 +1,406 @@ - + + + AWidget - version - version + version - RetroShare version - Version de RetroShare + Version de RetroShare AboutDialog - - About RetroShare - À propos de Retroshare + À propos de Retroshare - About - À propos + À propos - close - Fermer + Fermer - Max score: %1 - Meilleur score : %1 + Meilleur score : %1 - Score: %1 - Score : %1 + Score : %1 - Level: %1 - Niveau : %1 + Niveau : %1 - Have fun ;-) - Amusez-vous ;-) + Amusez-vous ;-) + + + Copy Info + AddCommentDialog - Add Comment - Ajouter un commentaire + Ajouter un commentaire AddFileAssociationDialog - File type(extension): - Type de fichier (extension) : + Type de fichier (extension) : - Use default command - Utiliser la commande par défaut + Utiliser la commande par défaut - Command - Commande + Commande - RetroShare - Retroshare + Retroshare - - Sorry, can't determine system default command for this file + Sorry, can't determine system default command for this file - Impossible de déterminer la commande système par défaut pour ce fichier + Impossible de déterminer la commande système par défaut pour ce fichier AdvancedSearchDialog - RetroShare: Advanced Search - Retroshare : Recherche avancée + Retroshare : Recherche avancée - Search Criteria - Critère(s) de recherche + Critère(s) de recherche - Add a further search criterion. - Ajouter un critère de recherche. + Ajouter un critère de recherche. - Reset the search criteria. - Réinitialiser les critères de recherche. + Réinitialiser les critères de recherche. - Cancels the search. - Annuler la recherche. + Annuler la recherche. - Cancel - Annuler + Annuler - Perform the advanced search. - Lancer la recherche avancée. + Lancer la recherche avancée. - Search - Rechercher + Rechercher AlbumCreateDialog - - Create Album - Créer un album + Créer un album - Album Name: - Nom de l'album : + Nom de l'album : - Category: - Catégorie : + Catégorie : - Animals - Animaux + Animaux - Family - Famille + Famille - Friends - Amis + Amis - Flowers - Fleurs + Fleurs - Holiday - Vacance + Vacance - Landscapes - Paysages + Paysages - Pets - Animaux + Animaux - Portraits - Portraits + Portraits - Travel - Voyage + Voyage - Work - Travail + Travail - Random - Aléatoire + Aléatoire - Caption: - Légende : + Légende : - Where: - Où : + Où : - Photographer: - Photographe : + Photographe : - Description: - Description : + Description : - Share Options - Options de partage + Options de partage - Policy: - Politique : + Politique : - Quality: - Qualité : + Qualité : - Comments: - Commentaires : + Commentaires : - Identity: - Identité : + Identité : - Public - Public + Public - Restricted - Limité + Limité - Resize Images (< 1Mb) - Redimensionner les images (< 1Mo) + Redimensionner les images (< 1Mo) - Resize Images (< 10Mb) - Redimensionner les images (< 10Mo) + Redimensionner les images (< 10Mo) - Send Original Images - Envoyer images originales + Envoyer images originales - No Comments Allowed - Aucun commentaire admis + Aucun commentaire admis - Authenticated Comments - Commentaires authentifiés + Commentaires authentifiés - Any Comments Allowed - Aucun commentaire admis + Aucun commentaire admis - Publish with Identity - Publier avec l'identité + Publier avec l'identité - <!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; font-weight:600;"> Drag &amp; Drop to insert pictures. Click on a picture to edit details below.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Glissez &amp; Déposez pour insérer des images. Cliquez sur une image pour modifier les détails ci-dessous.</span></p></body></html> - Back - Retour + Retour - Add Photos - Ajouter photos + Ajouter photos - Publish Album - Publier l'album + Publier l'album - Untitle Album - Album sans titre + Album sans titre - Say something about this album... - Donnez des détails sur cette album... + Donnez des détails sur cette album... - Where were these taken? - Où cela a été pris ? + Où cela a été pris ? - Load Album Thumbnail - Charger la miniature de l'album + Charger la miniature de l'album AlbumDialog - - Album - Album + Album - Album Thumbnail - Miniature de l'album + Miniature de l'album - TextLabel - Etiquette + Etiquette - Summary - Résumé + Résumé - Album Title: - Titre de l'album : + Titre de l'album : - Category: - Catégorie : + Catégorie : - Caption - Légende + Légende - Where: - Où : + Où : - When - Quand : + Quand : - Description: - Description : + Description : - Share Options - options de partage + options de partage - Comments - Commentaires + Commentaires - Publish Identity - Publier l'identité + Publier l'identité - Visibility - Visibilité + Visibilité - <!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; font-weight:600;"> Drag &amp; Drop to insert pictures. Click on a picture to edit details below.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Glissez &amp; Déposez pour insérer des photos. Cliquez sur une photo pour modifier les détails ci-dessous.</span></p></body></html> - Add Photo - Ajouter une photo + Ajouter une photo - Edit Photo - Modifier la photo + Modifier la photo - Delete Photo - Supprimer la photo + Supprimer la photo - Publish Photos - Publier la photo + Publier la photo AlbumItem - Form - Formulaire + Formulaire - - - TextLabel - Etiquette + Etiquette - <!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; font-weight:600;">Album Title :</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Titre de l'album :</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; font-weight:600;">Photographer :</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;"> @@ -495,2968 +410,2648 @@ p, li { white-space: pre-wrap; } AppearancePage - Language - Langue + Langue - Changes to language will only take effect after restarting RetroShare! - Les modifications apportées à la langue ne prendront effet qu'après le redémarrage de Retroshare ! + Les modifications apportées à la langue ne prendront effet qu'après le redémarrage de Retroshare ! - Choose the language used in RetroShare - Choisissez la langue utilisée dans Retroshare + Choisissez la langue utilisée dans Retroshare - Style - Style + Style - Choose RetroShare's interface style - Choisissez le style d'interface de Retroshare + Choisissez le style d'interface de Retroshare - Style Sheet - Feuille de style + Feuille de style - Appearance - Apparence + Apparence - Tool Bar - Barre d'outils + Barre d'outils - - On Tool Bar - Sur la barre d'outils + Sur la barre d'outils - - On List Item - Article sur liste + Article sur liste - Where do you want to have the buttons for menu? - Où voulez-vous avoir les boutons pour le menu ? + Où voulez-vous avoir les boutons pour le menu ? - Where do you want to have the buttons for the page? - Où voulez-vous avoir les boutons pour la page ? + Où voulez-vous avoir les boutons pour la page ? - Icon Only - Icône seulement + Icône seulement - Text Only - Texte seulement + Texte seulement - Text Beside Icon - Texte à côté de l'icône + Texte à côté de l'icône - Text Under Icon - Texte en dessous de l'icône + Texte en dessous de l'icône - Choose the style of Tool Buttons. - Choisissez le style des boutons outils. + Choisissez le style des boutons outils. - Choose the style of List Items. - Choisissez le style de la liste d'articles. + Choisissez le style de la liste d'articles. - - Icon Size = 8x8 - Taille d'icône = 8x8 + Taille d'icône = 8x8 - - Icon Size = 16x16 - Taille d'icône = 16x16 + Taille d'icône = 16x16 - - Icon Size = 24x24 - Taille d'icône = 24x24 + Taille d'icône = 24x24 - Status Bar - Barre de statut + Barre de statut - Remove surplus text in status bar. - Enlever le texte en surplus dans la barre d'état. + Enlever le texte en surplus dans la barre d'état. - Compact Mode - Mode compact + Mode compact - Hide Sound Status - Cacher le statut du son + Cacher le statut du son - Hide Toaster Disable - Cesser de cacher les notifications grille-pain + Cesser de cacher les notifications grille-pain - Show SysTray on Status Bar - Afficher zone de notification sur la barre de statut + Afficher zone de notification sur la barre de statut - - Icon Size = 32x32 - Taille icône = 32x32 + Taille icône = 32x32 + + + On List Ite&m + + + + Icon Size = 64x64 + + + + Icon Size = 128x128 + + + + Disable SysTray ToolTip + ApplicationWindow - - RetroShare - Retroshare + Retroshare - Warning: The services here are experimental. Please help us test them. But Remember: Any data here *WILL* be lost when we upgrade the protocols. - Avertissements : Ces services sont expérimentaux. Aidez nous à les tester + Avertissements : Ces services sont expérimentaux. Aidez nous à les tester Mais rappelez-vous : Toutes les données *SERONT* perdus quand nous mettrons à jour les protocoles. - Identities - Identités + Identités - Circles - Cercles + Cercles - GxsForums - GxsForums + GxsForums - GxsChannels - ChaînesGxs + ChaînesGxs - The Wire - The Wire + The Wire - Photos - Photos + Photos AttachFileItem - %p Kb - %p Ko + %p Ko - Cancel Download - Annuler le téléchargement + Annuler le téléchargement - [ERROR]) - [ERREUR] + [ERREUR] AvatarDialog - Change Avatar - Changer l'avatar + Changer l'avatar - Your Avatar Picture - Votre image avatar + Votre image avatar - Add Avatar - Ajouter avatar + Ajouter avatar - Remove - Supprimer + Supprimer - Set your Avatar picture - Mettre votre image d'avatar + Mettre votre image d'avatar - Load Avatar - Charger l'avatar + Charger l'avatar AvatarWidget - Click to change your avatar - Cliquez pour modifier votre avatar + Cliquez pour modifier votre avatar BWGraphSource - KB/s - KO/s + KO/s BWListDelegate - N/A - N/A + N/A BandwidthGraph - RetroShare Bandwidth Usage - Utilisation de la bande passante par Retroshare + Utilisation de la bande passante par Retroshare - - Show Settings - Options + Options - Reset - Réinitialiser + Réinitialiser - Receive Rate - Vitesse de réception + Vitesse de réception - Send Rate - Vitesse d'émission + Vitesse d'émission - Always on Top - Toujours visible + Toujours visible - Style - Style + Style - Changes the transparency of the Bandwidth Graph - Modifier la transparence du graphique de bande passande + Modifier la transparence du graphique de bande passande - 100 - 100 + 100 - % Opaque - % opaque + % opaque - Save - Sauvegarder + Sauvegarder - Cancel - Annuler + Annuler - Since: - Statistiques enregistrées depuis : + Statistiques enregistrées depuis : - Hide Settings - Masquer les options + Masquer les options + + + + BandwidthStatsWidget + + Sum + + + + All + Tout + + + KB/s + KO/s + + + Count + Participants BwCtrlWindow - Name - Nom + Nom - ID - ID + ID - In (KB/s) - In (Ko/s) + In (Ko/s) - InMax (KB/s) - InMax (Ko/s) + InMax (Ko/s) - InQueue - InQueue + InQueue - InAllocated (KB/s) - InAllocated (Ko/s) + InAllocated (Ko/s) - Allocated Sent - Allocated Sent + Allocated Sent - Out (KB/s) - Out (Ko/s) + Out (Ko/s) - OutMax (KB/s) - OutMax (Ko/s) + OutMax (Ko/s) - OutQueue - OutQueue + OutQueue - OutAllowed (KB/s) - OutAllowed (Ko/s) + OutAllowed (Ko/s) - Allowed Recvd - Allowed Recvd + Allowed Recvd - TOTALS - TOTAUX + TOTAUX - Totals - Totaux + Totaux - Form - Formulaire + Formulaire + + + + BwStatsWidget + + Form + Formulaire + + + Friend: + + + + Type: + Type : + + + Up + + + + Down + + + + Service: + + + + Unit: + + + + Log scale + + + + + CalDialog + + Form + Formulaire + + + Local Calendars + + + + Shared Calendar List + + + + Share Details + + + + Name: + + + + Location: + Emplacement : + + + ... + ... + + + Status: + + + + Private + Privé + + + Public + Public + + + Allow List: + + + + <Disabled> + + + + Add + Ajouter + + + Remove + + + + Peer Calendars + ChannelPage - Channels - Chaînes + Chaînes - Tabs - Onglets + Onglets - General - Général + Général - Load posts in background (Thread) - Charger les messages en tâche de fond (fil, thread) + Charger les messages en tâche de fond (fil, thread) - Open each channel in a new tab - Ouvrir chaque chaîne dans un nouvel onglet + Ouvrir chaque chaîne dans un nouvel onglet ChatDialog - Talking to - Parlant à + Parlant à ChatLobbyDialog - Participants - Participants + Participants - Change nick name - Changer de pseudo + Changer de pseudo - Mute participant - Mute le participant + Mute le participant - Invite friends to this lobby - Inviter des amis à ce salon + Inviter des amis à ce salon - Leave this lobby (Unsubscribe) - Quitter ce salon (se désabonner) + Quitter ce salon (se désabonner) - Invite friends - Inviter des amis + Inviter des amis - Select friends to invite: - Selectionner les amis à inviter : + Selectionner les amis à inviter : - Welcome to lobby %1 - Bienvenue dans le salon %1 + Bienvenue dans le salon %1 - Topic: %1 - Sujet : %1 + Sujet : %1 - - Lobby chat - Salons de tchat + Salons de tchat - - - Lobby management - Gestionnaire du salon + Gestionnaire du salon - %1 has left the lobby. - %1 a quitté le salon. + %1 a quitté le salon. - %1 joined the lobby. - %1 a rejoint le salon. + %1 a rejoint le salon. - %1 changed his name to: %2 - %1 a changé son nom en : %2 + %1 a changé son nom en : %2 - Unsubscribe to lobby - Quitter le salon + Quitter le salon - Do you want to unsubscribe to this chat lobby? - Voulez-vous vraiment quitter ce salon ? + Voulez-vous vraiment quitter ce salon ? - Right click to mute/unmute participants<br/>Double click to address this person<br/> - Clic droit pour mute/de-mute les participants<br/>Double clic pour s'adresser à cette personne<br/> + Clic droit pour mute/de-mute les participants<br/>Double clic pour s'adresser à cette personne<br/> - This participant is not active since: - Ce participant n'est pas actif depuis : + Ce participant n'est pas actif depuis : - seconds - secondes + secondes - Start private chat - Démarrer un tchat privé + Démarrer un tchat privé - Decryption failed. - Le décryptage a échoué. + Le décryptage a échoué. - Signature mismatch - Disparité de signature + Disparité de signature - Unknown key - Clé inconnue + Clé inconnue - Unknown hash - Hash inconnu + Hash inconnu - Unknown error. - Erreur inconnue. + Erreur inconnue. - Cannot start distant chat - Ne peut pas commencer le tchat distant + Ne peut pas commencer le tchat distant - Distant chat cannot be initiated: - Le tchat distant ne peut pas être amorcé : + Le tchat distant ne peut pas être amorcé : + + + Send Message + Envoyer le message + + + Sort by Name + Trier par nom + + + Sort by Activity + ChatLobbyToaster - Show Chat Lobby - Afficher le salon de tchat + Afficher le salon de tchat ChatLobbyUserNotify - Chat Lobbies - Salons de tchat + Salons de tchat - You have %1 new messages - Vous avez %1 nouveaux messages + Vous avez %1 nouveaux messages - You have %1 new message - Vous avez %1 nouveau message + Vous avez %1 nouveau message - %1 new messages - %1 nouveaux messages + %1 nouveaux messages - %1 new message - %1 nouveau message + %1 nouveau message - Unknown Lobby - Salon inconnu + Salon inconnu - - Remove All - Tout supprimer + Tout supprimer ChatLobbyWidget - Chat lobbies - Salons de tchat + Salons de tchat - - Name - Nom + Nom - Count - Participants + Participants - Topic - Sujet + Sujet - Private Lobbies - Salons privés + Salons privés - Public Lobbies - Salons publics + Salons publics - - Create chat lobby - Créer un nouveau salon de tchat + Créer un nouveau salon de tchat - - [No topic provided] - [Sans sujet déterminé] + [Sans sujet déterminé] - Selected lobby info - Info du salon sélectionné + Info du salon sélectionné - Private - Privé + Privé - Public - Public + Public - You're not subscribed to this lobby; Double click-it to enter and chat. - Vous n'êtes pas abonné à ce salon. Double cliquer dessus pour y accéder et discuter. + Vous n'êtes pas abonné à ce salon. Double cliquer dessus pour y accéder et discuter. - Remove Auto Subscribe - Retirer des abonnements auto + Retirer des abonnements auto - Add Auto Subscribe - Ajouter aux abonnements auto + Ajouter aux abonnements auto - %1 invites you to chat lobby named %2 - %1 vous invite dans le salon de tchat %2 + %1 vous invite dans le salon de tchat %2 - Search Chat lobbies - Rechercher des salons de tchat + Rechercher des salons de tchat - Search Name - Rechercher par nom + Rechercher par nom - Subscribed - Abonné + Abonné - Columns - Colonnes + Colonnes - Yes - Oui + Oui - No - Non + Non - Lobby Name: - Nom du salon : + Nom du salon : - Lobby Id: - Id du salon : + Id du salon : - Topic: - Sujet : + Sujet : - Type: - Type : + Type : - Peers: - Contacts : + Contacts : - - - - - TextLabel - Etiquette + Etiquette - No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - Aucun salon sélectionné. + Aucun salon sélectionné. Sélectionner un salon à gauche pour afficher ses détails. Double cliquer sur le salon pour y accéder et discuter. - Private Subscribed Lobbies - Salons abonnés privés + Salons abonnés privés - Public Subscribed Lobbies - Salons abonnés publics + Salons abonnés publics - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Salons de tchat</h1> <p>Le salons de tchat sont des salles de tchat distribuées, et marchent presque de la même façon que IRC. Elles vous permettent de discuter anonymement avec beaucoup de gens sans le besoin de faire des amis.</p> <p>Un salon de tchat peut être de type public (vos amis le voient) ou privé (vos amis ne le voient pas, à moins que vous les invitiez avec <img src=":/images/add_24x24.png" width=12/>). Une fois que vous avez été invité à un salon privé, vous serez capable de le voir lorsque vos amis l'utiliseront.</p> <p>La liste à gauche montre les salons de tchat que auxquels vos amis participent. Vous pouvez soit <ul> <li>Faire un clic droit pour créer un nouveau salon de tchat</li> <li>Faire un double clic sur un salon pour y entrer, tchatter, et le montrer à vos amis</li> </ul> Note : pour que les salons de tchat fonctionnent correctement, votre ordinateur doit être à l'heure. Alors vérifiez l'horloge de votre système ! </p> + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Salons de tchat</h1> <p>Le salons de tchat sont des salles de tchat distribuées, et marchent presque de la même façon que IRC. Elles vous permettent de discuter anonymement avec beaucoup de gens sans le besoin de faire des amis.</p> <p>Un salon de tchat peut être de type public (vos amis le voient) ou privé (vos amis ne le voient pas, à moins que vous les invitiez avec <img src=":/images/add_24x24.png" width=12/>). Une fois que vous avez été invité à un salon privé, vous serez capable de le voir lorsque vos amis l'utiliseront.</p> <p>La liste à gauche montre les salons de tchat que auxquels vos amis participent. Vous pouvez soit <ul> <li>Faire un clic droit pour créer un nouveau salon de tchat</li> <li>Faire un double clic sur un salon pour y entrer, tchatter, et le montrer à vos amis</li> </ul> Note : pour que les salons de tchat fonctionnent correctement, votre ordinateur doit être à l'heure. Alors vérifiez l'horloge de votre système ! </p> - Chat Lobbies - Salons de tchat + Salons de tchat - Leave this lobby - Quitter ce salon + Quitter ce salon - Enter this lobby - Entrer dans ce salon + Entrer dans ce salon - Enter this lobby as... - Entrer dans ce salon en tant que ... + Entrer dans ce salon en tant que ... - You will need to create an identity in order to join chat lobbies. - Vous devrez créer une identité afin de rejoindre des salons de tchat. + Vous devrez créer une identité afin de rejoindre des salons de tchat. - Choose an identity for this lobby: - Choisissez une identité pour ce salon : + Choisissez une identité pour ce salon : - Create an identity and enter this lobby - Créer une identité pour entrer dans ce salon + Créer une identité pour entrer dans ce salon - - - Show - Montrer + Montrer - - - column - colonn + colonn + + + Security: + + + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + Create a non anonymous identity and enter this lobby + + + + Default identity is anonymous + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + No anonymous IDs + + + + Anonymous IDs accepted + + + + You will need to create a non anonymous identity in order to join this chat lobby. + ChatMsgItem - Remove Item - Supprimer + Supprimer - Write a quick Message - Ecrire un message instantané + Ecrire un message instantané - Send Mail - Envoyer un message électronique + Envoyer un message électronique - Write Message - Envoyer un message + Envoyer un message - - Start Chat - Dialoguer + Dialoguer - Send - Envoyer + Envoyer - Cancel - Annuler + Annuler - Quick Message - Message instantané + Message instantané ChatPage - - General - Général + Général - Chat Settings - Paramètres du tchat + Paramètres du tchat - Enable Emoticons Private Chat - Activer les émoticônes pour le tchat privé + Activer les émoticônes pour le tchat privé - Enable Emoticons Group Chat - Activer les émoticônes pour le tchat public + Activer les émoticônes pour le tchat public - Enable custom fonts - Activer les polices personnalisées + Activer les polices personnalisées - Enable custom font size - Activer la taille de la police personnalisée + Activer la taille de la police personnalisée - Enable bold - Activer le gras + Activer le gras - Enable italics - Activer l'italique + Activer l'italique - Minimum text contrast - Contraste de texte minimal + Contraste de texte minimal - Send message with Ctrl+Return - Envoyer les messages avec Ctrl+Entrée + Envoyer les messages avec Ctrl+Entrée - Chat Lobby - Salons de tchat + Salons de tchat - Blink tab icon - Icône d'onglet clignotant + Icône d'onglet clignotant - Private Chat - Tchat privé + Tchat privé - Open Window for new chat - Ouvrir une fenêtre lors d'un nouveau message privé + Ouvrir une fenêtre lors d'un nouveau message privé - Grab Focus when chat arrives - Tchat avec nouveau message au premier plan + Tchat avec nouveau message au premier plan - Use a single tabbed window - Utiliser une seule fenêtre à onglets + Utiliser une seule fenêtre à onglets - Blink window/tab icon - Fenêtre/Icône d'onglet clignotant + Fenêtre/Icône d'onglet clignotant - Chat Font - Police d'écriture + Police d'écriture - Change Chat Font - Changer la police du tchat + Changer la police du tchat - Chat Font: - Police d'écriture : + Police d'écriture : - - History - Historique + Historique - Style - Style + Style - - Group chat - Tchat public + Tchat public - - - Variant - Variante + Variante - - - Author: - Auteur : + Auteur : - - - Description: - Description : + Description : - - Private chat - Tchat privé + Tchat privé - Incoming - Entrant + Entrant - Outgoing - Sortant + Sortant - Incoming message in history - Message entrant de l'historique + Message entrant de l'historique - Outgoing message in history - Message sortant de l'historique + Message sortant de l'historique - Incoming message - Message entrant + Message entrant - Outgoing message - Message sortant + Message sortant - Outgoing offline message - Message sortant hors ligne + Message sortant hors ligne - System - Système + Système - System message - Message système + Message système - Chat - Tchat + Tchat - <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> - <html><head/><body><p align="justify">Dans cet onglet, vous pouvez configurer le nombre de messages de tchat que Retroshare gardera sauvegardé sur le disque et combien de la conversation précédente, elle affiche, pour les différents systèmes de discussions. La période de stockage max permet de supprimer les anciens messages et empêche l'historique des conversations de remplir les tchats volatiles (par exemple, les salons de tchat et tchat à distance).</p></body></html> + <html><head/><body><p align="justify">Dans cet onglet, vous pouvez configurer le nombre de messages de tchat que Retroshare gardera sauvegardé sur le disque et combien de la conversation précédente, elle affiche, pour les différents systèmes de discussions. La période de stockage max permet de supprimer les anciens messages et empêche l'historique des conversations de remplir les tchats volatiles (par exemple, les salons de tchat et tchat à distance).</p></body></html> - Chatlobbies - Salons de tchat + Salons de tchat - Enabled: - Activé : + Activé : - Saved messages (0 = unlimited): - Nombre de messages sauvegardés (0 = illimité) : + Nombre de messages sauvegardés (0 = illimité) : - Number of messages restored (0 = off): - Nombre de messages visibles (0 = arrêté) : + Nombre de messages visibles (0 = arrêté) : - Maximum storage period, in days (0=keep all): - Période maximale de stockage, en jours (0=garde tout) : + Période maximale de stockage, en jours (0=garde tout) : - Search by default - Recherche préconfigurée + Recherche préconfigurée - Case sensitive - Respecter la casse + Respecter la casse - Whole Words - Mots entiers + Mots entiers - Move to cursor - Déplacer vers le curseur + Déplacer vers le curseur - Color All Text Found - Colorer tout le texte trouvé + Colorer tout le texte trouvé - Color of found text - Couleur du texte trouvé + Couleur du texte trouvé - Choose color of found text - Choisissez la couleur du texte trouvé + Choisissez la couleur du texte trouvé - Maximum count for coloring matching text - Compte maximum pour colorer le texte correspondant + Compte maximum pour colorer le texte correspondant - Threshold for automatic search - Seuil pour recherche automatique + Seuil pour recherche automatique - Default identity for chat lobbies: - Identité par défaut pour les salons de tchat : + Identité par défaut pour les salons de tchat : - Show Bar by default - Afficher la barre par défaut + Afficher la barre par défaut - Private chat invite from - Invitation de tchat privé reçue de + Invitation de tchat privé reçue de - Name : - Nom : + Nom : - PGP id : - ID PGP : + ID PGP : - Valid until : - Valide jusqu'à : + Valide jusqu'à : + + + Distant Chat + + + + Everyone + + + + Contacts + Contacts + + + Nobody + + + + Accept encrypted distant chat from + + + + Minimum font size + + + + UserName + + + + /me is sending a message with /me + ChatStyle - Standard style for group chat - Le style standard pour le tchat en groupe + Le style standard pour le tchat en groupe - Compact style for group chat - Le style compact pour le tchat public + Le style compact pour le tchat public - Standard style for private chat - Le style standard pour le tchat privé + Le style standard pour le tchat privé - Compact style for private chat - Le style compact pour le chat privé + Le style compact pour le chat privé - Standard style for history - Le style standard pour l'historique + Le style standard pour l'historique - Compact style for history - Le style compact pour l'historique + Le style compact pour l'historique ChatToaster - Show Chat - Afficher le tchat + Afficher le tchat ChatUserNotify - Private Chat - Tchat privé + Tchat privé ChatWidget - Close - Fermer + Fermer - Send - Envoyer + Envoyer - Bold - Gras + Gras - Underline - Souligné + Souligné - Italic - Italique + Italique - Attach a Picture - Joindre une image + Joindre une image - Strike - Découverte + Découverte - Clear Chat History - Effacer l'historique du tchat + Effacer l'historique du tchat - Disable Emoticons - Désactiver les émoticônes + Désactiver les émoticônes - - Save Chat History - Sauvegarder l'historique du tchat + Sauvegarder l'historique du tchat - Browse Message History - Parcourir l'historique des messages + Parcourir l'historique des messages - Browse History - Parcourir l'historique + Parcourir l'historique - Delete Chat History - Supprimer l'historique du tchat + Supprimer l'historique du tchat - Deletes all stored and displayed chat history - Supprimer tous les historiques de tchat affichés et enregistrés + Supprimer tous les historiques de tchat affichés et enregistrés - Choose font - Choisir la police + Choisir la police - Reset font to default - Réinitialiser à la valeur par défaut + Réinitialiser à la valeur par défaut - is typing... - écrit... + écrit... - Do you really want to physically delete the history? - Etes-vous vraiment sûr de vouloir supprimer définitivement l'historique ? + Etes-vous vraiment sûr de vouloir supprimer définitivement l'historique ? - Add Extra File - Ajouter un fichier supplémentaire + Ajouter un fichier supplémentaire - Load Picture File - Charger le fichier image + Charger le fichier image - Save as... - Enregistrer sous... + Enregistrer sous... - Text File (*.txt );;All Files (*) - Fichier texte (*.txt );;Tous les fichiers (*) + Fichier texte (*.txt );;Tous les fichiers (*) - appears to be Offline. - semble être hors ligne. + semble être hors ligne. - Messages you send will be delivered after Friend is again Online - Les messages envoyés seront délivrés lorsque votre ami sera de nouveau en ligne + Les messages envoyés seront délivrés lorsque votre ami sera de nouveau en ligne - is Idle and may not reply - est inactif et peut ne pas répondre + est inactif et peut ne pas répondre - is Away and may not reply - est absent et peut ne pas répondre + est absent et peut ne pas répondre - is Busy and may not reply - est occupé et peut ne pas répondre + est occupé et peut ne pas répondre - Find Case Sensitively - Trouver en tenant compte de la casse + Trouver en tenant compte de la casse - - Find Whole Words - Trouver mots entiers + Trouver mots entiers - - Move To Cursor - Déplacer vers le curseur + Déplacer vers le curseur - Don't stop to color after X items found (need more CPU) - Ne pas cesser de colorer après X articles trouvés (nécessite davantage de CPU) + Ne pas cesser de colorer après X articles trouvés (nécessite davantage de CPU) - <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - <b>Trouver le précédent </b><br/><i>Ctrl+Shift+G</i> + <b>Trouver le précédent </b><br/><i>Ctrl+Shift+G</i> - <b>Find Next </b><br/><i>Ctrl+G</i> - <b>Trouver le suivant </b><br/><i>Ctrl+G</i> + <b>Trouver le suivant </b><br/><i>Ctrl+G</i> - <b>Find </b><br/><i>Ctrl+F</i> - <b>Trouver </b><br/><i>Ctrl+F</i> + <b>Trouver </b><br/><i>Ctrl+F</i> - (Status) - (Statut) + (Statut) - Set text font & color - Régler police de caractères du texte et couleur + Régler police de caractères du texte et couleur - Attach a File - Joindre un fichier + Joindre un fichier - WARNING: Could take a long time on big history. - AVERTISSEMENT : cela pourrait prendre longtemps si c'est un historique de grande taille. + AVERTISSEMENT : cela pourrait prendre longtemps si c'est un historique de grande taille. - Choose color - Choix de la couleur + Choix de la couleur - - <b>Mark this selected text</b><br><i>Ctrl+M</i> - <b>Marquer ce texte comme sélectionné</b><br><i>Ctrl+M</i> + <b>Marquer ce texte comme sélectionné</b><br><i>Ctrl+M</i> - %1This message consists of %2 characters. - %1Ce message consiste de %2 caractères. + %1Ce message consiste de %2 caractères. - items found. - articles trouvés. + articles trouvés. - No items found. - Pas d'article trouvé. + Pas d'article trouvé. - <b>Return to marked text</b><br><i>Ctrl+M</i> - <b>Retour au texte marqué</b><br><i>Ctrl+M</i> + <b>Retour au texte marqué</b><br><i>Ctrl+M</i> - Display Search Box - Afficher la boîte de recherche + Afficher la boîte de recherche - Search Box - Boîte de recherche + Boîte de recherche - Type a message here - Tapez un message ici + Tapez un message ici - Don't stop to color after - Ne pas cesser de colorer après + Ne pas cesser de colorer après - items found (need more CPU) - éléments trouvés (besoin de plus de CPU) + éléments trouvés (besoin de plus de CPU) - Warning: - Avertissement : + Avertissement : + + + Quote + Citer + + + Quotes the selected text + + + + Drop Placemark + + + + Insert horizontal rule + + + + Save image + CircleWidget - TextLabel - Etiquette + Etiquette - Empty Circle - Vider le cercle + Vider le cercle CirclesDialog - Showing details: - Afficher les détails : + Afficher les détails : - Membership - Adhésion + Adhésion - - Name - Nom + Nom - IDs - IDs + IDs - - Personal Circles - Cercles personnels + Cercles personnels - Public Circles - Cercles publics + Cercles publics - Peers - Contacts + Contacts - Status - Statut + Statut - ID - ID + ID - - Friends - Amis + Amis - Friends of Friends - Amis de vos amis + Amis de vos amis - Others - Autres + Autres - Permissions - Droits + Droits - Anon Transfers - Transferts anonymes + Transferts anonymes - Discovery - Découverte + Découverte - Share Category - Catégorie de partage + Catégorie de partage - Create Personal Circle - Créer un cercle personnel + Créer un cercle personnel - Create External Circle - Créer un cercle extérieur + Créer un cercle extérieur - Edit Circle - Modifier le cercle + Modifier le cercle - Todo - À faire + À faire - Friends Of Friends - Amis des Amis + Amis des Amis - External Circles (Admin) - Cercles extérieurs (Admin) + Cercles extérieurs (Admin) - External Circles (Subscribed) - Cercles extérieurs (Abonnés) + Cercles extérieurs (Abonnés) - External Circles (Other) - Cercles extérieurs (Autre) + Cercles extérieurs (Autre) - - Circles - Cercles + Cercles ConfCertDialog - Details - Détails + Détails - Peer Address - Adresses IP du contact + Adresses IP du contact - - Local Address - Adresse locale : + Adresse locale : - External Address - Adresse externe : + Adresse externe : - Dynamic DNS - DNS dynamique + DNS dynamique - - Port - Port : + Port : - - Addresses list - Liste d'adresses IP connues: + Liste d'adresses IP connues: - Include signatures - Inclure les signatures + Inclure les signatures - - - RetroShare - Retroshare + Retroshare - - - Error : cannot get peer details. - Erreur : impossible d'obtenir les détails de ce contact. + Erreur : impossible d'obtenir les détails de ce contact. - Use as direct source, when available - Utiliser en source directe, quand disponible + Utiliser en source directe, quand disponible - <html><head/><body><p align="justify">Retroshare periodically checks your friend lists for browsable files matching your transfers, to establish a direct transfer. In this case, your friend knows you're downloading the file.</p><p align="justify">To prevent this behavior for this friend only, uncheck this box. You can still perform a direct transfer if you explicitly ask for it, by e.g. downloading from your friend's file list. </p></body></html> - <html><head/><body><p align="justify">Retroshare vérifie régulièrement vos listes d'amis pour les fichiers correspondant à vos transferts, afin d'établir un transfert direct. Dans ce cas, votre ami sait que vous téléchargez le fichier. </p><p align="justify">Pour éviter ce comportement pour ce seul ami, décochez cette case. Vous pouvez toujours effectuer un transfert direct si vous le demander expressément, par exemple en téléchargement à partir de la liste des fichiers de votre ami. </p></body></html> + <html><head/><body><p align="justify">Retroshare vérifie régulièrement vos listes d'amis pour les fichiers correspondant à vos transferts, afin d'établir un transfert direct. Dans ce cas, votre ami sait que vous téléchargez le fichier. </p><p align="justify">Pour éviter ce comportement pour ce seul ami, décochez cette case. Vous pouvez toujours effectuer un transfert direct si vous le demander expressément, par exemple en téléchargement à partir de la liste des fichiers de votre ami. </p></body></html> - Encryption - Chiffrement + Chiffrement - Not connected - Non connecté + Non connecté - Peer Addresses - Adresses des contacts + Adresses des contacts - Options - Options + Options - Retroshare node details - Détails de noeud Retroshare + Détails de noeud Retroshare - Location info - Info emplacement + Info emplacement - Node name : - Nom de noeud : + Nom de noeud : - Status : - Statut : + Statut : - Last Contact : - Dernier contact : + Dernier contact : - Retroshare version : - Version Retroshare : + Version Retroshare : - Node ID : - ID noeud : + ID noeud : - PGP key : - Clé PGP : + Clé PGP : - Retroshare Certificate - Certificat Retroshare + Certificat Retroshare - Auto-download recommended files from this node - Télécharger automatiquement les fichiers recommandés par ce noeud + Télécharger automatiquement les fichiers recommandés par ce noeud - Friend node details - Détails noeud ami + Détails noeud ami - Hidden Address - Adresse cachée + Adresse cachée - - none - aucun + aucun - <p>This certificate contains: - <p>Ce certificat contient : + <p>Ce certificat contient : - <li>a <b>node ID</b> and <b>name</b> - <li>un <b>ID de noeud</b> et <b>nom</b> + <li>un <b>ID de noeud</b> et <b>nom</b> - an <b>onion address</b> and <b>port</b> - une <b>adresse onion</b> et <b>port</b> + une <b>adresse onion</b> et <b>port</b> - an <b>IP address</b> and <b>port</b> - une <b>addresse IP</b> et <b>port</b> + une <b>addresse IP</b> et <b>port</b> - <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - <p>Vous pouvez utiliser ce certificat pour vous faire de nouveaux amis. Envoyez-le par courrier électronique, ou donnez-le de main à la main.</p> + <p>Vous pouvez utiliser ce certificat pour vous faire de nouveaux amis. Envoyez-le par courrier électronique, ou donnez-le de main à la main.</p> - <html><head/><body><p>Peers that have this option cannot connect if their connection address is not in the whitelist. This protects you from traffic forwarding attacks. When used, rejected peers will be reported by &quot;security feed items&quot; in the News Feed section. From there, you can whitelist/blacklist their IP.</p></body></html> - <html><head/><body><p>Les pairs qui ont cette option ne peuvent pas se connecter si leur adresse de connexion n'est pas dans la liste blanche. Ceci vous protège du trafic transportant des attaques. Quand utilisée, les pairs rejetés seront rapportés en tant que &quot;articles de flux sécurité (security feed items)&quot; dans la section "Fil d'actualités". De là, vous pouvez passer leur IP en liste blanche/liste noire.</p></body></html> + <html><head/><body><p>Les pairs qui ont cette option ne peuvent pas se connecter si leur adresse de connexion n'est pas dans la liste blanche. Ceci vous protège du trafic transportant des attaques. Quand utilisée, les pairs rejetés seront rapportés en tant que &quot;articles de flux sécurité (security feed items)&quot; dans la section "Fil d'actualités". De là, vous pouvez passer leur IP en liste blanche/liste noire.</p></body></html> - Require white list clearance - Requiert l'autorisation en liste blanche + Requiert l'autorisation en liste blanche - <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> - <html><head/><body><p>Ceci est l'ID du certificat <span style=" font-weight:600;">OpenSSL</span> du noeud, qui est signé par la clé <span style=" font-weight:600;">PGP</span> ci-dessus. </p></body></html> + <html><head/><body><p>Ceci est l'ID du certificat <span style=" font-weight:600;">OpenSSL</span> du noeud, qui est signé par la clé <span style=" font-weight:600;">PGP</span> ci-dessus. </p></body></html> - <html><head/><body><p>This is the encryption method used by <span style=" font-weight:600;">OpenSSL</span>. The connection to friend nodes</p><p>is always heavily encrypted and if DHE is present the connection further uses</p><p>&quot;perfect forward secrecy&quot;.</p></body></html> - <html><head/><body><p>Ceci est la méthode de cryptage utilisée par <span style=" font-weight:600;">OpenSSL</span>. La connexion aux noeuds amis est </p><p>toujours lourdement cryptée et si la DHE est présente, la connexion utilise ensuite </p><p>&quot;perfect forward secrecy&quot;.</p></body></html> + <html><head/><body><p>Ceci est la méthode de cryptage utilisée par <span style=" font-weight:600;">OpenSSL</span>. La connexion aux noeuds amis est </p><p>toujours lourdement cryptée et si la DHE est présente, la connexion utilise ensuite </p><p>&quot;perfect forward secrecy&quot;.</p></body></html> - with - avec + avec - external signatures</li> - signatures externes</li> + signatures externes</li> + + + Node info + + + + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + ConnectFriendWizard - Connect Friend Wizard - Assistant de connexion à un ami + Assistant de connexion à un ami - Add a new Friend - Ajouter un nouvel ami + Ajouter un nouvel ami - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Cet assistant vous aidera à vous connecter à vos amis à l'aide deRetroshare.<br>Les possibilités de le faire sont : + Cet assistant vous aidera à vous connecter à vos amis à l'aide deRetroshare.<br>Les possibilités de le faire sont : - &Enter the certificate manually - &Entrez manuellement le certificat + &Entrez manuellement le certificat - &You get a certificate file from your friend - Vous possédez le certificat de votre ami dans un &Fichier + Vous possédez le certificat de votre ami dans un &Fichier - &Make friend with selected friends of my friends - Devenir a&mi avec les amis sélectionnés de vos amis + Devenir a&mi avec les amis sélectionnés de vos amis - &Enter RetroShare ID manually - &Entrez manuellement l'ID Retroshare + &Entrez manuellement l'ID Retroshare - &Send an Invitation by Email (She/He receives an email with instructions how to to download RetroShare) - Envoyez une invitation par e-mail + Envoyez une invitation par e-mail (Elle/il recevra par e-mail les instructions pour télécharger Retroshare) - Text certificate - Certificat version texte + Certificat version texte - Use text representation of the PGP certificates. - Utiliser la version texte du certificat PGP. + Utiliser la version texte du certificat PGP. - The text below is your PGP certificate. You have to provide it to your friend - Le texte ci-dessous est votre certificat PGP. Vous devez le fournir à votre ami + Le texte ci-dessous est votre certificat PGP. Vous devez le fournir à votre ami - - Include signatures - Inclure les signatures + Inclure les signatures - Copy your Cert to Clipboard - Copier votre certificat dans le presse-papier + Copier votre certificat dans le presse-papier - Save your Cert into a File - Enregistrer votre certificat dans un fichier + Enregistrer votre certificat dans un fichier - Run Email program - Envoyer par courrier électronique + Envoyer par courrier électronique - Please, paste your friends PGP certificate into the box below - Veuillez coller le certificat PGP de votre ami dans la case ci-dessous + Veuillez coller le certificat PGP de votre ami dans la case ci-dessous - Certificate files - fichiers de certificat + fichiers de certificat - Use PGP certificates saved in files. - Utilisez des certificats PGP contenu dans un fichier. + Utilisez des certificats PGP contenu dans un fichier. - Import friend's certificate... - Importer le certificat d'un ami... + Importer le certificat d'un ami... - You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - Vous devez générer un fichier à partir de votre certificat et le transmettre à votre ami. Vous pouvez aussi utiliser un fichier généré auparavant. + Vous devez générer un fichier à partir de votre certificat et le transmettre à votre ami. Vous pouvez aussi utiliser un fichier généré auparavant. - Export my certificate... - Exporter mon certificat... + Exporter mon certificat... - Drag and Drop your friends's certificate in this Window or specify path in the box below - Glisser et déposer le certificat de votre ami dans cette fenêtre ou importez le à partir de votre disque dur + Glisser et déposer le certificat de votre ami dans cette fenêtre ou importez le à partir de votre disque dur - Browse - Parcourir + Parcourir - Friends of friends - Amis de vos amis + Amis de vos amis - Select now who you want to make friends with. - Veuillez selectionner avec qui vous souhaitez devenir ami. + Veuillez selectionner avec qui vous souhaitez devenir ami. - Show me: - Afficher : + Afficher : - Make friend with these peers - Devenir ami avec ces contacts + Devenir ami avec ces contacts - RetroShare ID - ID Retroshare + ID Retroshare - Use RetroShare ID for adding a Friend which is available in your network. - Utilisez l'ID Retroshare pour ajouter un ami qui est disponible dans votre réseau. + Utilisez l'ID Retroshare pour ajouter un ami qui est disponible dans votre réseau. - Add Friends RetroShare ID... - Ajouter l'ID d'amis Retroshare... + Ajouter l'ID d'amis Retroshare... - Paste Friends RetroShare ID in the box below - Coller l'ID Retroshare d'amis ci-dessous + Coller l'ID Retroshare d'amis ci-dessous - Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - Entrez l'ID Retroshare de votre ami, p. ex.. Contact@BDE8D16A46D938CF + Entrez l'ID Retroshare de votre ami, p. ex.. Contact@BDE8D16A46D938CF - Invite Friends by Email - Inviter un ami à rejoindre Retroshare par e-mail + Inviter un ami à rejoindre Retroshare par e-mail - Enter your friends' email addresses (separate each one with a semicolon) - Entrez les adresses e-mail de vos amis (séparées par un point-virgule) + Entrez les adresses e-mail de vos amis (séparées par un point-virgule) - Your friends' email addresses: - Destinataire(s) : + Destinataire(s) : - Enter Friends Email addresses - Entrez l'adresse e-mail de vos amis + Entrez l'adresse e-mail de vos amis - Subject: - Sujet : + Sujet : - - - Friend request - Demande d'ami + Demande d'ami - - - Details about the request - Détails de la demande + Détails de la demande - - Peer details - Détails du contact + Détails du contact - - Name: - Nom : + Nom : - - Email: - E-Mail : + E-Mail : - - Location: - Emplacement : + Emplacement : - - - Options - Options + Options - - Add friend to group: - Ajouter l'ami à un groupe : + Ajouter l'ami à un groupe : - - Authenticate friend (Sign PGP Key) - Ami authentifié (Clé PGP signée) + Ami authentifié (Clé PGP signée) - - Add as friend to connect with - Ajouter cet ami pour communiquer avec lui + Ajouter cet ami pour communiquer avec lui - - To accept the Friend Request, click the Finish button. - Pour accepter la demande d'amitié, cliquez sur le bouton Terminer. + Pour accepter la demande d'amitié, cliquez sur le bouton Terminer. - Sorry, some error appeared - Désolé, des erreurs sont survenues + Désolé, des erreurs sont survenues - Here is the error message: - Voici le message d'erreur : + Voici le message d'erreur : - Make Friend - Devenir ami + Devenir ami - Details about your friend: - À propos de votre ami : + À propos de votre ami : - Key validity: - Validité de la clé : + Validité de la clé : - Signers - Ils lui font aussi confiance : + Ils lui font aussi confiance : - This peer is already on your friend list. Adding it might just set it's ip address. - Ce contact est déjà dans votre liste d'am. L'ajouter se limitera à enregistrer son adresse IP. + Ce contact est déjà dans votre liste d'am. L'ajouter se limitera à enregistrer son adresse IP. - Abnormal size read is bigger than memory block. - Taille du fichier lu plus grande que le block mémoire. + Taille du fichier lu plus grande que le block mémoire. - Invalid external IP. - Ip externe invalide. + Ip externe invalide. - Invalid local IP. - Ip locale invalide. + Ip locale invalide. - Invalid checksum section. - Section du checksum incorrecte. + Section du checksum incorrecte. - Checksum mismatch. Certificate is corrupted. - Checksum différent. Le certificat est corrompu. + Checksum différent. Le certificat est corrompu. - Unknown section type found (Certificate might be corrupted). - Type de section trouvé invalide (Le certificat doit être corrompu). + Type de section trouvé invalide (Le certificat doit être corrompu). - Missing checksum. - Checksum manquant. + Checksum manquant. - Unknown certificate error - Erreur de certificat inconnue + Erreur de certificat inconnue - - Certificate Load Failed - Le chargement du certificat à échoué + Le chargement du certificat à échoué - Cannot get peer details of PGP key %1 - Impossible d'obtenir les détails de la clé PGP %1 + Impossible d'obtenir les détails de la clé PGP %1 - Any peer I've not signed - Tous les contacts dont vous n'avez pas signé les certificats + Tous les contacts dont vous n'avez pas signé les certificats - Friends of my friends who already trust me - Amis de vos amis qui vous ont déjà accordé leur confiance + Amis de vos amis qui vous ont déjà accordé leur confiance - Signed peers showing as denied - Contacts signées montrés comme refusés + Contacts signées montrés comme refusés - Peer name - Nom du contact + Nom du contact - Also signed by - Également signé par + Également signé par - Peer id - ID du contact + ID du contact - RetroShare Invitation - Invitation Retroshare + Invitation Retroshare - Ultimate - Ultime + Ultime - Full - Totale + Totale - Marginal - Moyenne + Moyenne - None - Aucune + Aucune - No Trust - Pas de confiance + Pas de confiance - - You have a friend request from - Vous avez une demande d'amitié de + Vous avez une demande d'amitié de - Certificate Load Failed:file %1 not found - L'importation du certificat a échoué : le fichier %1 n'a pas été trouvé + L'importation du certificat a échoué : le fichier %1 n'a pas été trouvé - This Peer %1 is not available in your Network - Ce contact %1 n'est pas disponible dans votre réseau + Ce contact %1 n'est pas disponible dans votre réseau - Use new certificate format (safer, more robust) - Utiliser le nouveau format de certificat (plus sure, plus robuste) + Utiliser le nouveau format de certificat (plus sure, plus robuste) - Use old (backward compatible) certificate format - Utilisez l'ancien format de certificat (rétrocompatible) + Utilisez l'ancien format de certificat (rétrocompatible) - Remove signatures - Supprimer les signatures + Supprimer les signatures - RetroShare Invite - Invitation Retroshare + Invitation Retroshare - No or misspelled BEGIN tag found - BEGIN tag non trouvé ou mal orthographié + BEGIN tag non trouvé ou mal orthographié - No or misspelled END tag found - END tag non trouvé ou mal orthographié + END tag non trouvé ou mal orthographié - 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:) - Pas de checksum trouvé (les 5 derniers caractères doivent être séparés par un '='), ou aucun saut de ligne après la ligne d'étiquette (p.ex. ligne commençant avec Version:) + Pas de checksum trouvé (les 5 derniers caractères doivent être séparés par un '='), ou aucun saut de ligne après la ligne d'étiquette (p.ex. ligne commençant avec Version:) - Unknown error. Your cert is probably not even a certificate. - Une erreur inconnue. Votre certificat n'est probablement même pas un certificat. + Une erreur inconnue. Votre certificat n'est probablement même pas un certificat. - Connect Friend Help - Aide pour l'envoi du certificat + Aide pour l'envoi du certificat - You can copy this text and send it to your friend via email or some other way - Vous pouvez copier votre certificat et l'envoyer à vos amis par courrier électronique ou par tout autre moyen + Vous pouvez copier votre certificat et l'envoyer à vos amis par courrier électronique ou par tout autre moyen - Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Votre certificat a été copié dans le presse-papier, collez-le et envoyez-le par courrier electronique ou par tout autre moyen + Votre certificat a été copié dans le presse-papier, collez-le et envoyez-le par courrier electronique ou par tout autre moyen - Save as... - Enregistrer sous... + Enregistrer sous... - - - RetroShare Certificate (*.rsc );;All Files (*) - Certificat Retroshare (*.rsc );;Tous les fichiers (*) + Certificat Retroshare (*.rsc );;Tous les fichiers (*) - Select Certificate - Sélectionner le certificat + Sélectionner le certificat - Sorry, create certificate failed - Désolé, la création du certificat a échoué + Désolé, la création du certificat a échoué - Please choose a filename - Veuillez spécifier un nom de fichier + Veuillez spécifier un nom de fichier - Certificate file successfully created - Votre certificat a été créé avec succès + Votre certificat a été créé avec succès - - Sorry, certificate file creation failed - Désolé, la création du certificat a échoué + Désolé, la création du certificat a échoué - *** None *** - *** Aucune *** + *** Aucune *** - Use as direct source, when available - Utiliser en source directe, quand disponible + Utiliser en source directe, quand disponible - - Recommend many friends to each others - Recommander plusieurs amis les uns aux autres + Recommander plusieurs amis les uns aux autres - Friend Recommendations - Recommandations d'amis + Recommandations d'amis - Message: - Message : + Message : - Recommend friends - Amis recommandés + Amis recommandés - To - Pour + Pour - Please select at least one friend for recommendation. - Veuillez sélectionner au moins un ami à recommander. + Veuillez sélectionner au moins un ami à recommander. - Please select at least one friend as recipient. - S'il vous plaît sélectionner au moins un destinataire. + S'il vous plaît sélectionner au moins un destinataire. - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Veuillez noter que RetroShare nécessitera des quantités excessives de bande passante, mémoire et CPU si vous ajoutez à de nombreux amis. Vous pouvez ajouter autant d'amis que vous le souhaitez, mais avec plus de 40 vous aurez probablement besoin de trop de ressources. + Veuillez noter que RetroShare nécessitera des quantités excessives de bande passante, mémoire et CPU si vous ajoutez à de nombreux amis. Vous pouvez ajouter autant d'amis que vous le souhaitez, mais avec plus de 40 vous aurez probablement besoin de trop de ressources. - Add key to keyring - Ajouter la clé au trousseau + Ajouter la clé au trousseau - This key is already in your keyring - Cette clé est déjà dans votre trousseau + Cette clé est déjà dans votre trousseau - Check this to add the key to your keyring This might be useful for sending distant messages to this peer even if you don't make friends. - Cochez ceci pour ajouter la clé à votre + Cochez ceci pour ajouter la clé à votre trousseau, cela peut être utile pour l'envoi de messages distants à ce contact même si vous n'êtes pas amis. - Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - Le certificat a un mauvais numéro de version. Souvenez-vous que les réseaux v0.6 et v0.5 sont incompatibles. + Le certificat a un mauvais numéro de version. Souvenez-vous que les réseaux v0.6 et v0.5 sont incompatibles. - Invalid node id. - L'ID de noeud est invalide. + L'ID de noeud est invalide. - - Auto-download recommended files - Télécharger automatiquement les fichiers recommandés + Télécharger automatiquement les fichiers recommandés - Can be used as direct source - Possibilité d'être utilisé comme source directe + Possibilité d'être utilisé comme source directe - - Require whitelist clearance to connect - Requiert l'autorisation en liste blanche pour être connecté + Requiert l'autorisation en liste blanche pour être connecté - Add IP to whitelist - Ajouter l'IP dans la liste blanche + Ajouter l'IP dans la liste blanche - No IP in this certificate! - Pas d'IP dans ce certificat ! + Pas d'IP dans ce certificat ! - <p>This certificate has no IP. You will rely on discovery and DHT to find it. Because you require whitelist clearance, the peer will raise a security warning in the NewsFeed tab. From there, you can whitelist his IP.</p> - <p>Ce certificat n'a pas d'IP. Vous devrez compter sur la découverte et la DHT pour le trouver. Parce que vous exigez l'autorisation liste blanche, le pair lèvera un avertissement de sécurité dans l'onglet "Fil d'actualités". De là, vous pourrez passer son IP en liste blanche.</p> + <p>Ce certificat n'a pas d'IP. Vous devrez compter sur la découverte et la DHT pour le trouver. Parce que vous exigez l'autorisation liste blanche, le pair lèvera un avertissement de sécurité dans l'onglet "Fil d'actualités". De là, vous pourrez passer son IP en liste blanche.</p> - Added with certificate from %1 - Ajout&eacute; avec certificat depuis %1 + Ajout&eacute; avec certificat depuis %1 - Paste Cert of your friend from Clipboard - Coller le certificat de votre ami depuis le presse-papier + Coller le certificat de votre ami depuis le presse-papier - Certificate Load Failed:can't read from file %1 - Échec de chargement du certificat : ne peut pas lire le fichier %1 + Échec de chargement du certificat : ne peut pas lire le fichier %1 - Certificate Load Failed:something is wrong with %1 - Échec de chargement du certificat : quelque chose ne va pas dans %1 + Échec de chargement du certificat : quelque chose ne va pas dans %1 + + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + Enter the certificate manually + + + + Enter RetroShare ID manually + + + + &Send an Invitation by Web Mail Providers + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + Recommend many friends to each other + + + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Please, paste your friend's Retroshare certificate into the box below + + + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + RetroShare is better with Friends + + + + Invite your Friends from other Networks to RetroShare. + + + + GMail + + + + Yahoo + + + + Outlook + + + + AOL + + + + Yandex + + + + Email + Courrier électronique + + + Node: + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + IP-Addr: + + + + IP-Address + ConnectProgressDialog - Connection Progress - Progression de la connexion + Progression de la connexion - Connecting to: - Connexion à : + Connexion à : - TextLabel - Etiquette + Etiquette - Network - Réseau + Réseau - Net Result - Résultat du net + Résultat du net - Connect Status - Statut de connexion + Statut de connexion - Contact Result - Résultat du contact + Résultat du contact - - DHT Startup - Démarrage DHT + Démarrage DHT - DHT Result - Résultat DHT + Résultat DHT - Peer Lookup - Contact Lookup + Contact Lookup - Peer Result - Résultat du contact + Résultat du contact - - UDP Setup - Réglage UDP + Réglage UDP - UDP Result - Résultat UDP + Résultat UDP - Connection Assistant - Assistant de connexion + Assistant de connexion - Invalid Peer ID - ID du contact incorrecte + ID du contact incorrecte - Unknown State - État inconnu + État inconnu - Offline - Hors ligne + Hors ligne - Behind Symmetric NAT - Derrière un NAT symétrique + Derrière un NAT symétrique - Behind NAT & No DHT - Derrière un NAT & Pas de DHT + Derrière un NAT & Pas de DHT - NET Restart - Redémarrage du NET + Redémarrage du NET - Behind NAT - Derrière un NAT + Derrière un NAT - No DHT - Pas de DHT + Pas de DHT - NET STATE GOOD! - ÉTAT DU NET : BON ! + ÉTAT DU NET : BON ! - DHT Failed - Échec DHT + Échec DHT - DHT Disabled - DHT désactivée + DHT désactivée - DHT Okay - DHT OK + DHT OK - Finding RS Peers - Recherche de contacts RS + Recherche de contacts RS - Lookup requires DHT - Lookup nécessite la DHT + Lookup nécessite la DHT - Searching DHT - Recherche dans la DHT + Recherche dans la DHT - Lookup Timeout - Timeout du Lookup + Timeout du Lookup - Peer DHT NOT ACTIVE - DHT du contact NON ACTIVÉE + DHT du contact NON ACTIVÉE - Lookup Failure - Échec du lookup + Échec du lookup - - Peer Offline - Contact hors ligne + Contact hors ligne - Peer Firewalled - Contact derrière un pare-feu + Contact derrière un pare-feu - Peer Online - Contact en ligne + Contact en ligne - Connection In Progress - Connexion en cours + Connexion en cours - Initial connections can take a while, please be patient - La première connexion peut prendre un peu de temps, s'il vous plaît soyez patient. + La première connexion peut prendre un peu de temps, s'il vous plaît soyez patient. - If an error is detected it will be displayed here - Si une erreur est détectée elle sera affichée ici. + Si une erreur est détectée elle sera affichée ici. - You can close this dialog at any time - Vous pouvez fermer cette boite de dialogue à tout moment, + Vous pouvez fermer cette boite de dialogue à tout moment, - - Retroshare will continue connecting in the background - Retroshare continuera de se connecter en arrière plan. + Retroshare continuera de se connecter en arrière plan. - Connection Timeout - Timeout de la connexion + Timeout de la connexion - Connection Attempt has taken too long - La tentative de connexion a pris trop de temps + La tentative de connexion a pris trop de temps - But no error has been detected - Mais aucune erreur n'a été détectée + Mais aucune erreur n'a été détectée - - - Try again shortly, Retroshare will continue connecting in the background - Essaye à nouveau brièvement, Retroshare continuera de se connecter en arrière plan + Essaye à nouveau brièvement, Retroshare continuera de se connecter en arrière plan - - - - - If you continue to get this message, please contact developers - Si vous continuez à recevoir ce message, contactez un développeur + Si vous continuez à recevoir ce message, contactez un développeur - DHT Lookup Timeout - Timeout de Lookup DHT + Timeout de Lookup DHT - DHT Lookup has taken too long - Le lookup DHT a pris trop de temps + Le lookup DHT a pris trop de temps - UDP Connection Timeout - Connexion UDP Timeout + Connexion UDP Timeout - UDP Connection has taken too long - La connexion UDP a pris trop de temps + La connexion UDP a pris trop de temps - UDP Connection Failed - Échec de la connexion UDP + Échec de la connexion UDP - We are continually working to improve connectivity. - Nous travaillons sans cesse pour améliorer la connectivité. + Nous travaillons sans cesse pour améliorer la connectivité. - In this case the UDP connection attempt has failed. - Dans ce cas la tentative de connexion UDP a échoué. + Dans ce cas la tentative de connexion UDP a échoué. - Improve connectivity by opening a Port in your Firewall. - Améliorer la connectivité en ouvrant un port dans votre pare-feu. + Améliorer la connectivité en ouvrant un port dans votre pare-feu. - Connected - Connecté + Connecté - Congratulations, you are connected - Félicitations, vous êtes connecté + Félicitations, vous êtes connecté - DHT startup Failed - Échec démarrage DHT + Échec démarrage DHT - Your DHT has not started properly - Votre DHT n'a pas bien démarré + Votre DHT n'a pas bien démarré - Common causes of this problem are: - Les raisons générales de ce problème sont : + Les raisons générales de ce problème sont : - - You are not connected to the Internet - - Vous n'êtes pas connecté à internet + - Vous n'êtes pas connecté à internet - - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - - Vous avez un fichier manquant ou ancien de bootstap de DHT (bdboot.txt) + - Vous avez un fichier manquant ou ancien de bootstap de DHT (bdboot.txt) - DHT is Disabled - DHT est désactivée + DHT est désactivée - The DHT is OFF, so Retroshare cannot find your Friends. - La DHT est OFF, et donc Retroshare ne peut pas retrouver vos amis. + La DHT est OFF, et donc Retroshare ne peut pas retrouver vos amis. - Retroshare has tried All Known Addresses, with no success - Retroshare a testé toutes les adresses connues, sans succès + Retroshare a testé toutes les adresses connues, sans succès - The DHT is needed if your friends have Dynamic IP Addresses. - La DHT est nécessaire si vos amis ont des adresses IP dynamiques. + La DHT est nécessaire si vos amis ont des adresses IP dynamiques. - Go to Settings->Server and change config to "Public: DHT and Discovery" - Allez dans Options-> Serveur et changez la configuration sur "Publique : DHT et découverte" + Allez dans Options-> Serveur et changez la configuration sur "Publique : DHT et découverte" - - Peer Denied Connection - Le contact a rejeté la connexion + Le contact a rejeté la connexion - We successfully reached your Friend. - Nous avons bien atteint votre ami. + Nous avons bien atteint votre ami. - - but they have not added you as a Friend. - mais ils ne vous ont pas ajouté en tant qu'ami. + mais ils ne vous ont pas ajouté en tant qu'ami. - Please contact them to add your Certificate - S'il vous plaît contactez les pour les faire ajouter votre certificat + S'il vous plaît contactez les pour les faire ajouter votre certificat - - - Your Retroshare Node is configured Okay - Votre noeud Retroshare est correctement configuré. + Votre noeud Retroshare est correctement configuré. - We successfully reached your Friend via UDP. - Nous avons bien atteint votre ami via UDP. + Nous avons bien atteint votre ami via UDP. - Please contact them to add your Full Certificate - S'il vous plaît contactez les pour les faire ajouter votre certificat entier + S'il vous plaît contactez les pour les faire ajouter votre certificat entier - We Cannot find your Friend. - Nous ne retrouvons pas votre ami. + Nous ne retrouvons pas votre ami. - They are either offline or their DHT is Off - Ils sont soit hors ligne ou leur DHT est éteinte + Ils sont soit hors ligne ou leur DHT est éteinte - Peer DHT is Disabled - La DHT du contact est désactivée + La DHT du contact est désactivée - Your Friend has configured Retroshare with DHT Disabled. - Votre ami a configuré Retroshare avec la DHT désactivée. + Votre ami a configuré Retroshare avec la DHT désactivée. - You have previously connected to this Friend - Vous vous êtes déjà connecté à cet ami + Vous vous êtes déjà connecté à cet ami - Retroshare has determined that they have DHT switched off - Retroshare a déterminé qu'ils ont leur DHT désactivée + Retroshare a déterminé qu'ils ont leur DHT désactivée - Without the DHT it is hard for Retroshare to locate your friend - Sans la DHT il est difficile pour Retroshare de localiser votre ami + Sans la DHT il est difficile pour Retroshare de localiser votre ami - Try importing a fresh Certificate to get up-to-date connection information - Essayez d'importer un nouveau certificat pour obtenir des informations de connexion actualisées + Essayez d'importer un nouveau certificat pour obtenir des informations de connexion actualisées - Incomplete Friend Details - Détails de l'ami incomplets + Détails de l'ami incomplets - You have imported an incomplete Certificate - Vous avez importé un certificat incomplet + Vous avez importé un certificat incomplet - Please retry importing the full Certificate - Veuillez réessayez d'importer le certificat en entier + Veuillez réessayez d'importer le certificat en entier - <!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:'Lucida Grande'; font-size:13pt;">This Widget shows the progress of your connection to your new peer.</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:'Lucida Grande'; font-size:13pt;">It is helpful for problem-solving.</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:'Lucida Grande'; font-size:13pt;"></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:'Lucida Grande'; font-size:13pt;">If you are an expert RS user, or trust that RS will do the right thing</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:'Lucida Grande'; font-size:13pt;">This Widget shows the progress of your connection to your new peer.</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:'Lucida Grande'; font-size:13pt;">It is helpful for problem-solving.</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:'Lucida Grande'; font-size:13pt;"></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:'Lucida Grande'; font-size:13pt;">If you are an expert RS user, or trust that RS will do the right thing</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:'Lucida Grande'; font-size:13pt;">you can close it.</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;"> @@ -3467,283 +3062,219 @@ 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:'Lucida Grande'; font-size:13pt;">vous pouvez le fermer.</span></p></body></html> - - - - N/A - N/A + N/A - UNVERIFIABLE FORWARD! - FORWARD INVÉRIFIABLE ! + FORWARD INVÉRIFIABLE ! - UNVERIFIABLE FORWARD & NO DHT - FORWARD INVÉRIFIABLE & PAS DE DHT + FORWARD INVÉRIFIABLE & PAS DE DHT - Searching - Recherche + Recherche - UDP Connect Timeout - Connexion UDP Timeout + Connexion UDP Timeout - Only Advanced Retroshare users should switch off the DHT. - Uniquement les utilisateurs expérimentés devraient éteindre la DHT. + Uniquement les utilisateurs expérimentés devraient éteindre la DHT. - Retroshare cannot connect without this information - Retroshare ne peut se connecter sans cette information + Retroshare ne peut se connecter sans cette information - They need a Certificate + Node for UDP connections to succeed - Ils ont besoin d'un Certificat + Noeud, afin que les connexions UDP puissent réussir + Ils ont besoin d'un Certificat + Noeud, afin que les connexions UDP puissent réussir CreateCircleDialog - Circle Details - Détails du cercle + Détails du cercle - - Name - Nom + Nom - Creator - Créateur + Créateur - Distribution - Distribution + Distribution - Public - Public + Public - Self-Restricted - Self-Restricted + Self-Restricted - Restricted to: - Limité à : + Limité à : - Circle Membership - Membre du cercle + Membre du cercle - IDs - IDs + IDs - Known Identities - Identités connues + Identités connues - Filter - Filtre + Filtre - Nickname - Surnom + Surnom - ID - ID + ID - Type - Type + Type - - - - RetroShare - Retroshare + Retroshare - Please set a name for your Circle - S'il vous plaît donnez un nom à votre cercle + S'il vous plaît donnez un nom à votre cercle - Personal Circle Details - Détails du cercle personnel + Détails du cercle personnel - External Circle Details - Détails du cercle extérieur + Détails du cercle extérieur - Cannot Edit Existing Circles Yet - Impossible de modifier un cercle existant pour l'instant + Impossible de modifier un cercle existant pour l'instant - No Restriction Circle Selected - Aucune restriction de cercle sélectionnée + Aucune restriction de cercle sélectionnée - No Circle Limitations Selected - Aucune limitation de cercle sélectionnée + Aucune limitation de cercle sélectionnée - Create New Personal Circle - Créer un nouveau cercle personnel + Créer un nouveau cercle personnel - Create New External Circle - Créer un nouveau cercle externe + Créer un nouveau cercle externe - Add - Ajouter + Ajouter - Remove - Enlever + Enlever - - Search - Rechercher + Rechercher - All - Tout + Tout - Signed - Signé + Signé - Signed by known nodes - Signé par des noeuds connus + Signé par des noeuds connus - Edit Circle - Modifier le cercle + Modifier le cercle - - PGP Identity - Identité PGP + Identité PGP - - - Anon Id - ID anon + ID anon - PGP Linked Id - ID PGP liée + ID PGP liée CreateGroup - - Create a Group - Créer un groupe + Créer un groupe - Group Name - Nom du groupe + Nom du groupe - Enter a name for your group - Entrez un nom pour le groupe que vous souhaitez créer + Entrez un nom pour le groupe que vous souhaitez créer - Friends - Amis + Amis - - Edit Group - Modifier le groupe + Modifier le groupe CreateGxsChannelMsg - - New Channel Post - Nouvel article sur la chaîne + Nouvel article sur la chaîne - Channel Post - Message + Message - Channel Post to: - Posté sur la Chaîne : + Posté sur la Chaîne : - <!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:'MS Shell Dlg 2'; font-size:10pt; font-weight:600;">Attachments:</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Use Drag and Drop / Add Files button, to Hash new files.</span></p> +</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:'MS Shell Dlg 2'; font-size:10pt; font-weight:600;">Attachments:</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Use Drag and Drop / Add Files button, to Hash new 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-family:'MS Shell Dlg 2'; font-size:8pt;"> Copy/Paste RetroShare links from your shares</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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> @@ -3752,2008 +3283,2176 @@ 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-family:'MS Shell Dlg 2'; font-size:8pt;"> Copier/Coller les liens Retroshare de vos partages</span></p></body></html> - Add File to Attach - Joindre un fichier + Joindre un fichier - Add Channel Thumbnail - Incorporer une miniature + Incorporer une miniature - Message - Message + Message - Subject : - Sujet : + Sujet : - - Attachments - Fichiers joints + Fichiers joints - Allow channels to get frame for message thumbnail from movie media attachments or not - permet ou non d'extraire une miniature à partir du fichier joint + permet ou non d'extraire une miniature à partir du fichier joint - Auto Thumbnail - Miniature automatique + Miniature automatique - Drag and Drop Files from Search Results - Glisser/déposer les fichiers à partir des résultats de recherche + Glisser/déposer les fichiers à partir des résultats de recherche - Paste RetroShare Links - Coller le lien Retroshare + Coller le lien Retroshare - Paste RetroShare Link - Coller le lien Retroshare + Coller le lien Retroshare - - Drop file error. - Erreur lors de l'ajout du fichier. + Erreur lors de l'ajout du fichier. - Directory can't be dropped, only files are accepted. - On ne peut pas déposer un dossier, seuls les fichiers sont acceptés. + On ne peut pas déposer un dossier, seuls les fichiers sont acceptés. - File not found or file name not accepted. - Le fichier n'a pas été trouvé ou le nom du fichier n'est pas accepté. + Le fichier n'a pas été trouvé ou le nom du fichier n'est pas accepté. - Add Extra File - Ajouter un fichier supplémentaire + Ajouter un fichier supplémentaire - - RetroShare - Retroshare + Retroshare - File already Added and Hashed - Fichier déjà ajouté et hashé + Fichier déjà ajouté et hashé - Please add a Subject - Veuillez ajouter un sujet à votre message + Veuillez ajouter un sujet à votre message - Load thumbnail picture - Charger la miniature + Charger la miniature - - Generate mass data - Générer des données de masse + Générer des données de masse - Do you really want to generate %1 messages ? - Voulez-vous vraiment générer %1 messages ? + Voulez-vous vraiment générer %1 messages ? - You are about to add files you're not actually sharing. Do you still want this to happen? - Vous êtes sur le point d'ajouter les fichiers que vous ne partagez pas actuellement. Voulez-vous toujours faire cela ? + Vous êtes sur le point d'ajouter les fichiers que vous ne partagez pas actuellement. Voulez-vous toujours faire cela ? - About to post un-owned files to a channel. - Vous êtes sur le point de publier un fichier non-possédé sur la chaîne. + Vous êtes sur le point de publier un fichier non-possédé sur la chaîne. CreateGxsForumMsg - - Post Forum Message - Poster un message sur le forum + Poster un message sur le forum - Forum - Forum + Forum - Subject - Sujet + Sujet - Attach File - Joindre un fichier + Joindre un fichier - Sign Message - Signer le message + Signer le message - Forum Post - Message + Message - Attach files via drag and drop - Joindre un fichier par glisser/déposer + Joindre un fichier par glisser/déposer - You can attach files via drag and drop here in this window - Vous pouvez joindre des fichiers par glisser/déposer + Vous pouvez joindre des fichiers par glisser/déposer - Start New Thread - Lancer un nouveau fil + Lancer un nouveau fil - No Forum - Aucun forum + Aucun forum - In Reply to - En réponse à + En réponse à - - - RetroShare - Retroshare + Retroshare - Please set a Forum Subject and Forum Message - Veuillez renseigner le sujet ainsi que le message du forum + Veuillez renseigner le sujet ainsi que le message du forum - Please choose Signing Id, it is required - S'il vous plaît choisir une Signing Id, c'est obligatoire + S'il vous plaît choisir une Signing Id, c'est obligatoire - Add Extra File - Ajouter un fichier supplémentaire + Ajouter un fichier supplémentaire - - Generate mass data - Générer des données de masse + Générer des données de masse - Do you really want to generate %1 messages ? - Voulez-vous vraiment générer %1 messages ? + Voulez-vous vraiment générer %1 messages ? - Send - Envoyer + Envoyer - Forum Message - Message de forum + Message de forum - Forum Message has not been Sent. Do you want to reject this message? - Le message de forum n'a pas été envoyé. + Le message de forum n'a pas été envoyé. Voulez-vous rejeter ce message ? - Post as - Poster en tant que + Poster en tant que - Congrats, you found a bug! - Félicitations, vous avez trouvé un bug ! + Félicitations, vous avez trouvé un bug ! CreateLobbyDialog - - Create Chat Lobby - Créer un salon de tchat + Créer un salon de tchat - 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. - Un salon de chat est un tchat en groupe décentralisé et anonyme. Tous les participants reçoivent tous les messages. Une fois que le salon est créé, vous pouvez inviter d'autres amis à partir de l'onglet Amis. + Un salon de chat est un tchat en groupe décentralisé et anonyme. Tous les participants reçoivent tous les messages. Une fois que le salon est créé, vous pouvez inviter d'autres amis à partir de l'onglet Amis. - Lobby name: - Nom du salon : + Nom du salon : - Lobby topic: - Sujet du salon : + Sujet du salon : - Security policy: - Politique de sécurité : + Politique de sécurité : - Public (Visible by friends) - Public (visible par les amis) + Public (visible par les amis) - Private (Works on invitation only) - Privé (sur invitation uniquement) + Privé (sur invitation uniquement) - Select the Friends with which you want to group chat. - Selectionner les amis avec qui vous voulez communiquer. + Selectionner les amis avec qui vous voulez communiquer. - Invited friends - Amis invités + Amis invités - Contacts: - Contacts : + Contacts : - Identity to use: - Identité à utiliser : + Identité à utiliser : + + + Visibility: + + + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + require PGP-signed identities + + + + Security: + + + + Put a sensible lobby name here + + + + Set a descriptive topic here + + + + + CreateMsgLinkDialog + + Create distant chat invite + + + + <html><head/><body><p align="justify">To create a private chat invite for a non-friend person, select his key below and a validity time for your invite, then press &quot;Create&quot;. The invite will contain the information required to open a tunnel to chat with you. </p><p align="justify">The invite is encrypted, and does not reveal your identity. Only the selected peer can decrypt the link, and use it to contact you.</p></body></html> + + + + Invite type: + + + + Private chat + Tchat privé + + + Validity time : + + + + hour + + + + day + + + + week + + + + month + + + + year + + + + Create! + + + + Create distant chat + + + + Private chat invite creation failed + + + + The creation of the chat invite failed + + + + Private chat invite created + + + + Your new chat invite has been created. You can now copy/paste it as a Retroshare link. + + + + Messaging invite creation failed + + + + The creation of the messaging invite failed + + + + Messaging invite created + + + + Your new messaging chat invite has been copied to clipboard. You can now paste it as a Retroshare link. + CryptoPage - Public Information - Information publique + Information publique - Name: - Nom : + Nom : - Location: - Emplacement : + Emplacement : - Location ID: - ID de l'emplacement : + ID de l'emplacement : - Software Version: - Version du logiciel : + Version du logiciel : - Online since: - En ligne depuis : + En ligne depuis : - Other Information - Autres informations + Autres informations - Certificate - Certificat + Certificat - Include signatures - Inclure les signatures + Inclure les signatures - Save Key into a file - Enregistrer votre clé dans un fichier + Enregistrer votre clé dans un fichier - A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - Un lien Retroshare avec votre clé publique est copié dans le presse-papier, collez et envoyez-la à vos amis par courrier électronique ou par tout autre moyen + Un lien Retroshare avec votre clé publique est copié dans le presse-papier, collez et envoyez-la à vos amis par courrier électronique ou par tout autre moyen - Error - Erreur + Erreur - Your certificate could not be parsed correctly. Please contact the developers. - Votre certificat n'a pas pu être analysé correctement. S'il vous plaît contactez les développeurs. + Votre certificat n'a pas pu être analysé correctement. S'il vous plaît contactez les développeurs. - RetroShare - Retroshare + Retroshare - Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - Votre clé publique est copiée dans le presse-papier, collez et envoyez-la à vos amis par courrier électronique ou par tout autre moyen + Votre clé publique est copiée dans le presse-papier, collez et envoyez-la à vos amis par courrier électronique ou par tout autre moyen - Save as... - Enregistrer sous... + Enregistrer sous... - RetroShare Certificate (*.rsc );;All Files (*) - Certificat Retroshare (*.rsc );;Tous les fichiers (*) + Certificat Retroshare (*.rsc );;Tous les fichiers (*) - TextLabel - Etiquette + Etiquette - PGP fingerprint: - Empreinte PGP : + Empreinte PGP : - Node information - Information de noeud + Information de noeud - PGP Id : - ID PGP : + ID PGP : - Friend nodes: - Noeuds amis + Noeuds amis - Copy certificate to clipboard - Copier le certificat vers le presse-papiers + Copier le certificat vers le presse-papiers - Save certificate to file - Sauvegarder le certificat dans un fichier + Sauvegarder le certificat dans un fichier - Node - Noeud + Noeud - Create new node... - Créer nouveau noeud ... + Créer nouveau noeud ... - show statistics window - afficher la fenêtre de statistiques + afficher la fenêtre de statistiques DHTGraphSource - users - utilisateurs + utilisateurs DHTStatus - DHT - DHT + DHT - DHT Off - DHT Off + DHT Off - DHT Searching for RetroShare Peers - Recherche dans la DHT pour les pairs Retroshare + Recherche dans la DHT pour les pairs Retroshare - - RetroShare users in DHT (Total DHT users) - Utilisateurs Retroshare trouvés dans la DHT (utilisateurs totaux de la DHT) + Utilisateurs Retroshare trouvés dans la DHT (utilisateurs totaux de la DHT) - DHT Good - DHT OK + DHT OK - DHT Error - La DHT est en erreur + La DHT est en erreur + + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + No peer found in DHT + DLListDelegate - B - o + o - KB - Ko + Ko - MB - Mo + Mo - GB - Go + Go - File Never Seen - Fichier jamais vu + Fichier jamais vu DetailsDialog - Details - Détails + Détails - General - Général + Général - Done - Terminé + Terminé - Active - En cours + En cours - Outstanding - En attente + En attente - Needs checking - Doit être vérifié + Doit être vérifié - retroshare link(s) - Lien(s) Retroshare + Lien(s) Retroshare - retroshare link - lien Retroshare + lien Retroshare - Copy link to clipboard - Copier le lien dans le clipboard + Copier le lien dans le clipboard - Rating - Évaluation + Évaluation - Comments - Commentaires + Commentaires - File Name - Nom du fichier + Nom du fichier DhtWindow - Net Status - État du réseau + État du réseau - Connect Options - Options de connexion + Options de connexion - Network Mode - Mode réseau + Mode réseau - Nat Type - Type Nat + Type Nat - Nat Hole - Nat Hole + Nat Hole - Peer Address - Adresse du contact + Adresse du contact - Name - Nom + Nom - PeerId - ID du pair + ID du pair - DHT Status - Statut DHT + Statut DHT - ConnectLogic - Logique de connexion + Logique de connexion - Connect Status - Statut de connexion + Statut de connexion - Connect Mode - Mode de connexion + Mode de connexion - Request Status - Statut des requêtes + Statut des requêtes - Cb Status - Cb Statut + Cb Statut - RsId - Rs ID + Rs ID - Bucket - Bucket + Bucket - IP:Port - IP :Port + IP :Port - Key - Clé + Clé - Status Flags - Status Flags + Status Flags - Found - Trouvé + Trouvé - - Last Sent - Dernier envoi + Dernier envoi - Last Recv - Dernier reçu + Dernier reçu - Relay Mode - Mode relais + Mode relais - Source - Source + Source - Proxy - Proxy + Proxy - Destination - Destination + Destination - Class - Class + Class - Age - Ancienneté + Ancienneté - Bandwidth - Bande passante + Bande passante - Unknown NetState - Netstate inconnu + Netstate inconnu - Offline - Hors ligne + Hors ligne - Local Net - Net local + Net local - Behind NAT - Derrière un NAT + Derrière un NAT - External IP - IP externe + IP externe - UNKNOWN NAT STATE - ÉTAT DU NAT INCONNU + ÉTAT DU NAT INCONNU - SYMMETRIC NAT - NAT SYMETRIQUE + NAT SYMETRIQUE - DETERMINISTIC SYM NAT - DETERMINISTIC SYM NAT + DETERMINISTIC SYM NAT - RESTRICTED CONE NAT - RESTRICTED CONE NAT + RESTRICTED CONE NAT - FULL CONE NAT - FULL CONE NAT + FULL CONE NAT - OTHER NAT - AUTRE NAT + AUTRE NAT - NO NAT - PAS DE NAT + PAS DE NAT - UNKNOWN NAT HOLE STATUS - STATUT NAT HOLE INCONNU + STATUT NAT HOLE INCONNU - NO NAT HOLE - PAS DE TROU DANS LE NAT + PAS DE TROU DANS LE NAT - UPNP FORWARD - RENVOI UPNP + RENVOI UPNP - NATPMP FORWARD - RENVOI NATPMP + RENVOI NATPMP - MANUAL FORWARD - RENVOI MANUEL + RENVOI MANUEL - NET BAD: Unknown State - RÉSEAU MAUVAIS : État inconnu + RÉSEAU MAUVAIS : État inconnu - NET BAD: Offline - RÉSEAU MAUVAIS : Hors ligne + RÉSEAU MAUVAIS : Hors ligne - NET BAD: Behind Symmetric NAT - RÉSEAU MAUVAIS : Derrière un NAT symétrique + RÉSEAU MAUVAIS : Derrière un NAT symétrique - NET BAD: Behind NAT & No DHT - RÉSEAU MAUVAIS : Derrière un NAT et pas de DHT + RÉSEAU MAUVAIS : Derrière un NAT et pas de DHT - NET WARNING: NET Restart - AVERTISSEMENT RÉSEAU : Redémarrage du RÉSEAU + AVERTISSEMENT RÉSEAU : Redémarrage du RÉSEAU - NET WARNING: Behind NAT - AVERTISSEMENT RÉSEAU : Derrière un NAT + AVERTISSEMENT RÉSEAU : Derrière un NAT - NET WARNING: No DHT - AVERTISSEMENT RÉSEAU : Pas de DHT + AVERTISSEMENT RÉSEAU : Pas de DHT - NET STATE GOOD! - ÉTAT DU NET BON ! + ÉTAT DU NET BON ! - CAUTION: UNVERIFIABLE FORWARD! - ATTENTION : RENVOI INVÉRIFIABLE ! + ATTENTION : RENVOI INVÉRIFIABLE ! - CAUTION: UNVERIFIABLE FORWARD & NO DHT - ATTENTION : RENVOI INVÉRIFIABLE ET PAS DE DHT + ATTENTION : RENVOI INVÉRIFIABLE ET PAS DE DHT - Not Active (Maybe Connected!) - Non actif (peut-être connecté !) + Non actif (peut-être connecté !) - Searching - Recherche + Recherche - Failed - Échoué + Échoué - offline - hors ligne + hors ligne - Unreachable - Inaccessible + Inaccessible - ONLINE - EN LIGNE + EN LIGNE - Direct - Directe + Directe - None - Aucune + Aucune - Disconnected - Déconnecté + Déconnecté - Udp Started - Udp démarré + Udp démarré - Connected - Connecté + Connecté - Request Active - Requête active + Requête active - No Request - Aucune requête + Aucune requête - Unknown - Inconnu + Inconnu - RELAY END - FIN DU RELAIS + FIN DU RELAIS - - Yourself - Moi + Moi - - unknown - inconnu + inconnu - unlimited - illimité + illimité - Own Relay - Propre relais + Propre relais - RELAY PROXY - PROXY DE RELAIS + PROXY DE RELAIS - - - - - %1 secs ago - %1 secs avant + %1 secs avant - %1B/s - %1 o/s + %1 o/s - 0x%1 EX:0x%2 - 0x%1 EX:0x%2 + 0x%1 EX:0x%2 - never - jamais + jamais - - DHT - DHT + DHT - Net Status: - Statut réseau : + Statut réseau : - Network Mode: - Mode réseau : + Mode réseau : - Nat Type: - Type de NAT : + Type de NAT : - Nat Hole: - Trou NAT : + Trou NAT : - Connect Mode: - Mode de connexion : + Mode de connexion : - Peer Address: - Adresse du pair : + Adresse du pair : - Unreach: - Non atteint : + Non atteint : - Online: - En ligne : + En ligne : - Offline: - Hors ligne : + Hors ligne : - DHT Peers: - Pairs de la DHT : + Pairs de la DHT : - Disconnected: - Déconnecté : + Déconnecté : - Direct: - Direct : + Direct : - Proxy: - Proxy : + Proxy : - Relay: - Relais : + Relais : - DHT Graph - Graphe DHT + Graphe DHT + + + Filter: + Filtre : + + + Search Network + Chercher dans le réseau + + + Peers + Contacts + + + Relay + Relais + + + IP + IP + + + Search IP + + + + Copy %1 to clipboard + - Proxy VIA - + - Relay VIA - + + + + Relays + DirectoriesPage - Incoming Directory - Dossier des fichiers terminés + Dossier des fichiers terminés - - Browse - Parcourir + Parcourir - Partials Directory - Dossier temporaire + Dossier temporaire - Shared Directories - Dossiers partagés + Dossiers partagés - Automatically share incoming directory (Recommended) - Partager automatiquement le dossier de réception (recommandé) + Partager automatiquement le dossier de réception (recommandé) - Edit Share - Modifier les partages + Modifier les partages - 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. - Sauvegarde le hachage des fichiers, même s'ils ne sont pas partagés. + Sauvegarde le hachage des fichiers, même s'ils ne sont pas partagés. Cela peut être intéressant si vous partagez des fichiers situés sur un disque dur externe afin d'éviter un re-hachage des fichiers quand vous le rebrancher. - Remember hashed files for - Sauvegarder le hachage pendant + Sauvegarder le hachage pendant - days - jours + jours - Forget any hashed file that is not anymore shared. - Effacer le hachage des fichiers qui ne sont plus partagés. + Effacer le hachage des fichiers qui ne sont plus partagés. - Clean Hash Cache - Effacer le cache de la table de hachage + Effacer le cache de la table de hachage - Auto-check shared directories every - Vérifier automatiquement les dossiers partagés toutes les + Vérifier automatiquement les dossiers partagés toutes les - minute(s) - minute(s) + minute(s) - - Cache cleaning confirmation - Confirmation du nettoyage du cache + Confirmation du nettoyage du cache - - This will forget any former hash of non shared files. Do you confirm ? - Cela effacera tous les anciens hash des fichiers non partagés. Confirmez-vous ? + Cela effacera tous les anciens hash des fichiers non partagés. Confirmez-vous ? - Set Incoming Directory - Spécifier le dossier entrant + Spécifier le dossier entrant - Set Partials Directory - Spécifier le dossier temporaire + Spécifier le dossier temporaire - Directories - Dossiers + Dossiers DiscStatus - Waiting outgoing discovery operations - En attente des opérations de découvertes sortantes + En attente des opérations de découvertes sortantes - Waiting incoming discovery operations - En attente des opérations de découvertes entrantes + En attente des opérations de découvertes entrantes DownloadToaster - Start file - Ouvrir le fichier + Ouvrir le fichier + + + + ExampleDialog + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" 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> + + + + # + + + + Status + Statut + + + Person + + + + Auto Connect + + + + Trust Level + + + + Peer Address + + + + Last Contact + Dernier contact + + + Organization + + + + Location + + + + Country + + + + Person Id + + + + Auth Code + + + + Vote Up + Voter + + + + Vote Down + Voter - ExprParamElement - - - to - à + à - ignore case - Ignorer la casse + Ignorer la casse - - dd.MM.yyyy - jj.MM.aaaa + jj.MM.aaaa - - KB - Ko + Ko - - MB - Mo + Mo - - GB - Go + Go ExpressionWidget - Expression Widget - Expression Widget + Expression Widget - Delete this expression - Supprimer cette expression + Supprimer cette expression FileAssociationsPage - &New - &Nouveau + &Nouveau - Add new Association - Ajouter une nouvelle association + Ajouter une nouvelle association - &Edit - &Editer + &Editer - Edit this Association - Modifier cette association + Modifier cette association - &Remove - Supp&rimer + Supp&rimer - Remove this Association - Supprimer cette association + Supprimer cette association - File type - Type de fichier + Type de fichier - Friend Help - Aide + Aide - You this - Moi + Moi - Associations - Associations + Associations FileTransferInfoWidget - Chunk map - Répartition des paquets + Répartition des paquets - Active chunks - Paquets en cours de chargement + Paquets en cours de chargement - Availability map (%1 active source) - Disponibilité des paquets (%1 source active) + Disponibilité des paquets (%1 source active) - Availability map (%1 active sources) - Disponibilité des paquets (%1 source(s) active(s)) + Disponibilité des paquets (%1 source(s) active(s)) - File info - Informations sur le fichier + Informations sur le fichier - File name - Nom du fichier + Nom du fichier - Destination folder - Dossier de destination + Dossier de destination - File hash - Hash du fichier + Hash du fichier - File size - Taille du fichier + Taille du fichier - - - - bytes - octets + octets - Chunk size - Taille des paquets + Taille des paquets - Number of chunks - Nombre de paquets + Nombre de paquets - Transferred - Transféré + Transféré - Remaining - Restant + Restant - Number of sources - Nombre de sources + Nombre de sources - Chunk strategy - Méthode de téléchargement + Méthode de téléchargement - Transfer type - Type de transfert + Type de transfert - Anonymous F2F - F2F Anonyme + F2F Anonyme - Direct friend transfer / Availability assumed - Transfert direct / Disponibilité supposée + Transfert direct / Disponibilité supposée FilesDefs - Picture - Image + Image - Video - Vidéo + Vidéo - Audio - Audio + Audio - Archive - Archive + Archive - Program - Programme + Programme - CD/DVD-Image - CD/DVD-Image + CD/DVD-Image - - Document - Document + Document - RetroShare collection file - Fichier de collection Retroshare + Fichier de collection Retroshare - Subtitles - Sous-titres + Sous-titres - Nintendo DS Rom - Nintendo DS Rom + Nintendo DS Rom - Patch - Patch + Patch - C++ - C++ + C++ - Header - En-tête + En-tête - C - C + C FlatStyle_RDM - Friends Directories - Dossiers partagés de mes amis + Dossiers partagés de mes amis - My Directories - Vos dossiers + Vos dossiers - Size - Taille + Taille - Age - Ancienneté + Ancienneté - Friend - Ami + Ami - Share Flags - Type de partage + Type de partage - Directory - Dossier + Dossier + + + + Form + + Form + Formulaire + + + Manage the physical folders in your library. + + + + Share Files + + + + Shares + + + + Organiser + + + + All Files + + + + Favorites + Favoris + + + Ghost Files + + + + My Applications + + + + All Applications + + + + My eBooks + + + + All eBooks + + + + My Documents + + + + All Documents + + + + My Images + + + + All Images + + + + My Music + + + + All Music + + + + By Album + + + + By Artist + + + + By Genre + + + + My Video + + + + All Video + + + + Films + + + + Music Videos + + + + TV Shows + + + + Search + + + + Tile View + + + + Show Details + Afficher détails + + + <!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;"><img src=":/Actions/Graphics/Actions/OpenDownloadFolder.png" /><span style=" font-size:8pt;"> </span><span style=" font-size:10pt; font-weight:600;">Exploring My Shared Folders</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;"><img src=":/Icons/Resource/Folder Libary_32.png" /><span style=" font-size:8pt;"> </span><span style=" font-size:10pt; font-weight:600;">Exploring With The Organiser</span></p></body></html> + + + + Create Album + Créer un album + + + Delete Album + ForumPage - Misc - Divers + Divers - Set message to read on activate - Changer l'état de lecture du message + Changer l'état de lecture du message - Expand new messages - Développer les nouveaux messages + Développer les nouveaux messages - Forum - Forum + Forum - Load embedded images - Charger les images incorporées + Charger les images incorporées - Tabs - Onglets + Onglets - Open each forum in a new tab - Ouvrir chaque forum dans un nouvel onglet + Ouvrir chaque forum dans un nouvel onglet FriendList - - Status - Statut + Statut - - - Last Contact - Dernier contact + Dernier contact - - Avatar - Avatar + Avatar - Hide Offline Friends - Cacher mes amis hors ligne + Cacher mes amis hors ligne - State - Statut + Statut - Sort by State - Trier par statut + Trier par statut - Hide State - Cacher le statut + Cacher le statut - - Sort Descending Order - Trier par ordre décroissant + Trier par ordre décroissant - - Sort Ascending Order - Trier par ordre croissant + Trier par ordre croissant - Show Avatar Column - Afficher la colonne des avatars + Afficher la colonne des avatars - Name - Nom + Nom - Sort by Name - Trier par nom + Trier par nom - Sort by last contact - Trier par dernier contact + Trier par dernier contact - Show Last Contact Column - Afficher la colonne des derniers contact + Afficher la colonne des derniers contact - Set root is Decorated - Afficher l'arborescence + Afficher l'arborescence - Set Root Decorated - Afficher l'arborescence + Afficher l'arborescence - - Show Groups - Afficher les groupes + Afficher les groupes - Group - Groupe + Groupe - Friend - Ami + Ami - Edit Group - Modifier le groupe + Modifier le groupe - Remove Group - Supprimer le groupe + Supprimer le groupe - - Chat - Tchat + Tchat - Recommend this Friend to... - Recommander cet ami à... + Recommander cet ami à... - Copy certificate link - Copier le lien Retroshare + Copier le lien Retroshare - Add to group - Ajouter à un groupe + Ajouter à un groupe - Move to group - Déplacer dans le groupe + Déplacer dans le groupe - Groups - Groupes + Groupes - Remove from group - Supprimer du groupe + Supprimer du groupe - Remove from all groups - Supprimer de tous les groupes + Supprimer de tous les groupes - Expand all - Tout déplier + Tout déplier - Collapse all - Tout replier + Tout replier - - Available - Disponible + Disponible - Do you want to remove this Friend? - Désirez-vous supprimer cet ami ? + Désirez-vous supprimer cet ami ? - Columns - Colonnes + Colonnes - - - IP - IP + IP - Sort by IP - Trier par IP + Trier par IP - Show IP Column - Afficher la colonne des IPs + Afficher la colonne des IPs - Attempt to connect - Tentative de connexion + Tentative de connexion - Create new group - Créer un nouveau groupe + Créer un nouveau groupe - Display - Affichage + Affichage - Paste certificate link - Collez le lien de votre certificat + Collez le lien de votre certificat - Sort by - Trier par + Trier par - Node - Noeud + Noeud - Remove Friend Node - Enlever noeud d'ami + Enlever noeud d'ami - Do you want to remove this node? - Voulez-vous retirer ce noeud ? + Voulez-vous retirer ce noeud ? - Friend nodes - Noeuds amis + Noeuds amis - Send message to whole group - Envoyer le message au groupe entier + Envoyer le message au groupe entier - - Details - Détails + Détails - Deny - Refuser + Refuser - - Send message - Envoyer message + Envoyer message + + + Show State + + + + export friendlist + + + + export your friendlist including groups + + + + import friendlist + + + + import your friendlist including groups + + + + Search + + + + Sort by state + + + + Done! + + + + Your friendlist is stored at: + + + + + +(keep in mind that the file is unencrypted!) + + + + Your friendlist was imported from: + + + + + Done - but errors happened! + + + + +at least one peer was not added + + + + +at least one peer was not added to a group + + + + Select file for importing yoour friendlist from + + + + Select a file for exporting your friendlist to + + + + XML File (*.xml);;All Files (*) + + + + Error + Erreur + + + Failed to get a file! + + + + File is not writeable! + + + + + File is not readable! + + FriendRequestToaster - Confirm Friend Request - Accepter la demande d'amitié + Accepter la demande d'amitié - wants to be friend with you on RetroShare - veut devenir ton ami(e) sur Retroshare + veut devenir ton ami(e) sur Retroshare - Unknown (Incoming) Connect Attempt - Tentative de connexion (entrante) inconnue + Tentative de connexion (entrante) inconnue FriendSelectionWidget - Search : - Rechercher : + Rechercher : - All - Tout + Tout - None - Aucune + Aucune - Name - Nom + Nom - Search Friends - Rechercher des amis + Rechercher des amis + + + Sort by state + + + + Mark all + Tout marquer + + + Mark none + FriendsDialog - Edit status message - Modifier le message d'état + Modifier le message d'état - - Broadcast - Tchat entre amis + Tchat entre amis - Clear Chat History - Effacer l'historique du tchat + Effacer l'historique du tchat - Add Friend - Ajouter un ami + Ajouter un ami - Add your Avatar Picture - Ajouter votre image d'avatar + Ajouter votre image d'avatar - A - A + A - Set your status message - Définir votre message d'état + Définir votre message d'état - Edit your status message - Modifier votre message d'état + Modifier votre message d'état - Browse Message History - Parcourir l'historique des messages + Parcourir l'historique des messages - Browse History - Parcourir l'historique + Parcourir l'historique - - Save Chat History - Sauvegarder l'historique du tchat + Sauvegarder l'historique du tchat - - Add a new Group - Ajouter un nouveau groupe + Ajouter un nouveau groupe - Delete Chat History - Supprimer l'historique du tchat + Supprimer l'historique du tchat - Deletes all stored and displayed chat history - Supprimer tous les historiques de tchat affichés et enregistrés + Supprimer tous les historiques de tchat affichés et enregistrés - - Create new Chat lobby - Créer un nouveau salon de tchat + Créer un nouveau salon de tchat - Choose Font - Choisir la police + Choisir la police - Reset font to default - Réinitialiser à la valeur par défaut + Réinitialiser à la valeur par défaut - Keyring - Trousseau + Trousseau - Retroshare broadcast chat: messages are sent to all connected friends. - Retroshare broadcast chat : les messages sont envoyés à tous vos amis en ligne. + Retroshare broadcast chat : les messages sont envoyés à tous vos amis en ligne. - - Network - Réseau + Réseau - Network graph - Graphe réseau + Graphe réseau - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Réseau</h1> <p>L'onglet réseau montre les noeuds de vos amis Retroshare : les noeuds Retroshare voisins qui sont connectés à vous.</p> <p>Vous pouvez grouper les noeuds ensemble pour permettre un niveau d'accès à l'information plus fin, par exemple pour permettre seulement à quelques noeuds de voir vos fichiers.</p> <p>Sur la droite, vous trouverez 3 onglets utiles : <ul> <li>Chat entre amis (broadcast) : envoie les messages immédiatement à tous les noeuds connectés</li> <li>Réseau local : ce graphique montre le réseau autours de vous, en se basant sur l'information de découverte</li> <li>Trousseau (de clés) : contient les clés des noeuds que vous avez collecté, elles ont été transférées vers vous principalement par les noeuds de vos amis</li> </ul> </p> + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Réseau</h1> <p>L'onglet réseau montre les noeuds de vos amis Retroshare : les noeuds Retroshare voisins qui sont connectés à vous.</p> <p>Vous pouvez grouper les noeuds ensemble pour permettre un niveau d'accès à l'information plus fin, par exemple pour permettre seulement à quelques noeuds de voir vos fichiers.</p> <p>Sur la droite, vous trouverez 3 onglets utiles : <ul> <li>Chat entre amis (broadcast) : envoie les messages immédiatement à tous les noeuds connectés</li> <li>Réseau local : ce graphique montre le réseau autours de vous, en se basant sur l'information de découverte</li> <li>Trousseau (de clés) : contient les clés des noeuds que vous avez collecté, elles ont été transférées vers vous principalement par les noeuds de vos amis</li> </ul> </p> - Set your status message here. - Mettez ici votre message de statut. + Mettez ici votre message de statut. + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + + GamesDialog + + Form + Formulaire + + + <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; font-weight:600;">Games Launcher</span></p></body></html> + + + + Game: + + + + GameType: 0. Want to Add your Game here? + + + + GameType: 1. Get In Touch with the developers + + + + GameType: 2. + + + + Title / Comment + + + + Create New Game + + + + Invite All Friends + + + + Game Type + + + + Server + + + + Status + Statut + + + Comment + Commentaire + + + GameID + + + + Player + + + + Invite + + + + Interested + + + + Accept + + + + Delete + + + + Move Player + + + + Play Game + + + + Cancel Game + + + + Add to Invite List + + + + Remove from Invite List + + + + Interested in Playing + + + + Not Interested in Game + + + + Not Interested + + + + Confirm Peer in Game + + + + Remove Peer from Game + + + + Interested in Game + + + + Quit Game + GenCertDialog - Create new Profile Créer un nouveau profil - Name Pseudo - Enter your nickname here Entrez votre surnom ici - Email Courrier électronique - Be careful: this email will be visible to your friends and friends of your friends. This information is required by PGP, but to stay anonymous, you can use a fake email. @@ -5762,213 +5461,164 @@ de vos amis. Cette information est requise pour la génération de votre clé PG mais pour rester anonyme, vous pouvez utiliser un faux courrier électronique. - Password Mot de passe - [Optional] Visible to your friends, and friends of friends. [Optionnel] Visible par vos amis et les amis de vos amis. - [Required] Examples: Home, Laptop,... [Obligatoire] Exemples : Maison, Portable... - [Required] Visible to your friends, and friends of friends. [Obligatoire] Visible par vos amis et les amis de vos amis. - All fields are required with a minimum of 3 characters Tous les champs sont requis avec un minimum de 3 caractères - Password (check) Mot de passe (contrôle) - <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/><body><p align="justify">Avant de continuer, déplacez votre souris pour aider Retroshare à recueillir autant de données aléatoires que possible. Remplir la barre de progression jusqu'à 20&#37; est nécessaire, 100&#37; est conseillé.</p></body></html> - [Required] Type the same password again here. [Obligatoire] Tapez le même mot de passe ici. - Passwords do not match Les mots de passe ne correspondent pas - Port Port - - This password is for PGP Ce mot de passe est pour PGP - Node Noeud - - Create new node Créer nouveau noeud - - Generate new node Générer nouveau noeud - - Create a new node Créer un nouveau noeud - You can use it now to create a new node. Vous pouvez maintenant l'utiliser pour créer un nouveau noeud. - Invalid hidden node Noeud caché invalide - Please enter a valid address of the form: 31769173498.onion:7800 - Veuillez entrer une adresse valide sous la forme : 31769173498.onion:7800 + Veuillez entrer une adresse valide sous la forme : 31769173498.onion:7800 - Node field is required with a minimum of 3 characters Le champ noeud est exigé avec un minimum de 3 caractères - Failed to generate your new certificate, maybe PGP password is wrong! - Échec lors de la génération de votre nouveau certificat, peut-être que votre mot de passe PGP est faux ! + Échec lors de la génération de votre nouveau certificat, peut-être que votre mot de passe PGP est incorrect ? - You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" Vous pouvez créer un nouveau profil avec ce formulaire. -Autrement vous pouvez utiliser un profil existant. Il vous suffit de décocher "Créer un nouveau profil" +Vous pouvez aussi utiliser un profil existant. Il vous suffit de décocher "Créer un nouveau profil" - You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. Vous pouvez créer et exécuter des noeuds Retroshare sur des ordinateurs différents mais utilisant le même profil. Pour faire cela il vous suffit d'exporter le profil choisi, puis l'importer sur l'autre ordinateur et créer un nouveau noeud avec. - It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - Il semble qu'aucun profil (clés PGP) n'existe. Veuillez remplir le formulaire ci-dessous afin d'en créer un, ou importer un profil existant. + Il semble qu'aucun profil (clés PGP) n'est disponible. Veuillez remplir le formulaire ci-dessous afin d'en créer un, ou importer un profil existant. - No node exists for this profile. Aucun noeud n'existe pour ce profil. - - Your profile is associated with a PGP key pair Votre profil est associé à une paire de clés PGP - - Create a new profile Créer un nouveau profil - Import new profile Importer un nouveau profil - Export selected profile Exporter le profil sélectionné - Advanced options Options avancées - Create a hidden node Créer un noeud caché - Use profile Utiliser le profil - Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. Votre profil est associé à une paire de clé PGP. Actuellement RetroShare ignore les clés DSA. - - Put a strong password here. This password protects your private PGP key. Mettez un mot de passe fort ici. Ce mot de passe protège votre clé PGP privée. - <html><head/><body><p>This is your connection port.</p><p>Any value between 1024 and 65535 </p><p>should be ok. You can change it later.</p></body></html> <html><head/><body><p>Ceci est votre port de connexion.</p><p>N'importe quelle valeur entre 1024 et 65535 </p><p> devrait être OK. Il vous sera possible de la changer plus tard.</p></body></html> - PGP key length Longueur de la clé PGP - - - Create new profile Créer un nouveau profil - Currently disabled. Please move your mouse around until you reach at least 20% Actuellement désactivé. Veuillez déplacer votre souris au hasard jusqu'à ce que vous ayez atteint au moins 20% - Click to create your node and/or profile Cliquez pour créer votre noeud et/ou profil - [Required] This password protects your private PGP key. [Requis] Ce mot de passe protège votre clé PGP privée. - Enter a meaningful node description. e.g. : home, laptop, etc. This field will be used to differentiate different installations with the same profile (PGP key pair). @@ -5976,256 +5626,219 @@ the same profile (PGP key pair). Ce champ sera utilisé pour différencier des installations différentes utilisant le même profil (pair clé PGP). - - Generate new profile and node Générer un nouveau profil et noeud - - Create a new profile and node Créer un nouveau profil et noeud - Alternatively you can use an existing profile. Just uncheck "Create a new profile" Autrement vous pouvez utiliser un profil existant. Il vous suffit de décocher "Créer un nouveau profil" - Welcome to Retroshare. Before you can proceed you need to create a profile and associate a node with it. To do so please fill out this form. Alternatively you can import a (previously exported) profile. Just uncheck "Create a new profile" - Bienvenue à Retroshare. Avant de continuer vous devez créer un profil et associer un noeud avec. Pour faire cela veuillez remplir ce formulaire. -Autrement vous pouvez importer un profil (exporté précédemment). Il vous suffit de décocher "Créer un nouveau profil" + Bienvenue!. Avant de continuer vous devez créer un profil et lui associer un noeud . Pour cela veuillez remplir ce formulaire. +Vous pouvez aussi importer un profil (exporté précédemment). Il vous suffit de décocher "Créer un nouveau profil" - No node is associated with the profile named Aucun noeud n'est associé au profil nommé - Please create a node for it by providing a node name. Veuillez créer un noeud pour lui en fournissant un nom de noeud. - Welcome to Retroshare. Before you can proceed you need to import a profile and after that associate a node with it. - Bienvenue à Retroshare. Avant de pouvoir continuer vous devez importer un profil et ensuite lui associer un noeud. + Bienvenue !. Avant de pouvoir continuer vous devez importer un profil et ensuite lui associer un noeud. - Export profile - Exporter profil + Exporter le profil - - RetroShare profile files (*.asc) - Fichiers de profils RetroShare (*.asc) + Fichiers de profils RetroShare (*.asc) - Profile saved Profil sauvegardé - Your profile was successfully saved It is encrypted You can now copy it to another computer and use the import button to load it Votre profil a été sauvegardé avec succès -Il est crypté +Il est chiffré Vous pouvez maintenant le copier sur un autre ordinateur et l'utiliser au moyen du bouton d'importation afin de le charger - Profile not saved Profil non sauvegardé - Your profile was not saved. An error occurred. Votre profil n'a pas été sauvegardé. Une erreur est arrivée. - Import profile - Importer profil + Importer un profil - Profile not loaded Profil non chargé - Your profile was not loaded properly: Votre profil n'a pas été chargé correctement : - New profile imported - Nouveau profil importée + Nouveau profil importé - Your profile was imported successfully: Votre profil a été importé avec succès : - - - PGP key pair generation failure Échec lors de la génération de la paire de clés PGP - - Profile generation failure Échec lors de la génération du profil - Missing PGP certificate Certificat PGP manquant - Generating new PGP key pair, please be patient: this process needs generating large prime numbers, and can take some minutes on slow computers. Fill in your PGP password when asked, to sign your new key. Génération d'une nouvelle paire de clés PGP, veuillez patienter : ce processus nécessite de produire de grands nombres premiers et peut prendre quelques minutes sur des ordinateurs lents. -Remplissez votre mot de passe PGP une fois demandé, afin de signer votre nouvelle clé. +Saisissez votre mot de passe PGP une fois demandé, afin de signer votre nouvelle clé. - You can create a new profile with this form. Vous pouvez créer un nouveau profil au moyen de ce formulaire. - Tor address - Adresse Tor + Adresse Tor - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - <html><head/><body><p>Ceci est une adresse Onion Tor sous la forme : xa76giaf6ifda7ri63i263.onion </p><p>Afin d'en obtenir une, vous devez configurer Tor afin qu'il crée un nouveau service caché. Si vous n'en avez pas encore un, vous pouvez toujours continuer et le faire plus tard depuis les Options de Retroshare panneau de configuration Tor -&gt;Serveur-&gt;.</p></body></html + <html><head/><body><p>Ceci est une adresse Onion Tor sous la forme : xa76giaf6ifda7ri63i263.onion </p><p>Afin d'en obtenir une, vous devez configurer Tor afin qu'il crée un nouveau service caché. Si vous n'en avez pas encore un, vous pouvez toujours continuer et le faire plus tard depuis les Options de Retroshare panneau de configuration Tor -&gt;Serveur-&gt;.</p></body></html - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - [Requise] Exemples: xa76giaf6ifda7ri63i263.onion (obtenue par vous depuis Tor) + [Requise] Exemples: xa76giaf6ifda7ri63i263.onion (obtenue par vous depuis Tor) + + + hidden address + Adresse cachée + + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + <html><head/><body><p>Ceci est une adresse Tor de la forme: xa76giaf6ifda7ri63i263.onion <br/>ou une adresse I2P de la forme: [52 caractères].b32.i2p </p><p>Pour en obtenir une; vous devez préalablement configurer Tor ou I2P pour créer un nouveau service caché. Vous pouvez toutefois poursuivre maintenant et lancer Retroshare à condition de fournir cette adresse ultérieurement dans le panneau de configuration -&gt;Server-&gt;.</p></body></html> + + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + [Obligatoire] Adresse Tor/I2P - Exemple: xa76giaf6ifda7ri63i263.onion (Fournie pour vous par Tor) + + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + Entrez une adresse valide de la forme: 31769173498.onion:7800 ou [52 characters].b32.i2p GeneralPage - Startup Démarrage - Start RetroShare when my system starts Lancer Retroshare au démarrage du système - Start minimized Démarrer Retroshare dans la zone de notification - Start minimized on system start Minimiser Retroshare au démarrage du système - For Advanced Users Pour les utilisateurs avancés - Enable Advanced Mode (Restart Required) Activer le mode avancé (redémarrage requis) - Misc Divers - Do not show the Quit RetroShare MessageBox Ne pas afficher le message d'avertissement à la fermeture de Retroshare - Auto Login Connexion automatique - Register retroshare:// as URL protocol (Restart required) Enregistrer retroshare :// en tant que protocole (redémarrage requis) - You need administrator rights to change this option. Vous avez besoin des droits administrateur pour modifier cette option. - Idle Inactivité - Idle Time Inactif après - seconds secondes - Launch startup wizard Lancer l'assistant de configuration rapide - - Error Erreur - Could not add retroshare:// as protocol. Impossible d'ajouter Retroshare : // en tant que protocole. - Could not remove retroshare:// protocol. Impossible de supprimer Retroshare : // en tant que protocole. - General Général - Minimize to Tray Icon Réduire dans la zone de notification @@ -6233,30 +5846,25 @@ Remplissez votre mot de passe PGP une fois demandé, afin de signer votre nouvel GetStartedDialog - - Getting Started Mise en route - - Invite Friends Inviter des amis - <!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: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-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-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-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-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-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"> + <!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;"> @@ -6268,25 +5876,22 @@ 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;">Vous ne pouvez vous connecter avec vos amis que si vous vous êtes mutuellement ajoutés les uns aux autres.</span></p></body></html> - Add Your Friends to RetroShare - Ajouter vos amis à Retroshare + Ajouter vos amis à Retroshare - Add Friends - Ajouter des amis + Ajouter des amis - <!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: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-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-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"> + <!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;"> @@ -6295,16 +5900,14 @@ 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;">Coupez puis collez leurs "certificats d'identité" dans la fenêtre pour les ajouter en tant qu'amis.</span></p></body></html> - Connect To Friends - Se connecter aux amis + Se connecter aux amis - <!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: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-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-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> @@ -6316,7 +5919,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size: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-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-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"> + <!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;"> @@ -6333,26 +5936,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;">Regardez dans la section Aide supplémentaire pour plus de conseils sur la connexion.</span></p></body></html> - Advanced: Open Firewall Port - Avancé : ouvrir un port dans le pare-feu + Avancé : ouvrir un port dans le pare-feu - <!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: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-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-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-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-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-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-size:12pt;">If none of this makes sense, don't worry about it Retroshare will still work.</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: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-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-size:8pt;"></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;"> @@ -6367,16 +5968,14 @@ 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 - Aide supplémentaire et support + Aide supplémentaire et 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;"> +</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: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-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-size:12pt;">1) look at the FAQ Wiki. This is a bit old, we trying to bring it up to date.</span></p> @@ -6389,7 +5988,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size: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-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-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"> + <!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;"> @@ -6407,2107 +6006,1965 @@ 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;">Profitez de Retroshare</span></p></body></html> - Open RS Website - Ouvrir le site web de RS + Ouvrir le site web de RS - Open FAQ Wiki - Ouvrir le Wiki FAQ + Ouvrir le Wiki FAQ - Open Online Forums - Ouvrir les forums internes + Ouvrir les forums internes - Email Support - Support par email + Support par email - Email Feedback - Commentaires par email + Commentaires par email - RetroShare Invitation - Invitation Retroshare + Invitation Retroshare - Your friend has installed RetroShare, and would like you to try it out. - Votre ami(e) vient d'installer le logiciel Retroshare et vous propose de l'essayer. + Votre ami(e) vient d'installer le logiciel Retroshare et vous propose de l'essayer. - You can get RetroShare here: %1 - Vous pouvez obtenir Retroshare ici : %1 + Vous pouvez obtenir Retroshare ici : %1 - RetroShare is a private Friend-2-Friend sharing network. - Retroshare est un réseau privé de type F2F (ami à ami). + Retroshare est un réseau privé de type F2F (ami à ami). - forums and channels, all of which are as secure as the file-sharing. - des forums, des cannaux de diffusion, tous aussi sécurisés que le transfer de fichier. + des forums, des cannaux de diffusion, tous aussi sécurisés que le transfer de fichier. - Here is your friends ID Certificate. - Voilà le certificat d'identité de votre ami(e). + Voilà le certificat d'identité de votre ami(e). - Cut and paste the text below into your RetroShare client - Coupez et collez le texte ci-dessous dans votre client Retroshare + Coupez et collez le texte ci-dessous dans votre client Retroshare - and send them your ID Certificate to get securely connected. - et envoyer lui votre certificat d'identité pour permettre la connexion sécurisée. + et envoyer lui votre certificat d'identité pour permettre la connexion sécurisée. - Cut Below Here - Coupez ci-dessous + Coupez ci-dessous - RetroShare Feedback - Retour-utilisateur Retroshare + Retour-utilisateur Retroshare - RetroShare Support - Aide Retroshare + Aide Retroshare - It has many features, including built-in chat, messaging, - Il a de nombreuses fonctionnalités, telles qu'un tchat intégré, messagerie, + Il a de nombreuses fonctionnalités, telles qu'un tchat intégré, messagerie, + + + <!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:12pt;">When your friends send you 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-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-size:12pt;">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"> +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:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up 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: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-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-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-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-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-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-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"> +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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-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"> +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: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-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-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-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-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-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-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-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-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-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-size:12pt;">Enjoy Retrosharing</span></p></body></html> + GlobalRouterStatistics - Router Statistics - Statistiques du routeur + Statistiques du routeur - Unknown Peer - Contact inconnu + Contact inconnu + + + GroupBox + + + + ID + ID + + + Identity Name + + + + Destinaton + + + + Data status + Statut données + + + Tunnel status + Statut tunnel + + + Data size + Taille données + + + Data hash + Hash données + + + Received + Reçu + + + Send + + + + Branching factor + + + + Details + Détails + + + Pending packets + Paquets en suspens + + + Unknown + GlobalRouterStatisticsWidget - Pending packets - Paquets en suspens + Paquets en suspens - Managed keys - Clés gérées + Clés gérées - Routing matrix ( - Matrice de routage ( + Matrice de routage ( - Id - Id + Id - Destination - Destination + Destination - Data status - Statut données + Statut données - Tunnel status - Statut tunnel + Statut tunnel - Data size - Taille données + Taille données - Data hash - Hash données + Hash données - Received - Reçu + Reçu - Send - Envoyé + Envoyé - : Service ID = - + + + + [Unknown identity] + GraphWidget - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Cliquez et glissez les noeuds, zoomez avec la roulette de la souris ou les touches '+' et '-' + Cliquez et glissez les noeuds, zoomez avec la roulette de la souris ou les touches '+' et '-' GroupChatToaster - Show Group Chat - Afficher le Tchat public + Afficher le Tchat public GroupDefs - Friends - Amis + Amis - Family - Famille + Famille - Co-Workers - Collègues + Collègues - Other Contacts - Autres contacts + Autres contacts - Favorites - Favoris + Favoris GroupFlagsWidget - Directory is browsable for friends from groups - Le répertoire est consultable pour les amis des groupes + Le répertoire est consultable pour les amis des groupes - Directory is NOT browsable for friends from groups - Le répertoire n'est PAS consultable pour les amis des groupes + Le répertoire n'est PAS consultable pour les amis des groupes - Directory is accessible by anonymous tunnels from friends from groups - Le répertoire est accessible par des tunnels anonymes provenant des amis des groupes + Le répertoire est accessible par des tunnels anonymes provenant des amis des groupes - Directory is NOT accessible by anonymous tunnels from friends from groups - Le répertoire n'est PAS accessible par des tunnels anonymes provenant des amis des groupes + Le répertoire n'est PAS accessible par des tunnels anonymes provenant des amis des groupes - Directory is browsable for any friend - Le répertoire est consultable par tous les amis + Le répertoire est consultable par tous les amis - Directory is NOT browsable for any friend - Le répertoire n'est consultable par AUCUN ami + Le répertoire n'est consultable par AUCUN ami - Directory is accessible by anonymous tunnels from any friend - Le répertoire est accessible par les tunnels anonymes de tous les amis + Le répertoire est accessible par les tunnels anonymes de tous les amis - Directory is NOT accessible by anonymous tunnels from any friend - Le répertoire n'est PAS accessible par les tunnels anonymes d'aucun ami + Le répertoire n'est PAS accessible par les tunnels anonymes d'aucun ami - - No one can browse this directory - Personne ne peux consulter ce dossier + Personne ne peux consulter ce dossier - No one can anonymously access this directory. - Personne ne peux anonymement accéder à ce dossier. + Personne ne peux anonymement accéder à ce dossier. - All friend nodes can browse this directory - Tous les noeuds amis peuvent consulter ce répertoire + Tous les noeuds amis peuvent consulter ce répertoire - Only friend nodes in groups %1 can browse this directory - Seulement les amis dans les groupes %1 peuvent consulter ce dossier + Seulement les amis dans les groupes %1 peuvent consulter ce dossier - All friend nodes can relay anonymous tunnels to this directory - Tous vos noeuds amis peuvent relayer des tunnels anonymes vers ce dossier + Tous vos noeuds amis peuvent relayer des tunnels anonymes vers ce dossier - Only friend nodes in groups - Seulement les noeuds amis dans les groupes + Seulement les noeuds amis dans les groupes - can relay anonymous tunnels to this directory - peuvent relayer des tunnels anonymes vers ce dossier + peuvent relayer des tunnels anonymes vers ce dossier GroupFrameSettingsWidget - Form - Formulaire + Formulaire - Hide tabbar with one open tab - Cacher la barre d'onglet avec un onglet ouvert + Cacher la barre d'onglet avec un onglet ouvert + + + + GroupListView + + Anonymous + GroupShareKey - Share - Partager + Partager - Contacts: - Contacts : + Contacts : - Please select at least one peer - Veuillez sélectionner au moins un contact + Veuillez sélectionner au moins un contact - Share channel admin permissions - Partager les permissions d'administration de la chaîne + Partager les permissions d'administration de la chaîne - Share forum admin permissions - Partager les permissions d'administration de forum + Partager les permissions d'administration de forum - You can let your friends know about your forum by sharing it with them. Select the friends with which you want to share your forum. - Vous pouvez laisser vos amis prendre connaissance de votre forum en le partageant avec eux. Choisissez les amis avec lesquels vous voulez partager votre forum. + Vous pouvez laisser vos amis prendre connaissance de votre forum en le partageant avec eux. Choisissez les amis avec lesquels vous voulez partager votre forum. - Share topic admin permissions - Partager les permissions d'administration de sujet + Partager les permissions d'administration de sujet - You can allow your friends to edit the topic. Select them in the list below. Note: it is not possible to revoke Posted admin permissions. - Vous pouvez permettre à vos amis d'éditer le sujet. Choisissez-les dans la liste ci-dessous. Note : il n'est pas possible de révoquer des permissions d'administration Postées (Posted admin permissions). + Vous pouvez permettre à vos amis d'éditer le sujet. Choisissez-les dans la liste ci-dessous. Note : il n'est pas possible de révoquer des permissions d'administration Postées (Posted admin permissions). - You can allow your friends to publish in your channel and to modify the description. Or you can send the admin permissions to another Retroshare instance. Select the friends which you want to be allowed to publish in this channel. Note: it is not possible to revoke channel admin permissions. - Vous pouvez permettre à vos amis de publier dans votre chaîne et d'en modifier la description. Ou vous pouvez envoyer les permissions d'administration à un autre instance Retroshare. Choisissez les amis auxquels vous voulez permettre de publier dans cette chaîne. Notez : il n'est pas possible de révoquer des permissions d'administration de chaîne. + Vous pouvez permettre à vos amis de publier dans votre chaîne et d'en modifier la description. Ou vous pouvez envoyer les permissions d'administration à un autre instance Retroshare. Choisissez les amis auxquels vous voulez permettre de publier dans cette chaîne. Notez : il n'est pas possible de révoquer des permissions d'administration de chaîne. GroupTreeWidget - Title - Titre + Titre - Search Title - Rechercher titre + Rechercher titre - Description - Description + Description - Search Description - Rechercher description + Rechercher description - Sort by Name - Trier par nom + Trier par nom - Sort by Popularity - Trier par popularité + Trier par popularité - Sort by Last Post - Trier par dernier message + Trier par dernier message - Display - Affichage + Affichage - You have admin rights - Vous avez les droits d'administration + Vous avez les droits d'administration - Subscribe to download and read messages - S'abonner pour télécharger et lire les messages + S'abonner pour télécharger et lire les messages + + + Sort by Posts + GuiExprElement - and - et + et - and / or - et / ou + et / ou - or - ou + ou - Name - Nom + Nom - Path - Chemin + Chemin - Extension - Extension + Extension - Hash - Hash + Hash - Date - Date + Date - Size - Taille + Taille - Popularity - Popularité + Popularité - contains - contient un des mots suivants + contient un des mots suivants - contains all - contient tous les mots + contient tous les mots - is - expression exacte + expression exacte - less than - inférieur à + inférieur à - less than or equal - inférieur ou égal à + inférieur ou égal à - equals - égaux + égaux - greater than or equal - supérieur ou égal à + supérieur ou égal à - greater than - supérieur à + supérieur à - is in range - dans l'intervalle + dans l'intervalle GxsChannelDialog - - Channels - Chaînes + Chaînes - Create Channel - Créer une chaîne + Créer une chaîne - Enable Auto-Download - Activer le téléchargement automatique + Activer le téléchargement automatique - My Channels - Vos chaînes + Vos chaînes - Subscribed Channels - Chaînes abonnées + Chaînes abonnées - Popular Channels - Chaînes populaires + Chaînes populaires - Other Channels - Autres chaînes + Autres chaînes - Disable Auto-Download - Désactiver le téléchargement automatique + Désactiver le téléchargement automatique - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chaînes</h1> <p>Les chaînes vous permettent de poster des données (ex: films, musiques) qui vont se diffuser dans le réseau</p> <p>Vous pouvez voir les chaînes auxquelles sont abonnés vos amis, et transférer automatiquement à vos amis les chaînes auxquelles vous êtes abonné. Ceci promeut les bonnes chaînes dans le réseau.</p> <p>Seul le créateur d'une chaîne peut poster dans cette chaîne. Les autre pairs dans le réseau peuvent seulement lire dedans, à moins que la chaîne ne soit privée. Vous pouvez cependant partager les droits de poster ou de lire avec des noeuds de vos amis Retroshare.</p> <p>Les chaînes peuvent être anonymes, ou attachées à une identité Retroshare afin que les lecteurs puissent prendre contact avec vous si besoin. Permettez "Autoriser commentaires" si vous voulez laisser les utilisateurs commenter vos postages.</p> <p>Les messages postés dans les chaînes sont effacés après %1 mois.</p> + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chaînes</h1> <p>Les chaînes vous permettent de poster des données (ex: films, musiques) qui vont se diffuser dans le réseau</p> <p>Vous pouvez voir les chaînes auxquelles sont abonnés vos amis, et transférer automatiquement à vos amis les chaînes auxquelles vous êtes abonné. Ceci promeut les bonnes chaînes dans le réseau.</p> <p>Seul le créateur d'une chaîne peut poster dans cette chaîne. Les autre pairs dans le réseau peuvent seulement lire dedans, à moins que la chaîne ne soit privée. Vous pouvez cependant partager les droits de poster ou de lire avec des noeuds de vos amis Retroshare.</p> <p>Les chaînes peuvent être anonymes, ou attachées à une identité Retroshare afin que les lecteurs puissent prendre contact avec vous si besoin. Permettez "Autoriser commentaires" si vous voulez laisser les utilisateurs commenter vos postages.</p> <p>Les messages postés dans les chaînes sont effacés après %1 mois.</p> + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Select channel download directory + + + + Set download directory + + + + [Default directory] + + + + Specify... + Spécifier... GxsChannelFilesStatusWidget - Form - Formulaire + Formulaire - Download - Télécharger + Télécharger - TextLabel - Etiquette + Etiquette - Open folder - Ouvrir dossier + Ouvrir dossier - Error - Erreur + Erreur - Paused - En pause + En pause - Waiting - En attente + En attente - Checking - Vérification + Vérification - Are you sure that you want to cancel and delete the file? - Êtes-vous sûr(e) de vouloir annuler et supprimer ce fichier ? + Êtes-vous sûr(e) de vouloir annuler et supprimer ce fichier ? - Can't open folder - Impossible d'ouvrir le dossier + Impossible d'ouvrir le dossier GxsChannelFilesWidget - Form - Formulaire + Formulaire - Filename - Nom du fichier + Nom du fichier - Size - Taille + Taille - Title - Titre + Titre - Published - Publié + Publié - Status - Statut + Statut GxsChannelGroupDialog - Create New Channel - Créer une nouvelle chaîne + Créer une nouvelle chaîne - Channel - Chaînes + Chaînes - Edit Channel - Modifier la chaîne + Modifier la chaîne - Add Channel Admins - Ajouter des admins à la chaîne + Ajouter des admins à la chaîne - Select Channel Admins - Sélectionner les admins de la chaîne + Sélectionner les admins de la chaîne - Update Channel - Mettre à jour la chaîne + Mettre à jour la chaîne - Create - Créer + Créer GxsChannelGroupItem - Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare - Subscribe to Channel - S'abonner à la chaîne + S'abonner à la chaîne - - Expand - Étendre + Étendre - Remove Item - Enlever l'élément + Enlever l'élément - Channel Description - Description de la chaîne + Description de la chaîne - Loading - Chargement + Chargement - New Channel - Nouvelle chaîne + Nouvelle chaîne - Hide - Cacher + Cacher GxsChannelPostItem - Toggle Message Read Status - Changer l'état de lecture du message + Changer l'état de lecture du message - Download - Télécharger + Télécharger - - Play - Lecture + Lecture - - Comments - Commentaires + Commentaires - Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare - Unsubscribe From Channel - Se désabonner de la chaîne + Se désabonner de la chaîne - - Expand - Montrer + Montrer - Set as read and remove item - Définir comme lu et supprimer l'élément + Définir comme lu et supprimer l'élément - Remove Item - Supprimer + Supprimer - Channel Feed - Fil d'actualités des chaînes + Fil d'actualités des chaînes - Files - Fichiers + Fichiers - Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - Avertissement ! Vous avez moins de %1 heure(s) et %2 minute(s) avant que ce fichier ne soit supprimé. Pensez à l'enregistrer. + Avertissement ! Vous avez moins de %1 heure(s) et %2 minute(s) avant que ce fichier ne soit supprimé. Pensez à l'enregistrer. - Hide - Cacher + Cacher - New - Nouveau + Nouveau - 0 - 0 + 0 - Comment - Commentaire + Commentaire - I like this - J'aime ça + J'aime ça - I dislike this - Je n'aime pas ça + Je n'aime pas ça - Loading - Chargement + Chargement - Open - Ouvrir + Ouvrir - Open File - Ouvrir le fichier + Ouvrir le fichier - Play Media - Lire le média + Lire le média GxsChannelPostsWidget - Post to Channel - Poster un article dans la chaîne + Poster un article dans la chaîne - Loading - Chargement + Chargement - Search channels - Chercher chaînes + Chercher chaînes - Title - Titre + Titre - Search Title - Rechercher titre + Rechercher titre - Message - Message + Message - Search Message - Chercher message + Chercher message - Filename - Nom du fichier + Nom du fichier - Search Filename - Chercher nom de fichier + Chercher nom de fichier - No Channel Selected - Aucune chaîne sélectionnée + Aucune chaîne sélectionnée - Disable Auto-Download - Désactiver le téléchargement automatique + Désactiver le téléchargement automatique - Enable Auto-Download - Activer le téléchargement automatique + Activer le téléchargement automatique - Show feeds - Afficher les flux + Afficher les flux - Show files - Afficher les fichiers + Afficher les fichiers - Feeds - Flux + Flux - Files - Fichiers + Fichiers - Subscribers - Abonnés + Abonnés - Description: - Description : + Description : - Posts (at neighbor nodes): - Posts (chez vos noeuds voisins) : + Posts (chez vos noeuds voisins) : GxsChannelUserNotify - Channel Post - Message + Message GxsCommentContainer - Comment Container - Le conteneur de commentaires + Le conteneur de commentaires GxsCommentDialog - Form - Formulaire + Formulaire - Hot - Hot + Hot - New - Nouveau + Nouveau - Top - Top + Top - Voter ID: - ID du votant : + ID du votant : - Refresh - Rafraîchir + Rafraîchir - Comment - Commentaire + Commentaire - Author - Auteur + Auteur - Date - Date + Date - Score - Score + Score - UpVotes - Votes+ + Votes+ - DownVotes - Votes- + Votes- - OwnVote - VosVotes + VosVotes GxsCommentTreeWidget - Reply to Comment - Répondre au commentaire + Répondre au commentaire - Submit Comment - Envoyer un commentaire + Envoyer un commentaire - Vote Up - Voter + + Voter + - Vote Down - Voter - + Voter - GxsCreateCommentDialog - Make Comment - Commenter + Commenter - <!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:12pt; font-weight:600;">Comment</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600;">Commentaire</span></p></body></html> - Signed by - Signé par + Signé par - Comment Signing Error - Erreur de signature du commentaire + Erreur de signature du commentaire - You need to create an Identity before you can comment - Vous devez créer une identité + Vous devez créer une identité avant de pouvoir commenter GxsForumGroupDialog - Create New Forum - Créer un nouveau forum + Créer un nouveau forum - Forum - Forum + Forum - Edit Forum - Modifier le forum + Modifier le forum - Update Forum - Mettre à jour forum + Mettre à jour forum - Add Forum Admins - Ajouter admins de forum + Ajouter admins de forum - Select Forum Admins - Sélectionner admins de forum + Sélectionner admins de forum - Create - Créer + Créer GxsForumGroupItem - Subscribe to Forum - S'abonner au forum + S'abonner au forum - - Expand - Montrer + Montrer - Remove Item - Enlever élément + Enlever élément - Forum Description - Description du forum + Description du forum - Loading - Chargement + Chargement - New Forum - Nouveau forum + Nouveau forum - Hide - Cacher + Cacher GxsForumMsgItem - - Subject: - Sujet : + Sujet : - Unsubscribe To Forum - Se désabonner du forum + Se désabonner du forum - - Expand - Montrer + Montrer - Set as read and remove item - Définir comme lu et supprimer l'élément + Définir comme lu et supprimer l'élément - Remove Item - Enlever élément + Enlever élément - In Reply to: - En réponse à : + En réponse à : - Loading - Chargement + Chargement - Forum Feed - Flux de forum + Flux de forum - Hide - Cacher + Cacher GxsForumThreadWidget - Form - Formulaire + Formulaire - Start new Thread for Selected Forum - Lancer un nouveau fil dans le forum sélectionné + Lancer un nouveau fil dans le forum sélectionné - Search forums - Chercher + Chercher - Last Post - Dernier article + Dernier article - Threaded View - Affichage en arborescence + Affichage en arborescence - Flat View - Affichage à plat + Affichage à plat - - Title - Titre + Titre - - Date - Date + Date - - - Author - Auteur + Auteur - - Loading - Chargement + Chargement - Reply Message - Répondre au message + Répondre au message - Previous Thread - Fil précédent + Fil précédent - Next Thread - Fil suivant + Fil suivant - Download all files - Télécharger tous les fichiers + Télécharger tous les fichiers - Next unread - Suivant non lu + Suivant non lu - Search Title - Rechercher titre + Rechercher titre - Search Date - Rechercher date + Rechercher date - Search Author - Rechercher par auteur + Rechercher par auteur - Content - Contenu + Contenu - Search Content - Rechercher contenu + Rechercher contenu - No name - Aucun nom + Aucun nom - Reply - Répondre + Répondre - Start New Thread - Lancer un nouveau fil + Lancer un nouveau fil - Expand all - Tout déplier + Tout déplier - Collapse all - Tout replier + Tout replier - - Mark as read - Marquer comme lu + Marquer comme lu - - with children - et toute la sous-arborescence + et toute la sous-arborescence - - Mark as unread - Marquer comme non lu + Marquer comme non lu - Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare - Hide - Cacher + Cacher - Expand - Montrer + Montrer - Anonymous - Anonyme + Anonyme - signed - Signé + Signé - none - Aucun + Aucun - [ ... Missing Message ... ] - [ ... Message manquant... ] + [ ... Message manquant... ] - - - RetroShare - Retroshare + Retroshare - No Forum Selected! - Aucun forum selectionné ! + Aucun forum selectionné ! - You cant reply to a non-existant Message - Vous ne pouvez pas répondre à un message inexistant + Vous ne pouvez pas répondre à un message inexistant - You cant reply to an Anonymous Author - Vous ne pouvez pas répondre à un auteur anonyme + Vous ne pouvez pas répondre à un auteur anonyme - Original Message - Message d'origine + Message d'origine - From - De + De - Sent - Envoyé + Envoyé - Subject - Sujet + Sujet - On %1, %2 wrote: - Le %1, %2 a écrit : + Le %1, %2 a écrit : - Forum name - Nom de forum + Nom de forum - Subscribers - Abonnés + Abonnés - Posts (at neighbor nodes) - Posts (aux noeuds voisins) + Posts (aux noeuds voisins) - Description - Description + Description - By - Par + Par - <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - <p>L'abonnement au forum rassemblera les posts disponibles depuis vos amis qui y sont abonnés et rendra le forum visible à tous les amis.</p> <p>Ensuite vous pourrez vous désabonner via le menu de contexte de la liste des forums à gauche.</p> + <p>L'abonnement au forum rassemblera les posts disponibles depuis vos amis qui y sont abonnés et rendra le forum visible à tous les amis.</p> <p>Ensuite vous pourrez vous désabonner via le menu de contexte de la liste des forums à gauche.</p> - Reply with private message - Répondre avec message privé + Répondre avec message privé + + + Save image + + + + Ban this author + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + This message was obtained from %1 + + + + [Banned] + + + + Anonymous IDs reputation threshold set to 0.4 + + + + Message routing info kept for 10 days + + + + Anti-spam + + + + [ ... Redacted message ... ] + + + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + GxsForumUserNotify - Forum Post - Message + Message GxsForumsDialog - - Forums - Forums + Forums - Create Forum - Créer un forum + Créer un forum - My Forums - Vos forums + Vos forums - Subscribed Forums - Forums abonnés + Forums abonnés - Popular Forums - Forums populaires + Forums populaires - Other Forums - Autres forums + Autres forums - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Les forums de Retroshare ressemblent aux forums d'internet, mais ils fonctionnent de façon décentralisée</p> <p>Vous voyez les forums auxquels sont abonnés vos amis, et vous transférez à vos amis les forums auxquels vous vous êtes abonné. Ceci promeut automatiquement dans le réseau les forums intéressants.</p> <p>Les messages des forums sont effacés automatiquement après %1 mois.</p> + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Les forums de Retroshare ressemblent aux forums d'internet, mais ils fonctionnent de façon décentralisée</p> <p>Vous voyez les forums auxquels sont abonnés vos amis, et vous transférez à vos amis les forums auxquels vous vous êtes abonné. Ceci promeut automatiquement dans le réseau les forums intéressants.</p> <p>Les messages des forums sont effacés automatiquement après %1 mois.</p> + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + GxsForumsFillThread - Waiting - En attente + En attente - Retrieving - Récupération + Récupération - Loading - Chargement + Chargement GxsGroupDialog - - Name - Nom + Nom - Add Icon - Ajouter une icône + Ajouter une icône - Key recipients can publish to restricted-type group and can view and publish for private-type channels - Ceux avec qui vous partagez votre clé peuvent publier sur les types de groupe à accès limité, et peuvent voir et publier sur les chaines à accès privé + Ceux avec qui vous partagez votre clé peuvent publier sur les types de groupe à accès limité, et peuvent voir et publier sur les chaines à accès privé - Share Publish Key - Partager la clé de publication + Partager la clé de publication - check peers you would like to share private publish key with - Visualiser les personnes avec qui vous partagez votre clé de publication privée + Visualiser les personnes avec qui vous partagez votre clé de publication privée - Share Key With - Clé partagée avec + Clé partagée avec - - Description - Description + Description - Message Distribution - Distribution de message + Distribution de message - - Public - Public + Public - - Restricted to Group - Limité au groupe + Limité au groupe - - Only For Your Friends - Seulement pour vos amis + Seulement pour vos amis - Publish Signatures - Signatures publiées + Signatures publiées - Open - Ouvrir + Ouvrir - New Thread - Nouveau fil + Nouveau fil - Required - Requis + Requis - Encrypted Msgs - Msgs encryptés + Msgs encryptés - Personal Signatures - Signature personnelle + Signature personnelle - PGP Required - PGP requis + PGP requis - Signature Required - Signature requise + Signature requise - If No Publish Signature - Si aucune signature publique + Si aucune signature publique - - Comments - Commentaires + Commentaires - Allow Comments - Autoriser les commentaires + Autoriser les commentaires - No Comments - Pas de commentaires + Pas de commentaires - Contacts: - Contacts : + Contacts : - Please add a Name - Veuillez ajoutez un nom + Veuillez ajoutez un nom - Load Group Logo - Charger le logo du groupe + Charger le logo du groupe - Submit Group Changes - Soumettre des changements de groupe + Soumettre des changements de groupe - - Failed to Prepare Group MetaData - please Review - Echec à préparer les méta-données de groupe - veuillez examiner + Echec à préparer les méta-données de groupe - veuillez examiner - Will be used to send feedback - Sera utilisé pour envoyer du retour d'information + Sera utilisé pour envoyer du retour d'information - Owner: - Propriétaire : + Propriétaire : - Set a descriptive description here - Mettez ici une description descriptive + Mettez ici une description descriptive - Info - Info + Info - Comments allowed - Commentaires autorisés + Commentaires autorisés - Comments not allowed - Commentaires non autorisés + Commentaires non autorisés - ID - ID + ID - Last Post - Dernier article + Dernier article - Popularity - Popularité + Popularité - Posts - Posts + Posts - Type - Type + Type - Author - Auteur + Auteur - GxsIdLabel - GxsIdLabel + GxsIdLabel + + + Spam-protection + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + Favor PGP-signed ids + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + Keep track of posts + + + + Anti spam + + + + PGP-signed ids + + + + Track of Posts + GxsGroupFrameDialog - Loading - Chargement + Chargement - Todo - À faire + À faire - Print - Imprimer + Imprimer - PrintPreview - Aperçu avant impression + Aperçu avant impression - Unsubscribe - Se désabonner + Se désabonner - Subscribe - S'abonner + S'abonner - Open in new tab - Ouvrir dans un nouvel onglet + Ouvrir dans un nouvel onglet - Show Details - Afficher détails + Afficher détails - Edit Details - Modifier détails + Modifier détails - Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare - Mark all as read - Tout marquer comme lu + Tout marquer comme lu - Mark all as unread - Tout marquer comme non lu + Tout marquer comme non lu - AUTHD - Authentification + Authentification - Share admin permissions - Partager des permissions d'administration + Partager des permissions d'administration GxsIdChooser - No Signature - Sans signature + Sans signature - Create new Identity - Créer une nouvelle identité + Créer une nouvelle identité GxsIdDetails - Loading - Chargement + Chargement - Not found - Non trouvé + Non trouvé - No Signature - Sans signature + Sans signature - - Authentication - Authentification + Authentification - unknown Key - clé inconnue + clé inconnue - anonymous - anonyme + anonyme - Identity&nbsp;name - Nom&nbsp;d'identité + Nom&nbsp;d'identité - Identity&nbsp;Id - Id&nbsp;d'identité + Id&nbsp;d'identité - Signed&nbsp;by - Signé&nbsp;par + Signé&nbsp;par - [Unknown] - [Inconnu] + [Inconnu] + + + [Banned] + GxsMessageFramePostWidget - Loading - Chargement + Chargement - No name - Aucun nom + Aucun nom + + + + GxsTunnelsDialog + + Authenticated tunnels: + + + + Tunnel ID: %1 + + + + from: %1 + + + + to: %1 + + + + status: %1 + + + + total sent: %1 bytes + + + + total recv: %1 bytes + + + + Unknown Peer + Contact inconnu HashBox - - Drop file error. - Erreur lors de l'ajout du fichier. + Erreur lors de l'ajout du fichier. - Directory can't be dropped, only files are accepted. - On ne peut pas déposer un dossier, seuls les fichiers sont acceptés. + On ne peut pas déposer un dossier, seuls les fichiers sont acceptés. - File not found or file name not accepted. - Le fichier n'a pas été trouvé ou le nom du fichier n'est pas accepté. + Le fichier n'a pas été trouvé ou le nom du fichier n'est pas accepté. HelpBrowser - - RetroShare Help - Aide Retroshare + Aide Retroshare - Find: - Trouver : + Trouver : - Find Previous - Précédent + Précédent - Find Next - Suivant + Suivant - Case sensitive - Respecter la casse + Respecter la casse - Whole words only - Mots entiers seulement + Mots entiers seulement - Contents - Contenus + Contenus - Help Topics - Rubriques d'aide + Rubriques d'aide - - Search - Recherche + Recherche - Searching for: - Chercher : + Chercher : - Found Documents - Documents trouvés + Documents trouvés - Back - Retour + Retour - Move to previous page (Backspace) - Retourner à la page précédente (Retour Arrière) + Retourner à la page précédente (Retour Arrière) - Backspace - Retour arrière + Retour arrière - Forward - Suivant + Suivant - Move to next page (Shift+Backspace) - Avancer à la page suivante (Maj+Retour arrière) + Avancer à la page suivante (Maj+Retour arrière) - Shift+Backspace - Maj+Retour arrière + Maj+Retour arrière - Home - Accueil + Accueil - Move to the Home page (Ctrl+H) - Aller à la page d'accueil (Ctrl+H) + Aller à la page d'accueil (Ctrl+H) - Ctrl+H - Ctrl+H + Ctrl+H - - - Find - Trouver + Trouver - Search for a word or phrase on current page (Ctrl+F) - Rechercher un mot ou une expression dans la page courante (Ctrl+F) + Rechercher un mot ou une expression dans la page courante (Ctrl+F) - Ctrl+F - Ctrl+F + Ctrl+F - Close - Fermer + Fermer - Close Vidalia Help - Fermer l'aide Vidalia + Fermer l'aide Vidalia - Esc - Echap + Echap - Supplied XML file is not a valid Contents document. - Le fichier XML fourni n'est pas un document valide. + Le fichier XML fourni n'est pas un document valide. - Search reached end of document - La recherche a atteint la fin du document + La recherche a atteint la fin du document - Search reached start of document - La recherche a atteint le début du document + La recherche a atteint le début du document - Text not found in document - Le texte n'a pas été trouvé dans le document + Le texte n'a pas été trouvé dans le document - Found %1 results - %1 résultats trouvés + %1 résultats trouvés - - Error Loading Help Contents: - Erreur lors du chargement de l'aide : + Erreur lors du chargement de l'aide : HelpDialog - About - À propos + À propos - <!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;"> +</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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-weight:600;">It lets you share securely your friends, </span></p> @@ -8517,11 +7974,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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> <li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> <li style=" font-size:12pt; 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">Retroshare Project Page</a></li> <li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> <li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></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:9pt; font-weight:400; font-style:normal;"> @@ -8540,44 +7997,38 @@ p, li { white-space: pre-wrap; } <li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Le Twitter Dev de Retroshare</a></li></ul></body></html> - Authors - Auteurs + Auteurs - Thanks to - Remerciements + Remerciements - Translation - Traduction + Traduction - License Agreement - Accord de licence + Accord de licence - <!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-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"> + <!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-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;">À propos de 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;"> +</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-size:8pt; font-weight:600;">RetroShare Translations:</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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" text-decoration: underline; color:#0000ff;">http://retroshare.sourceforge.net/wiki/index.php/Translation</span></a></p> @@ -8588,7 +8039,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-size:8pt;"> Daniel Wester</span><span style=" font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-size:8pt;">wester@speedmail.se</span><span style=" 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-size:8pt; font-weight:600;">German: </span><span style=" font-size:8pt;">Jan</span><span style=" font-size:8pt; font-weight:600;"> </span><span style=" font-size:8pt;">Keller</span> &lt;<span style=" font-size:8pt;">trilarion@users.sourceforge.net</span>&gt;</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-weight:600;">Polish: </span>Maciej Mrug</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:9pt; font-weight:400; font-style:normal;"> @@ -8604,1801 +8055,1717 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Polish: </span>Maciej Mrug</p></body></html> - Libraries - Bibliothèques + Bibliothèques + + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + HelpTextBrowser - Opening External Link - Ouverture d'un lien externe + Ouverture d'un lien externe - 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 peut ouvrir le lien que vous avez sélectionné dans votre navigateur web par défaut. Si votre navigateur n'est pas configuré pour utiliser Tor alors la demande ne sera pas anonyme. + Retroshare peut ouvrir le lien que vous avez sélectionné dans votre navigateur web par défaut. Si votre navigateur n'est pas configuré pour utiliser Tor alors la demande ne sera pas anonyme. - Do you want Retroshare to open the link in your Web browser? - Voulez-vous que Retroshare ouvre le lien dans votre navigateur web ? + Voulez-vous que Retroshare ouvre le lien dans votre navigateur web ? - Unable to Open Link - Impossible d'ouvrir le lien + Impossible d'ouvrir le lien - 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 n'a pas été capable d'ouvrir le lien choisi dans votre navigateur web. Vous pouvez toujours copier l'URL et le coller directement dans la barre d'adresse de votre navigateur. + Retroshare n'a pas été capable d'ouvrir le lien choisi dans votre navigateur web. Vous pouvez toujours copier l'URL et le coller directement dans la barre d'adresse de votre navigateur. - Error opening help file: - Erreur lors de l'ouverture du fichier d'aide : + Erreur lors de l'ouverture du fichier d'aide : IdDetailsDialog - - Person Details - Détails de la personne + Détails de la personne - Identity Info - Info d'identité + Info d'identité - Owner node ID : - ID du noeud propriétaire : + ID du noeud propriétaire : - Type: - Type : + Type : - Owner node name : - Nom du noeud propriétaire : + Nom du noeud propriétaire : - Identity name : - Nom de l'identité : + Nom de l'identité : - Identity ID : - ID de l'identité : + ID de l'identité : - Your Avatar Click here to change your avatar - Votre avatar + Votre avatar - Reputation - Réputation + Réputation - Overall - Global + Global - Implicit - Implicite + Implicite - Opinion - Opinion + Opinion - Peers - Contacts + Contacts - Edit Reputation - Modifier la réputation + Modifier la réputation - Tweak Opinion - Tordre opinion + Tordre opinion - Accept (+100) - Accepter (+100) + Accepter (+100) - Positive (+10) - Positive (+10) + Positive (+10) - Negative (-10) - Négative (-10) + Négative (-10) - Ban (-100) - Bannir (-100) + Bannir (-100) - Custom - Personnalisé + Personnalisé - Modify - Modifier + Modifier - Unknown real name - Vrai nom inconnu + Vrai nom inconnu - Anonymous Id - ID anonyme + ID anonyme - Identity owned by you, linked to your Retroshare node - Identité possédée par vous, liée à votre noeud Retroshare + Identité possédée par vous, liée à votre noeud Retroshare - Anonymous identity, owned by you - Identité anonyme, possédée par vous + Identité anonyme, possédée par vous - Owned by a friend Retroshare node - Possédée(s) par un noeud Retroshare ami + Possédée(s) par un noeud Retroshare ami - Owned by 2-hops Retroshare node - Possédée par noeud Retroshare à 2-étapes + Possédée par noeud Retroshare à 2-étapes - Owned by unknown Retroshare node - Possédée(s) par un noeud Retroshare inconnu + Possédée(s) par un noeud Retroshare inconnu - Anonymous identity - Identité anonyme + Identité anonyme + + + Last used: + Dernièrement utilisée : + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + Your opinion: + + + + Neighbor nodes: + + + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> + + + + Negative + + + + Neutral + + + + Positive + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + Overall: + + + + +50 Known PGP + +50 PGP connue + + + +10 UnKnown PGP + +10 PGP inconnue + + + +5 Anon Id + +5 ID anonyme + + + OK + OK + + + Banned + IdDialog - New ID - Nouvelle ID + Nouvelle ID - All - Tout + Tout - Reputation - Réputation + Réputation - Todo - À faire + À faire - - Search - Rechercher + Rechercher - Unknown real name - Vrai nom inconnu + Vrai nom inconnu - Anonymous Id - ID anonyme + ID anonyme - Create new Identity - Créer une nouvelle identité + Créer une nouvelle identité - Overall + Global + + + Implicit + Implicite + + + Opinion + Opinion + + + Peers + Contacts + + + Edit reputation + Modifier la réputation + + + Tweak Opinion + Tordre opinion + + + Accept (+100) + Accepter (+100) + + + Positive (+10) + Positive (+10) + + + Negative (-10) + Négative (-10) + + + Ban (-100) + Bannir (-100) + + + Custom + Personnaliser + + + Modify + Modifier + + + Edit identity + Modifier l'identité + + + Delete identity + Supprimer l'identité + + + Chat with this peer + Tchater avec ce pair + + + Launches a distant chat with this peer + Lancer un tchat distant avec ce pair + + + Identity name + Nom de l'identité + + + Owner node ID : + ID du noeud propriétaire : + + + Identity name : + Nom de l'identité : + + + Identity ID + ID de l'identité + + + Send message + Envoyer message + + + Identity info + Info d'identité + + + Identity ID : + ID de l'identité : + + + Owner node name : + Nom du noeud propriétaire : + + + Type: + Type : + + + Owned by you + Vous appartient + + + Anonymous + Anonymes + + + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identités</h1> <p>Dans cet onglet vous pouvez créer/éditer des identités pseudo-anonymes. </p> <p>Les identités sont utilisées pour identifier vos données de façon sécurisée : signer vos messages dans les forums et chaînes, et recevoir du compte rendu en utilisant le système embarqué de messagerie de Retroshare, poster des commentaires à la suite de messages postés dans des chaînes, etc.</p> <p> En option, les identités peuvent être signées par le certificat de votre noeud Retroshare. Il est plus facile de faire confiance à des identités signées, mais il est aussi plus facile de faire le rapprochement avec l'adresse IP de votre noeud. </p> <p> Les identités anonymes vous permettent d'interagir anonymement avec d'autres utilisateurs. Elles ne peuvent pas êtres usurpées, mais personne ne peut non plus prouver qui est celui qui possède une identité précise. </p> + + + This identity is owned by you + Cette identité est possédée par vous-même + + + Unknown PGP key + Clé PGP inconnue + + + Unknown key ID + ID de clé inconnu + + + Identity owned by you, linked to your Retroshare node + Identité possédée par vous, liée à votre noeud Retroshare + + + Anonymous identity, owned by you + Identité anonyme, possédée par vous-même + + + Anonymous identity + Identité anonyme + + + Distant chat cannot work + Le tchat distant ne peut pas fonctionner + + + Error code + Code erreur + + + People + Gens + + + Your Avatar + Click here to change your avatar + Votre avatar + + + Linked to your node + Liée(s) à votre noeud + + + Linked to neighbor nodes + Liée(s) aux noeuds voisins + + + Linked to distant nodes + Liée(s) aux noeuds distants + + + Linked to a friend Retroshare node + Liée(s) à un noeud Retroshare ami + + + Linked to a known Retroshare node + Liée(s) à un noeud Retroshare connu + + + Linked to unknown Retroshare node + Liée(s) à un noeud Retroshare inconnu + + + Chat with this person + Tchater avec cette personne + + + Chat with this person as... + Tchater avec cette personne en tant que ... + + + Send message to this person + Envoyer un message à cette personne + + + Columns + Colonnes + + + Distant chat refused with this person. + Tchat distant avec cette personne refusé + + + Last used: + Dernièrement utilisée : + + + +50 Known PGP + +50 PGP connue + + + +10 UnKnown PGP + +10 PGP inconnue + + + +5 Anon Id + +5 ID anonyme + + + Do you really want to delete this identity? + Voulez-vous vraiment supprimer cette identité ? + + + Owned by + Possédé par + + + Show + Montrer + + + column + colonne + + + Node name: + Nom de noeud : + + + Node Id : + ID de noeud : + + + Really delete? + Vraiment supprimer ? + + + () + + + + Persons + Gens + + + Send Invite + Envoyer une invitation + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + <html><head/><body><p>Moyenne des opinions exprimées par les noeuds voisins,</p><p>positif=ok. Zero=neutrel.</p></body></html> + + + Your opinion: + Votre opinion + + + Neighbor nodes: + Noeuds voisins + + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Votre opinion d'une identité influe sur sa visibilité dans l'application,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">et sa capacité à être partagée avec les noeuds voisins. Un score final est calculé a partir de votre propre opinion et de la ,oyenne des opinions des noeuds voisins:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = votre_opinion * a + moyenne_des_amis * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> + + + Negative + Negative + + + Neutral + Neutre + + + Positive + Positive + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + <html><head/><body><p>Score de réputation, prenant en compte votre propre avis et celui des noeuds voisins'.</p><p>Négatif=mauvais; positif=ok. Si le score est trop bas,</p><p>l'identité est bannie, et sera progressivement éliminée des forums; chaînes, etc.</p></body></html> + + + Overall: Global - - Implicit - Implicite - - - - Opinion - Opinion - - - - Peers + Contacts Contacts - - Edit reputation - Modifier la réputation + ID + ID - - Tweak Opinion - Tordre opinion + Search ID + Rechercher - - Accept (+100) - Accepter (+100) + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>Dans ce panneau vous pouvez créer des identités pseudo-anonymes. </p> <p>Une telle identité vous permet de signer les posts dans les forums, entrer descommentaires dans une chaîne, utiliser le chat à distance et envoyer ou recevoir des messages.</p> <p> Une identité peut être signée.par la clé de votre noeud Retroshare ou au contraire être anonyme: Une identité signée vous identifie de facon sûre et peut potentiellement être associée à votre adresse IP. </p> <p> Une identité anonyme...est anonyme. Elle ne peut pas être remplacée ou utilisée par un autre noeud mais personne ne peut non plus prouver que vous en êtes le possesseur. </p> - - Positive (+10) - Positive (+10) + OK + OK - - Negative (-10) - Négative (-10) + Banned + Banni - - Ban (-100) - Bannir (-100) + Add to Contacts + Ajouter aux contacts - - Custom - Personnaliser + Remove from Contacts + Retirer de la liste des contacts - - Modify - Modifier + Set positive opinion + Donner une opinion positive - - - Edit identity - Modifier l'identité + Set neutral opinion + Donner une opinion neutre - - Delete identity - Supprimer l'identité + Set negative opinion + Donner une opinion negative - - Chat with this peer - Tchater avec ce pair + Hi,<br>I want to be friends with you on RetroShare.<br> + - - Launches a distant chat with this peer - Lancer un tchat distant avec ce pair + You have a friend invite + - - Identity name - Nom de l'identité + Respond now: + - - Owner node ID : - ID du noeud propriétaire : - - - - Identity name : - Nom de l'identité : - - - - Identity ID - ID de l'identité - - - - Send message - Envoyer message - - - - Identity info - Info d'identité - - - - Identity ID : - ID de l'identité : - - - - Owner node name : - Nom du noeud propriétaire : - - - - Type: - Type : - - - - Owned by you - Possédée(s) par vous - - - - Anonymous - Anonymes - - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identités</h1> <p>Dans cet onglet vous pouvez créer/éditer des identités pseudo-anonymes. </p> <p>Les identités sont utilisées pour identifier vos données de façon sécurisée : signer vos messages dans les forums et chaînes, et recevoir du compte rendu en utilisant le système embarqué de messagerie de Retroshare, poster des commentaires à la suite de messages postés dans des chaînes, etc.</p> <p> En option, les identités peuvent être signées par le certificat de votre noeud Retroshare. Il est plus facile de faire confiance à des identités signées, mais il est aussi plus facile de faire le rapprochement avec l'adresse IP de votre noeud. </p> <p> Les identités anonymes vous permettent d'interagir anonymement avec d'autres utilisateurs. Elles ne peuvent pas êtres usurpées, mais personne ne peut non plus prouver qui est celui qui possède une identité précise. </p> - - - - This identity is owned by you - Cette identité est possédée par vous-même - - - - Unknown PGP key - Clé PGP inconnue - - - - - Unknown key ID - ID de clé inconnu - - - - Identity owned by you, linked to your Retroshare node - Identité possédée par vous, liée à votre noeud Retroshare - - - - Anonymous identity, owned by you - Identité anonyme, possédée par vous-même - - - - Anonymous identity - Identité anonyme - - - - Distant chat cannot work - Le tchat distant ne peut pas fonctionner - - - - Error code - Code erreur - - - - - - - People - Gens - - - - Your Avatar - Click here to change your avatar - Votre avatar - - - - Linked to your node - Liée(s) à votre noeud - - - - Linked to neighbor nodes - Liée(s) aux noeuds voisins - - - - Linked to distant nodes - Liée(s) aux noeuds distants - - - - Linked to a friend Retroshare node - Liée(s) à un noeud Retroshare ami - - - - Linked to a known Retroshare node - Liée(s) à un noeud Retroshare connu - - - - Linked to unknown Retroshare node - Liée(s) à un noeud Retroshare inconnu - - - - Chat with this person - Tchater avec cette personne - - - - Chat with this person as... - Tchater avec cette personne en tant que ... - - - - Send message to this person - Envoyer un message à cette personne - - - - Columns - Colonnes - - - - Distant chat refused with this person. - Tchat distant avec cette personne refusé - - - - Last used: - Dernièrement utilisée : - - - - +50 Known PGP - +50 PGP connue - - - - +10 UnKnown PGP - +10 PGP inconnue - - - - +5 Anon Id - +5 ID anonyme - - - - Do you really want to delete this identity? - Voulez-vous vraiment supprimer cette identité ? - - - - Owned by - Possédé par - - - - - Show - Montrer - - - - - column - colonne - - - - Node name: - Nom de noeud : - - - - Node Id : - ID de noeud : - - - - Really delete? - Vraiment supprimer ? + Thanks, <br> + Remerciements, <br> IdEditDialog - Nickname - Surnom + Surnom - Key ID - ID de la clé + ID de la clé - PGP Name - Nom PGP + Nom PGP - PGP Hash - Hash PGP + Hash PGP - PGP Id - ID PGP + ID PGP - Pseudonym - Pseudonyme + Pseudonyme - New identity - Nouvelle identité + Nouvelle identité - - To be generated - Doit être généré + Doit être généré - - - - - - - - - N/A - N/A + N/A - - Edit identity - Modifier l'identité + Modifier l'identité - Error getting key! - Erreur lors de la récupération de la clé ! + Erreur lors de la récupération de la clé ! - Error KeyID invalid - Erreur ID de la clé invalide + Erreur ID de la clé invalide - Unknown GpgId - GpgId inconnu + GpgId inconnu - Unknown real name - Vrai nom inconnu + Vrai nom inconnu - Create New Identity - Créer une nouvelle identité + Créer une nouvelle identité - Type - Type + Type - - - - - - TextLabel - Etiquette + Etiquette - - - - - - RM - - - - Add - Ajouter + Ajouter - Your Avatar Click here to change your avatar - Votre avatar + Votre avatar - Set Avatar - Mettre l'avatar + Mettre l'avatar - Linked to your profile - Liée à votre profil + Liée à votre profil - You can have one or more identities. They are used when you write in chat lobbies, forums and channel comments. They act as the destination for distant chat and the Retroshare distant mail system. - Vous pouvez avoir une seule ou plusieurs identités. Elles sont utilisées lorsque vous écrivez dans des salons de tchat, forums, et dans les commentaires de chaînes. Elles agissent comme destination pour le tchat distant et pour le système de courrier distant de Retroshare. + Vous pouvez avoir une seule ou plusieurs identités. Elles sont utilisées lorsque vous écrivez dans des salons de tchat, forums, et dans les commentaires de chaînes. Elles agissent comme destination pour le tchat distant et pour le système de courrier distant de Retroshare. - The nickname is too short. Please input at least %1 characters. - Ce pseudonyme est trop court. Veuillez saisir au moins %1 caractères. + Ce pseudonyme est trop court. Veuillez saisir au moins %1 caractères. - The nickname is too long. Please reduce the length to %1 characters. - Ce pseudonyme est trop long. Veuillez réduire la longueur à %1 caractères. + Ce pseudonyme est trop long. Veuillez réduire la longueur à %1 caractères. + + + RM + IdentityWidget - Name - Nom + Nom - KeyId - KeyId + KeyId - GXSId - IdGXS + IdGXS - Add - Ajouter + Ajouter - - - GXS name: - Nom GXS : + Nom GXS : - - - PGP name: - Nom PGP : + Nom PGP : - - GXS id: - Id GXS : + Id GXS : - PGP id: - Id PGP : + Id PGP : ImHistoryBrowser - - Message History - Historique des messages + Historique des messages - - Copy - Copier + Copier - Remove - Supprimer + Supprimer - Mark all - Tout marquer + Tout marquer - Delete - Effacer + Effacer - Clear history - Nettoyer l'historique + Nettoyer l'historique - Send - Envoyer + Envoyer + + + + ImageUtil + + Save image + + + + Cannot save the image, invalid filename + + + + Not an image + LocalSharedFilesDialog - - Open File - Ouvrir le fichier + Ouvrir le fichier - Open Folder - Ouvrir le dossier de destination + Ouvrir le dossier de destination - Edit Share Permissions - Modifier les droits de partage + Modifier les droits de partage - Checking... - Vérification en cours... + Vérification en cours... - Check files - Vérifier vos fichiers + Vérifier vos fichiers - Edit Shared Folder - Modifier les dossiers partagés + Modifier les dossiers partagés - Recommend in a message to - Recommander par messagerie à + Recommander par messagerie à - Set command for opening this file - Définir une commande d'ouverture pour ce fichier + Définir une commande d'ouverture pour ce fichier - Collection - Collection + Collection MainWindow - Add Friend - Ajouter un ami + Ajouter un ami - Add a Friend Wizard - Ajouter un ami + Ajouter un ami - Add Share - Ajouter un partage + Ajouter un partage - - - Options - Options + Options - Messenger - Messenger + Messenger - - About - À propos + À propos - SMPlayer - SMPlayer + SMPlayer - - Quit - Quitter + Quitter - - Quick Start Wizard - Assistant de configuration rapide + Assistant de configuration rapide - RetroShare %1 a secure decentralized communication platform - Retroshare %1 - Logiciel de communication sécurisé et décentralisé + Retroshare %1 - Logiciel de communication sécurisé et décentralisé - Unfinished - Inachevé + Inachevé - Low disk space warning - Alerte : Espace disque faible + Alerte : Espace disque faible - MB). RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - Mo). + Mo). Retroshare va suspendre tout accès à ce dossier en toute sécurité. Veuillez libérer de l'espace disque et cliquer sur Ok. - Show/Hide - Montrer/Cacher + Montrer/Cacher - Status - Statut + Statut - Notify - Notifications + Notifications - Open Messages - Ouvrir la messagerie + Ouvrir la messagerie - Bandwidth Graph - Graphique de bande passante + Graphique de bande passante - Applications - Applications + Applications - Help - Aide + Aide - Minimize - Réduire + Réduire - Maximize - Agrandir + Agrandir - &Quit - &Quitter + &Quitter - RetroShare - Retroshare + Retroshare - %1 new message - %1 nouveau message + %1 nouveau message - %1 new messages - %1 nouveau(x) message(s) + %1 nouveau(x) message(s) - Down: %1 (kB/s) - Réception : %1 (Ko/s) + Réception : %1 (Ko/s) - Up: %1 (kB/s) - Envoi : %1 (Ko/s) + Envoi : %1 (Ko/s) - %1 friend connected - %1 ami connecté + %1 ami connecté - %1 friends connected - %1 amis connectés + %1 amis connectés - Do you really want to exit RetroShare ? - Etes-vous sûr de vouloir quitter Retroshare ? + Etes-vous sûr de vouloir quitter Retroshare ? - Internal Error - Erreur interne + Erreur interne - Hide - Cacher + Cacher - Show - Afficher + Afficher - Make sure this link has not been forged to drag you to a malicious website. - Assurez-vous que ce lien n'a pas été créé pour vous emmener vers un site Web malveillant. + Assurez-vous que ce lien n'a pas été créé pour vous emmener vers un site Web malveillant. - Don't ask me again - Ne plus me demander + Ne plus me demander - It seems to be an old RetroShare link. Please use copy instead. - Cela semble être un ancien lien Retroshare. S'il vous plaît utiliser le copier à la place. + Cela semble être un ancien lien Retroshare. S'il vous plaît utiliser le copier à la place. - The file link is malformed. - Le lien du fichier est incorrect. + Le lien du fichier est incorrect. - ServicePermissions - Service des droits + Service des droits - Service permissions matrix - Matrice des autorisations des services + Matrice des autorisations des services - Add - Ajouter + Ajouter - Statistics - Statistiques + Statistiques - Show web interface - Afficher l'interface web + Afficher l'interface web - The disk space in your - L'espace disque dans votre + L'espace disque dans votre - directory is running low (current limit is - dossier a beaucoup diminué ! (la limite actuelle est + dossier a beaucoup diminué ! (la limite actuelle est - Really quit ? - Voulez-vous vraiment quitter ? + Voulez-vous vraiment quitter ? + + + Open Messenger + MessageComposer - - Compose - Écrire + Écrire - - Contacts - Contacts + Contacts - >> To - >> Pour + >> Pour - >> Cc - >> Copie à + >> Copie à - >> Bcc - >> Copie cachée à + >> Copie cachée à - >> Recommend - >> Recommander + >> Recommander - Paragraph - Paragraphe + Paragraphe - Heading 1 - Titre 1 + Titre 1 - - Heading 2 - Titre 2 + Titre 2 - Heading 3 - Titre 3 + Titre 3 - Heading 4 - Titre 4 + Titre 4 - Heading 5 - Titre 5 + Titre 5 - Heading 6 - Titre 6 + Titre 6 - Font size - Taille de police + Taille de police - Increase font size - Augmenter la police + Augmenter la police - Decrease font size - Diminuer la police + Diminuer la police - Bold - Gras + Gras - Italic - Italique + Italique - Alignment - Alignement + Alignement - Add an Image - Insérer une image + Insérer une image - Sets text font to code style - Paramétrer la police d'écriture dans le code + Paramétrer la police d'écriture dans le code - Underline - Souligné + Souligné - Subject: - Sujet : + Sujet : - Tags: - Mots clés : + Mots clés : - - Tags - Mots clés + Mots clés - Set Text color - Définir la couleur du texte + Définir la couleur du texte - Set Text background color - Définir la couleur de fond du texte + Définir la couleur de fond du texte - Recommended Files - Fichiers recommandés + Fichiers recommandés - File Name - Nom du fichier + Nom du fichier - Size - Taille + Taille - Hash - Hash + Hash - Send - Envoyer + Envoyer - Send this message now - Envoyer le message maintenant + Envoyer le message maintenant - Reply - Répondre + Répondre - Toggle Contacts View - Afficher la liste des contacts + Afficher la liste des contacts - Save - Enregistrer + Enregistrer - Save this message - Enregistrer le message + Enregistrer le message - Attach - Joindre + Joindre - Attach File - Joindre un fichier + Joindre un fichier - Quote - Citer + Citer - Add Blockquote - Ajouter une citation + Ajouter une citation - Send To: - Envoyer à : + Envoyer à : - &Left - Aligner à Gauche + Aligner à Gauche - C&enter - C&entrer + C&entrer - &Right - Aligner à D&roite + Aligner à D&roite - &Justify - &Justifier le texte + &Justifier le texte - - Bullet List (Disc) - - - - - Bullet List (Circle) - - - - - Bullet List (Square) - - - - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> - Bonjour, <br>Je vous recommande un(e) bon(nne) ami(e), vous pouvez lui faire confiance autant qu'à moi. <br> + Bonjour, <br>Je vous recommande un(e) bon(nne) ami(e), vous pouvez lui faire confiance autant qu'à moi. <br> - You have a friend recommendation - Vous avez une recommandation d'ami + Vous avez une recommandation d'ami - This friend is suggested by - Cet ami est suggéré par + Cet ami est suggéré par - wants to be friends with you on RetroShare - veut devenir ami(e) avec toi sur Retroshare + veut devenir ami(e) avec toi sur Retroshare - 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 - Bonjour %1,<br><br>%2 veut devenir ton ami(e) sur Retroshare.<br><br>Répondre maintenant :<br>%3<br><br>Merci,<br>L'équipe de Retroshare + Bonjour %1,<br><br>%2 veut devenir ton ami(e) sur Retroshare.<br><br>Répondre maintenant :<br>%3<br><br>Merci,<br>L'équipe de Retroshare - - Save Message - Enregistrer le message + Enregistrer le message - Message has not been Sent. Do you want to save message to draft box? - Le message n'a pas été envoyé + Le message n'a pas été envoyé Désirez-vous enregistrer le message dans les brouillons? - Paste RetroShare Link - Coller le lien Retroshare + Coller le lien Retroshare - Add to "To" - Ajouter à "A" + Ajouter à "A" - Add to "CC" - Ajouter à "Cc" + Ajouter à "Cc" - Add to "BCC" - Ajouter à "Cci" + Ajouter à "Cci" - Add as Recommend - Ajouter comme fichier recommandé + Ajouter comme fichier recommandé - Friend Details - Détails de cet ami + Détails de cet ami - Original Message - Message d'origine + Message d'origine - From - De + De - - To - Pour + Pour - - Cc - Cc + Cc - Sent - Eléments envoyés + Eléments envoyés - Subject - Sujet + Sujet - On %1, %2 wrote: - Sur %1, %2 à écrit : + Sur %1, %2 à écrit : - Re: - Re : + Re : - Fwd: - Tr : + Tr : - - - RetroShare - Retroshare + Retroshare - Do you want to send the message without a subject ? - Souhaitez-vous envoyer ce message sans sujet ? + Souhaitez-vous envoyer ce message sans sujet ? - Please insert at least one recipient. - Veuillez inscrire au moins un destinataire. + Veuillez inscrire au moins un destinataire. - Bcc - Cci + Cci - Unknown - Inconnu + Inconnu - &File - &Fichier + &Fichier - &New - &Nouveau + &Nouveau - &Open... - &Ouvrir... + &Ouvrir... - &Save - Enregi&strer + Enregi&strer - Save &As File - Enregistrer sous... + Enregistrer sous... - Save &As Draft - Enregistrer comme brouillon + Enregistrer comme brouillon - &Print... - Im&primer + Im&primer - &Export PDF... - &Exporter PDF... + &Exporter PDF... - &Quit - &Quitter + &Quitter - &Edit - &Editer + &Editer - &Undo - Ann&uler + Ann&uler - &Redo - &Rétablir + &Rétablir - Cu&t - Couper + Couper - &Copy - &Copier + &Copier - &Paste - Coller + Coller - &View - Affichage + Affichage - &Contacts Sidebar - Barre latérale des &Contacts + Barre latérale des &Contacts - &Insert - &Insérer + &Insérer - &Image - &Image + &Image - &Horizontal Line - Ligne &horizontale + Ligne &horizontale - &Format - &Format + &Format - Open File... - Ouvrir un fichier... + Ouvrir un fichier... - - HTML-Files (*.htm *.html);;All Files (*) - Fichiers HTML (*.htm *.html);;tous les fichiers (*) + Fichiers HTML (*.htm *.html);;tous les fichiers (*) - Save as... - Enregistrer sous... + Enregistrer sous... - Print Document - Imprimer le document + Imprimer le document - Export PDF - Exporter en PDF + Exporter en PDF - Message has not been Sent. Do you want to save message ? - Le message n'a pas été envoyé. + Le message n'a pas été envoyé. Voulez-vous enregistrer votre message ? - Choose Image - Insérer une image + Insérer une image - Image Files supported (*.png *.jpeg *.jpg *.gif) - Type d'images supporté (*.png *.jpeg *.jpg *.gif) + Type d'images supporté (*.png *.jpeg *.jpg *.gif) - Add Extra File - Ajouter un fichier supplémentaire + Ajouter un fichier supplémentaire - Show: - Afficher : + Afficher : - Close - Fermer + Fermer - From: - De : + De : - All - Tout + Tout - Friend Nodes - Noeuds amis + Noeuds amis - Person Details - Détails de la personne + Détails de la personne - Distant peer identities - Identités de pair distant + Identités de pair distant - Thanks, <br> - Remerciements, <br> + Remerciements, <br> - Distant identity: - Identité distante : + Identité distante : - [Missing] - [Manquante] + [Manquante] - Please create an identity to sign distant messages, or remove the distant peers from the destination list. - Veuillez créer une identité pour signer vos messages distants, ou enlever de la liste de destinations les pairs distants. + Veuillez créer une identité pour signer vos messages distants, ou enlever de la liste de destinations les pairs distants. - Node name & id: - Nom de noeud et id: + Nom de noeud et id: + + + Address list: + + + + Recommend this friend + + + + Bullet list (disc) + + + + Bullet list (circle) + + + + Bullet list (square) + + + + Ordered list (decimal) + + + + Ordered list (alpha lower) + + + + Ordered list (alpha upper) + + + + Ordered list (roman lower) + + + + Ordered list (roman upper) + + + + All addresses (mixed) + + + + All people + Tout le monde + + + My contacts + Mes contacts + + + Details + Détails MessagePage - Reading Lecture - Set message to read on activate Signaler les messages non lus - Open messages in Ouvrir le message dans - Tags Mots clés - Tags can be used to categorize and prioritize your messages Les mots clés peuvent être utilisés pour classer et donner des priorités à vos messages - Add Ajouter - Edit Modifier - Delete Supprimer - Default Par défaut - A new tab Un nouvel onglet - A new window Une nouvelle fenêtre - Edit Tag Modifier le mot clé - Message Message - Distant messages: Messages distants : - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">Le lien ci-dessous permet aux gens dans le réseau de vous envoyer des messages cryptés, en utilisant des tunnels. Pour ce faire, ils ont besoin de votre clé PGP publique, qu'ils obtiendront en utilisant le système de la découverte de Retroshare.</p></body></html> + <html><head/><body><p align="justify">Le lien ci-dessous permet aux gens dans le réseau de vous envoyer des messages cryptés, en utilisant des tunnels. Pour ce faire, ils ont besoin de votre clé PGP publique, qu'ils obtiendront en utilisant le système de la découverte de Retroshare.</p></body></html> - Accept encrypted distant messages from everyone - Accepter les messages cryptés distants de tout le monde + Accepter les messages cryptés distants de tout le monde - Load embedded images Charger les images incorporées + + Everyone + Tout le monde + + + Contacts + Contacts + + + Nobody + Personne + + + Accept encrypted distant messages from + Accepter les messages distants provenant de... + MessageToaster - Sub: Sous : @@ -10406,1168 +9773,930 @@ Voulez-vous enregistrer votre message ? MessageUserNotify - Message - Message + Message MessageWidget - Recommended Files - Fichiers recommandés + Fichiers recommandés - Download all Recommended Files - Télécharger tous les fichiers recommandés + Télécharger tous les fichiers recommandés - Subject: - Sujet : + Sujet : - From: - De : + De : - To: - Pour : + Pour : - Cc: - Cc : + Cc : - Bcc: - Cci : + Cci : - Tags: - Mots clés : + Mots clés : - File Name - Nom du fichier + Nom du fichier - Size - Taille + Taille - Hash - Hash + Hash - Print - Imprimer + Imprimer - Print Preview - Aperçu avant impression + Aperçu avant impression - Confirm %1 as friend - Confirmer %1 comme ami + Confirmer %1 comme ami - Add %1 as friend - Ajouter %1 comme ami + Ajouter %1 comme ami - No subject - Pas de sujet + Pas de sujet - Download - Télécharger + Télécharger - - Download all - Tout télécharger + Tout télécharger - Print Document - Imprimer le document + Imprimer le document - Save as... - Enregistrer sous... + Enregistrer sous... - HTML-Files (*.htm *.html);;All Files (*) - Fichiers HTML (*.htm *.html);;tous les fichiers (*) + Fichiers HTML (*.htm *.html);;tous les fichiers (*) - Load images always for this message - Toujours charger les images pour ce message + Toujours charger les images pour ce message - Hide the attachment pane - Cacher le panneau pièce jointe + Cacher le panneau pièce jointe - Show the attachment pane - Montrer le panneau pièce jointe + Montrer le panneau pièce jointe MessageWindow - New Message - Nouveau message + Nouveau message - Compose - Écrire + Écrire - Reply to selected message - Répondre au(x) message(s) sélectionné(s) + Répondre au(x) message(s) sélectionné(s) - Reply - Répondre + Répondre - Reply all to selected message - Répondre à tous les destinataires du(des) message(s) sélectionné(s) + Répondre à tous les destinataires du(des) message(s) sélectionné(s) - Reply all - Répondre à tous + Répondre à tous - Forward selected message - Transférer le(s) message(s) sélectionné(s) + Transférer le(s) message(s) sélectionné(s) - Forward - Suivante + Suivante - Remove selected message - Supprimer le(s) message(s) sélectionné(s) + Supprimer le(s) message(s) sélectionné(s) - Delete - Supprimer + Supprimer - Print selected message - Imprimer le(s) message(s) sélectionné(s) + Imprimer le(s) message(s) sélectionné(s) - - Print - Imprimer + Imprimer - Display - Affichage + Affichage - - - Tags - Mots clés + Mots clés - Print Preview - Aperçu avant impression + Aperçu avant impression - - Buttons Icon Only - Icônes uniquement + Icônes uniquement - Buttons Text Beside Icon - Texte à coté des icônes + Texte à coté des icônes - Buttons with Text - Icônes avec texte + Icônes avec texte - Buttons Text Under Icon - Texte en dessous des icônes + Texte en dessous des icônes - Set Text Under Icon - Définir le texte sous les icônes + Définir le texte sous les icônes - &File - &Fichier + &Fichier - Save &As File - Enregistrer sous... + Enregistrer sous... - &Print... - Im&primer... + Im&primer... - Print Preview... - Aperçu avant impression... + Aperçu avant impression... - &Quit - &Quitter + &Quitter MessagesDialog - - New Message - Nouveau message + Nouveau message - Compose - Écrire + Écrire - Reply to selected message - Répondre au(x) message(s) sélectionné(s) + Répondre au(x) message(s) sélectionné(s) - Reply - Répondre + Répondre - Reply all to selected message - Répondre à tous les destinataires du(des) message(s) sélectionné(s) + Répondre à tous les destinataires du(des) message(s) sélectionné(s) - Reply all - Répondre à tous + Répondre à tous - Forward selected message - Transférer le(s) message(s) sélectionné(s) + Transférer le(s) message(s) sélectionné(s) - Foward - Transférer + Transférer - Remove selected message - Supprimer le(s) message(s) sélectionné(s) + Supprimer le(s) message(s) sélectionné(s) - Delete - Supprimer + Supprimer - Print selected message - Imprimer le(s) message(s) sélectionné(s) + Imprimer le(s) message(s) sélectionné(s) - Print - Imprimer + Imprimer - Display - Affichage + Affichage - - - - - Tags - Mots clés + Mots clés - - - - Inbox - Boîte de réception + Boîte de réception - - - - Outbox - Boîte d'envoi + Boîte d'envoi - Draft - Brouillons + Brouillons - - Sent - Eléments envoyés + Eléments envoyés - - - - Trash - Corbeille + Corbeille - Total Inbox: - Tous les messages : + Tous les messages : - Folders - Dossiers + Dossiers - Quick View - Vue rapide + Vue rapide - - Print... - Imprimer... + Imprimer... - Print Preview - Aperçu avant impression + Aperçu avant impression - - Buttons Icon Only - Icônes uniquement + Icônes uniquement - Buttons Text Beside Icon - Texte à coté des icônes + Texte à coté des icônes - Buttons with Text - Icônes avec texte + Icônes avec texte - Buttons Text Under Icon - Texte en dessous des icônes + Texte en dessous des icônes - Set Text Under Icon - Définir le texte sous les icônes + Définir le texte sous les icônes - Save As... - Enregistrer sous... + Enregistrer sous... - Reply to Message - Répondre au message + Répondre au message - - Reply to All - Répondre à tous + Répondre à tous - Forward Message - Faire suivre le(s) message(s) + Faire suivre le(s) message(s) - - Subject - Sujet + Sujet - - - From - De + De - - Date - Date + Date - - Content - Contenu + Contenu - Click to sort by attachments - Cliquer pour trier par fichiers attachés + Cliquer pour trier par fichiers attachés - Click to sort by subject - Cliquer pour trier par sujet + Cliquer pour trier par sujet - Click to sort by read - Cliquer pour trier par lu + Cliquer pour trier par lu - - Click to sort by from - Cliquer pour trier par expéditeur + Cliquer pour trier par expéditeur - Click to sort by date - Cliquer pour trier par date + Cliquer pour trier par date - Click to sort by tags - Cliquer pour trier par mots clés + Cliquer pour trier par mots clés - Click to sort by star - Cliquer pour trier par suivi + Cliquer pour trier par suivi - Forward selected Message - Transférer le(s) message(s) sélectionné(s) + Transférer le(s) message(s) sélectionné(s) - Search Subject - Rechercher sujet + Rechercher sujet - Search From - Rechercher de + Rechercher de - Search Date - Rechercher date + Rechercher date - Search Content - Rechercher contenu + Rechercher contenu - Search Tags - Rechercher mots-clefs + Rechercher mots-clefs - Attachments - Pièces jointes + Pièces jointes - Search Attachments - Rechercher pièces jointes + Rechercher pièces jointes - Starred - Suivi + Suivi - System - Système + Système - Open in a new window - Ouvrir dans une nouvelle fenêtre + Ouvrir dans une nouvelle fenêtre - Open in a new tab - Ouvrir dans un nouvel onglet + Ouvrir dans un nouvel onglet - Mark as read - Marquer comme lu + Marquer comme lu - Mark as unread - Marquer comme non lu + Marquer comme non lu - Add Star - Suivre + Suivre - Edit - Modifier + Modifier - Edit as new - Modifier en tant que nouveau + Modifier en tant que nouveau - Remove Messages - Supprimer le(s) message(s) + Supprimer le(s) message(s) - Remove Message - Supprimer le message + Supprimer le message - Undelete - Annuler la suppression + Annuler la suppression - Empty trash - Vider la corbeille + Vider la corbeille - - - Drafts - Brouillons + Brouillons - 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 gray star beside any message. - Il n'y a pas de messages suivis. Suivre un message vous permettra de le retrouver plus facilement ultérieurement. Pour suivre un message, cliquez sur l'étoile grise devant n'importe quel message. + Il n'y a pas de messages suivis. Suivre un message vous permettra de le retrouver plus facilement ultérieurement. Pour suivre un message, cliquez sur l'étoile grise devant n'importe quel message. - No system messages available. - Aucun message système disponible. + Aucun message système disponible. - To - Pour + Pour - Click to sort by to - Cliquer pour trier par destinataire + Cliquer pour trier par destinataire - - - - - Total: - Total : + Total : - - Messages - Messages + Messages - Click to sort by signature - Cliquer pour trier par signature + Cliquer pour trier par signature - This message was signed and the signature checks - Ce message a été signé et la signature vérifiée + Ce message a été signé et la signature vérifiée - This message was signed but the signature doesn't check - Ce message a été signé mais la signature n'a pas été vérifiée + Ce message a été signé mais la signature n'a pas été vérifiée - This message comes from a distant person. - Ce message vient d'une personne distante. + Ce message vient d'une personne distante. - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare a son propre système de messagerie interne. Vous pouvez en envoyer/recevoir vers/depuis les noeuds de vos amis connectés.</p> <p>Il est aussi possible d'envoyer des messages vers les Identités d'autres personnes en utilisant le système de routage global. Ces messages sont toujours chiffrés et sont relayés par des noeuds intermédiaires jusqu'à ce qu'ils atteignent leur destination finale. </p> <p>Il est recommandé de signer cryptographiquement les messages distants, comme preuve de votre identité, en utilisant le bouton <img width="16" src=":/images/stock_signature_ok.png"/> dans la fenêtre de composition du message. Les messages distants restent dans votre boite d'envoi jusqu'à ce qu'un accusé de réception soit reçu.</p> <p>De façon générale, vous pouvez utiliser les messages afin de recommander des fichiers à vos amis en y collant des liens de fichiers, ou recommander des noeuds amis à d'autres noeuds amis, afin de renforcer votre réseau, ou envoyer du retour d'information (feedback) au propriétaire d'une chaîne.</p> + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare a son propre système de messagerie interne. Vous pouvez en envoyer/recevoir vers/depuis les noeuds de vos amis connectés.</p> <p>Il est aussi possible d'envoyer des messages vers les Identités d'autres personnes en utilisant le système de routage global. Ces messages sont toujours chiffrés et sont relayés par des noeuds intermédiaires jusqu'à ce qu'ils atteignent leur destination finale. </p> <p>Il est recommandé de signer cryptographiquement les messages distants, comme preuve de votre identité, en utilisant le bouton <img width="16" src=":/images/stock_signature_ok.png"/> dans la fenêtre de composition du message. Les messages distants restent dans votre boite d'envoi jusqu'à ce qu'un accusé de réception soit reçu.</p> <p>De façon générale, vous pouvez utiliser les messages afin de recommander des fichiers à vos amis en y collant des liens de fichiers, ou recommander des noeuds amis à d'autres noeuds amis, afin de renforcer votre réseau, ou envoyer du retour d'information (feedback) au propriétaire d'une chaîne.</p> + + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + This message goes to a distant person. + MessengerWindow - RetroShare Messenger - Retroshare Messenger + Retroshare Messenger - Add a Friend - Ajouter un ami + Ajouter un ami - Share files for your friends - Partagez des fichiers avec vos amis + Partagez des fichiers avec vos amis MimeTextEdit - Paste RetroShare Link - Coller le lien Retroshare + Coller le lien Retroshare - Paste my certificate link - Coller le lien de votre certificat + Coller le lien de votre certificat + + + Paste as plain text + + + + Spoiler + + + + Select text to hide, then push this button + MsgItem - Reply to Message - Répondre au message + Répondre au message - Reply Message - Répondre au message + Répondre au message - Delete Message - Supprimer le message + Supprimer le message - Play Media - Lecture + Lecture - - Expand - Développer + Développer - Remove Item - Effacer le message + Effacer le message - Message From - Message de + Message de - Sent Msg - Message(s) envoyé(s) + Message(s) envoyé(s) - Draft Msg - Brouillon(s) + Brouillon(s) - Pending Msg - Message(s) en attente + Message(s) en attente - Hide - Cacher + Cacher NATStatus - <strong>NAT:</strong> - <strong>NAT :</strong> + <strong>NAT :</strong> - Network Status Unknown - État du réseau inconnu + État du réseau inconnu - Offline - Hors ligne + Hors ligne - Nasty Firewall - Méchant pare-feu + Méchant pare-feu - DHT Disabled and Firewalled - DHT désactivée et derrière un pare-feu + DHT désactivée et derrière un pare-feu - Network Restarting - Redémarrage réseau + Redémarrage réseau - Behind Firewall - Derrière un pare-feu + Derrière un pare-feu - DHT Disabled - DHT désactivée + DHT désactivée - RetroShare Server - Serveur Retroshare + Serveur Retroshare - Forwarded Port - Port redirigé + Port redirigé - OK | RetroShare Server - OK | Serveur Retroshare + OK | Serveur Retroshare - Internet connection - Connexion internet + Connexion internet - No internet connection - Pas de connexion internet + Pas de connexion internet - No local network - Pas de réseau local + Pas de réseau local NetworkDialog - Filter: - Filtre : + Filtre : - Search Network - Chercher dans le réseau + Chercher dans le réseau - - - Name - Nom + Nom - Did I authenticated peer - Votre authentification du contact + Votre authentification du contact - Did I sign his PGP key - Votre signature des clés PGP + Votre signature des clés PGP - Did peer authenticated me - L'authentification par le contact + L'authentification par le contact - - Cert Id - ID du certificat + ID du certificat - - Last used - Dernier utilisé + Dernier utilisé - Clear - Effacer + Effacer - Set Tabs Right - Mettre les onglets à droite + Mettre les onglets à droite - Set Tabs North - Mettre les onglets en haut + Mettre les onglets en haut - Set Tabs South - Mettre les onglets en bas + Mettre les onglets en bas - Set Tabs Left - Mettre les onglets à gauche + Mettre les onglets à gauche - Set Tabs Rounded - Onglets arrondis + Onglets arrondis - Set Tabs Triangular - Onglets carrés + Onglets carrés - Add Friend - Ajouter un ami + Ajouter un ami - Copy My Key to Clipboard - Copier ma clé dans le presse-papier + Copier ma clé dans le presse-papier - Export My Key - Exporter ma clé + Exporter ma clé - Create New Profile - Créer un nouveau profil + Créer un nouveau profil - Create a new Profile - Créer un nouveau profil + Créer un nouveau profil - Peer ID - ID du contact + ID du contact - Deny friend - Ignorer cet ami + Ignorer cet ami - Peer details... - Détails du contact... + Détails du contact... - Remove unused keys... - Suppression des clés inutilisées... + Suppression des clés inutilisées... - Clean keyring - Nettoyer le trousseau + Nettoyer le trousseau - - The selected keys below haven't been used in the last 3 months. + The selected keys below haven't been used in the last 3 months. Do you want to delete them permanently ? Notes: Your old keyring will be backed up. The removal may fail when running multiple Retroshare instances on the same machine. - Les clés sélectionnées ci-dessous n'ont pas été utilisées dans les 3 derniers mois. + Les clés sélectionnées ci-dessous n'ont pas été utilisées dans les 3 derniers mois. Voulez-vous les supprimer définitivement ? Remarques : votre ancien trousseau sera sauvegardé. La suppression peut échouer lors de l'exécution de plusieurs instances de Retroshare sur la même machine. - - Keyring info - Info du trousseau + Info du trousseau - %1 keys have been deleted from your keyring. For security, your keyring was previously backed-up to file - %1 clés ont été supprimées de votre trousseau. + %1 clés ont été supprimées de votre trousseau. Par mesure de sécurité votre trousseau précédent à été sauvegardé sous forme de fichier - Unknown error - Erreur inconnu + Erreur inconnu - Cannot delete secret keys - Impossible de supprimer les clés secrêtes + Impossible de supprimer les clés secrêtes - Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - Impossible de créer le fichier de sauvegarde. Vérifiez les permissions du répertoire PGP, espace disque, etc.. + Impossible de créer le fichier de sauvegarde. Vérifiez les permissions du répertoire PGP, espace disque, etc.. - Personal signature - Signature personnelle + Signature personnelle - PGP key signed by you - Clé PGP que vous avez signée + Clé PGP que vous avez signée - Marginally trusted peer - Confiance moyenne + Confiance moyenne - Fully trusted peer - Entière confiance + Entière confiance - Untrusted peer - Non fiable + Non fiable - Has authenticated me - M'a authentifié + M'a authentifié - Unknown - Inconnu + Inconnu - Last hour - Dernière heure + Dernière heure - Today - Aujourd'hui + Aujourd'hui - Never - Jamais + Jamais - %1 days ago - il y a %1 jours + il y a %1 jours - has authenticated you. Right-click and select 'make friend' to be able to connect. - vous a authentifié. + vous a authentifié. Clic droit et sélectionnez 'Devenir ami' pour vous connecter. - yourself - Moi + Moi - Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - Incohérence des données dans le trousseau de clés. Il s'agit très probablement d'un bug. S'il vous plaît contacter les développeurs. + Incohérence des données dans le trousseau de clés. Il s'agit très probablement d'un bug. S'il vous plaît contacter les développeurs. - Export/create a new node - Exporter/créer un nouveau noeud + Exporter/créer un nouveau noeud - Trusted keys only - Clés de confiance uniquement + Clés de confiance uniquement - Trust level - Niveau de confiance + Niveau de confiance - Do you accept connections signed by this key? - Acceptez-vous les connexions signées par cette clé ? + Acceptez-vous les connexions signées par cette clé ? - Name of the key - Nom de la clé + Nom de la clé - Certificat ID - ID du certificat + ID du certificat - Make friend... - Devenir ami ... + Devenir ami ... - Did peer authenticate you - Le pair vous a-t-il authentifié ? + Le pair vous a-t-il authentifié ? - This column indicates trust level and whether you signed their PGP key - Cette colonne indique le niveau de confiance et si vous avez signé leurs clés PGP + Cette colonne indique le niveau de confiance et si vous avez signé leurs clés PGP - Did that peer sign your PGP key - Ce pair a-t-il signé votre clé PGP + Ce pair a-t-il signé votre clé PGP - Since when I use this certificate - Depuis quand j'utilise ce certificat + Depuis quand j'utilise ce certificat - Search name - Chercher nom + Chercher nom - Search peer ID - Chercher ID de pair + Chercher ID de pair - Key removal has failed. Your keyring remains intact. Reported error: - La suppression de clé a échouée. Votre trousseau de clés reste intact. + La suppression de clé a échouée. Votre trousseau de clés reste intact. Erreur remontée : @@ -11575,434 +10704,357 @@ Erreur remontée : NetworkPage - Network - Réseau + Réseau NetworkView - Redraw - Rafraîchir + Rafraîchir - Friendship level: - Niveau d'amitié : + Niveau d'amitié : - Edge length: - Longueur des liaisons : + Longueur des liaisons : - Freeze - Geler + Geler NewTag - New Tag - Nouveau mot clé + Nouveau mot clé - Name: - Nom : + Nom : - Choose color - Choix de la couleur + Choix de la couleur - OK - OK + OK - Cancel - Annuler + Annuler NewsFeed - News Feed - Fil d'actualités + Fil d'actualités - Options - Options + Options - Remove All - Tout effacer + Tout effacer - This is a test. - C'est un test. + C'est un test. - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Fil d'actualités</h1> <p>Le fil d'actualité affiche les derniers événements survenus dans votre réseau, triés selon le moment où vous les avez reçus. Il vous donne un résumé de l'activité de vos amis. Vous pouvez configurer les événements à afficher en cliquant sur <b>Options</ b>. </p> <p> Les divers événements affichés sont : <ul> <li>Les tentatives de connexion (utile pour ajouter de nouveaux amis et savoir qui essaie de vous contacter) </li> <li> Les nouveaux articles dans les chaînes et les forums</li> <li>Les nouvelles chaînes et forums auxquels vous pouvez vous abonner</li> <li>Les messages privés de vos amis </li> </ul> </p> + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Fil d'actualités</h1> <p>Le fil d'actualité affiche les derniers événements survenus dans votre réseau, triés selon le moment où vous les avez reçus. Il vous donne un résumé de l'activité de vos amis. Vous pouvez configurer les événements à afficher en cliquant sur <b>Options</ b>. </p> <p> Les divers événements affichés sont : <ul> <li>Les tentatives de connexion (utile pour ajouter de nouveaux amis et savoir qui essaie de vous contacter) </li> <li> Les nouveaux articles dans les chaînes et les forums</li> <li>Les nouvelles chaînes et forums auxquels vous pouvez vous abonner</li> <li>Les messages privés de vos amis </li> </ul> </p> - News feed - Fil d'actualités + Fil d'actualités - Newest on top - Les plus récents en haut + Les plus récents en haut - Oldest on top - Les plus anciens en haut + Les plus anciens en haut + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + NotifyPage - News Feed - Fil d'actualités + Fil d'actualités - Channels - Chaînes + Chaînes - Forums - Forums + Forums - Blogs - Blogs + Blogs - Messages - Messages + Messages - Chat - Tchat + Tchat - Security - Sécurité + Sécurité - - Test - Test + Test - Systray Icon - Icônes sur la barre des tâches + Icônes sur la barre des tâches - Message - Message + Message - - Connect attempt - Tentative de connexion + Tentative de connexion - - Toasters - Notifications + Notifications - - Friend Connect - Connexion d'un ami + Connexion d'un ami - Ip security - Sécurité IP + Sécurité IP - New Message - Nouveau message + Nouveau message - Download completed - Téléchargement terminé + Téléchargement terminé - Private Chat - Tchat privé + Tchat privé - Group Chat - Tchat public + Tchat public - Chat Lobby - Salons de tchat + Salons de tchat - Position - Position + Position - X Margin - Axe Horizontal + Axe Horizontal - Y Margin - Axe Vertical + Axe Vertical - Systray message - Message sur la barre des tâches + Message sur la barre des tâches - Group chat - Tchat public + Tchat public - Chat lobbies - Salons de tchat + Salons de tchat - Combined - Combiné + Combiné - Blink - Clignotement + Clignotement - Top Left - En haut à gauche + En haut à gauche - Top Right - En haut à droite + En haut à droite - Bottom Left - En bas à gauche + En bas à gauche - Bottom Right - En bas à droite + En bas à droite - Notify - Notifications + Notifications - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notifications</h1> + <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notifications</h1> <p>Retroshare vous informe sur ce qui se passe dans votre réseau. En fonction de votre utilisation, vous pouvez activer ou désactiver une partie des notifications. Cette page est conçue pour ça!</p> - Disable All Toasters - Désactiver toutes les notifications grille-pain + Désactiver toutes les notifications grille-pain - Posted - Publié + Publié - Disable All Toaster temporarily - Désactiver toutes les notifications grille-pain temporairement + Désactiver toutes les notifications grille-pain temporairement - Feed - Flux + Flux - Systray - Zone de notification + Zone de notification - Chat Lobbies - Salons de tchat + Salons de tchat - Count all unread messages - Compter tous les messages non lus + Compter tous les messages non lus - Count occurences of any of the following texts (separate by newlines): - Compter les occurences de n'importe lequel des textes suivants (séparés par des retours à la ligne) : + Compter les occurences de n'importe lequel des textes suivants (séparés par des retours à la ligne) : - Count occurences of my current identity - Nombre d’occurrences de mon identité actuelle + Nombre d’occurrences de mon identité actuelle + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + NotifyQt - PGP key passphrase - Mot de passe de la clé PGP + Mot de passe de la clé PGP - Wrong password ! - Mauvais mot de passe ! + Mauvais mot de passe ! - Unregistered plugin/executable - Extension/exécutable non enregistrée + Extension/exécutable non enregistrée - 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 a détecté une extension non enregistrée. Cela se produit dans deux cas: <UL> <LI>Votre exécutable Retroshare a changé.</LI><LI>L'extension a changé</LI> </UL>Cliquez sur Oui pour autoriser cette extension, ou Non pour la refuser. Vous pouvez changer d'avis plus tard dans Options -> Extensions, puis redémarrez. + Retroshare a détecté une extension non enregistrée. Cela se produit dans deux cas: <UL> <LI>Votre exécutable Retroshare a changé.</LI><LI>L'extension a changé</LI> </UL>Cliquez sur Oui pour autoriser cette extension, ou Non pour la refuser. Vous pouvez changer d'avis plus tard dans Options -> Extensions, puis redémarrez. - Please check your system clock. - S'il vous plaît vérifier votre horloge système. + S'il vous plaît vérifier votre horloge système. - Examining shared files... - Analyse des fichiers partagés... + Analyse des fichiers partagés... - Hashing file - Hashage fichiers + Hashage fichiers - Saving file index... - Enregistrement de l'index des fichiers... + Enregistrement de l'index des fichiers... - Test - Test + Test - This is a test. - C'est un test. + C'est un test. - Unknown title - Titre inconnu + Titre inconnu - - Encrypted message - Message encrypté + Message encrypté - Please enter your PGP password for key - Veuillez entrer votre mot de passe PGP pour la clé + Veuillez entrer votre mot de passe PGP pour la clé - For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of several minutes was detected with your friends). - Afin que les salons de tchat fonctionnent correctement, l'heure de votre ordinateur doit être correcte. Veuillez vérifier que c'est le cas (un possible décalage de plusieurs minutes a été détecté avec vos amis). + Afin que les salons de tchat fonctionnent correctement, l'heure de votre ordinateur doit être correcte. Veuillez vérifier que c'est le cas (un possible décalage de plusieurs minutes a été détecté avec vos amis). OnlineToaster - Friend Online - En ligne + En ligne OpModeStatus - Normal Mode - Mode normal + Mode normal - No Anon D/L - Pas de D/L anonyme + Pas de D/L anonyme - Gaming Mode - Mode jeu + Mode jeu - Low Traffic - Faible trafic + Faible trafic - - Use this DropList to quickly change Retroshare's behaviour + Use this DropList to quickly change Retroshare's behaviour No Anon D/L: switches off file forwarding Gaming Mode: 25% standard traffic and TODO: reduced popups Low Traffic: 10% standard traffic and TODO: pauses all file-transfers - Utilisez cette liste déroulante pour rapidement changer le comportement de Retroshare + Utilisez cette liste déroulante pour rapidement changer le comportement de Retroshare Non Anon D/L : désactive le transfert de fichier Mode jeu : 25% du trafic standard et TODO : réduction des popups Trafic faible : 10% du trafic standard et TODO : tous les transferts de fichiers en pause @@ -12011,93 +11063,77 @@ Trafic faible : 10% du trafic standard et TODO : tous les transferts de fichiers OutQueueStatisticsWidget - Outqueue statistics - Statistiques de file d'attente + Statistiques de file d'attente - By priority: - Par priorité : + Par priorité : - By service : - Par service : + Par service : PGPKeyDialog - Dialog Dialogue - PGP Key info Info de clé PGP - PGP name : Nom PGP : - Fingerprint : Empreinte : - Trust level: Niveau de confiance : - Unset Démettre - Unknown Inconnu - No trust Pas de confiance - Marginal Moyenne - Full Totale - Ultimate Ultime - Key signatures : Signatures de clé : - <!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"> + <!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;"> @@ -12106,418 +11142,470 @@ 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;">La signature d'une clé ne peut pas être révoquée, donc faîtes attention à qui vous accordez votre confiance.</p></body></html> - Sign this PGP key Signer cette clé PGP - Sign PGP key Signer la clé PGP - Deny connections - Refuser connexions + Refuser les connexions - Accept connections - Accepter connexions + Accepter les connexions - ASCII format Format ASCII - Include signatures Inclure les signatures - PGP Key details Détails de clé PGP - - - RetroShare RetroShare - - - Error : cannot get peer details. Erreur : impossible d'obtenir les détails de ce contact. - The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) L'algorithme de la clé fournie n'est pas supporté par Retroshare (pour l'instant uniquement les clés RSA sont supportées) - The trust level is a way to express your own trust in this key. It is not used by the software nor shared, but can be useful to you in order to remember good/bad keys. Le niveau de confiance est une façon d'exprimer votre propre confiance en cette clé. Cela n'est pas utilisé par le logiciel, ni partagé, mais cela peut être utile pour vous afin de vous rappeler les bonnes/mauvaises clés. - Your trust in this peer is ultimate Votre confiance dans ce contact est totale - Your trust in this peer is full. Vous faîtes pleinement confiance à ce contact. - Your trust in this peer is marginal. Vous faîtes moyennement confiance à ce contact. - Your trust in this peer is none. Vous ne faites pas confiance à ce contact. - - This key has signed your own PGP key Ce contact a signé votre propre clé PGP - <p>This PGP key (ID= <p>Cette clé PGP (ID= - You have chosen to accept connections from Retroshare nodes signed by this key. Vous avez choisi d'accepter les connexions venant des nœuds Retroshare signés par cette clé. - You are currently not allowing connections from Retroshare nodes signed by this key. Actuellement, vous n'autorisez pas les connexions de nœuds Retroshare signés par cette clé. - Signature Failure La signature a échoué - Maybe password is wrong Le mot de passe est peut-être incorrect - You haven't set a trust level for this key. Vous n'avez pas réglé de niveau de confiance pour cette clé. - This is your own PGP key, and it is signed by : Ceci est votre propre clé PGP, et elle a été signée par : - This key is signed by : Cette clé a été signée par : + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + <html><head/><body><p>L'emprunte PGP est une caractéristique---supposée impossible à imiter--de votre clé PGP. Pour vérifier qu'une clé est la bonne, vérifiez son emprunte.</p></body></html> + + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + <html><head/><body><p>Le parametre de confiance est pour votre usage personnel et peut être utilisé pour vous souvenir de votre opinion sur une clé particulière: Il n'est pas partagé avec les noeuds voisins. </p></body></html> + + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Signer la clé d'un noeud ami est une facon d'exprimer sur le réseau votre confiance en cet ami. Cette information est partagée et signale à vos amis que vous reconnaissez une clé donnée comme valide.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</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:'Sans'; 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-size:10pt;">Signer la clé d'un noeud ami est une facon d'exprimer sur le réseau votre confiance en cet ami. Cette information est partagée et signale à vos amis que vous reconnaissez une clé donnée comme valide. Signer une clé est totallement optionel et ne peut pas être annulé.</span></p></body></html> + + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Signer la clé d'un noeud ami est une facon d'exprimer sur le réseau votre confiance en cet ami. Cette information est partagée et signale à vos amis que vous reconnaissez une clé donnée comme valide.</span></p></body></html> + + + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + <html><head/><body><p>Clickez ici pour refuser les connexions de tout noeud autentifié par cette clé.</p></body></html> + + + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + <html><head/><body><p>Clickez ici pour accepter les connexions avec tout noeud autentifié par cette clé. Cette opération est normalement effectuée lors de 'échange de certificats, ce qui constitue une meilleure option car un certificat contient d'autre informations de connexion importantes (IP, DNS, SSL ids, etc).</p></body></html> + + + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + <html><head/><body><p>Inclure les signatures dans l'affichage ASCII de la clé. Voir les commentaires sur les signatures dans l'autre panneau </p></body></html> + PeerDefs - - - - - - Unknown - Inconnu + Inconnu PeerItem - Chat - Tchat + Tchat - Start Chat - Dialoguer + Dialoguer - - Expand - Développer + Développer - Remove Item - Effacer + Effacer - Name: - Nom : + Nom : - Peer ID: - ID du contact : + ID du contact : - Trust: - Confiance : + Confiance : - Location: - Emplacement : + Emplacement : - IP Address: - Adresse IP + Adresse IP - Connection Method: - Méthode de connexion : + Méthode de connexion : - Status: - Statut : + Statut : - Write Message - Écrire un message + Écrire un message - Friend - Ami + Ami - Friend Connected - Ami connecté + Ami connecté - Connect Attempt - Tentative de connexion + Tentative de connexion - Friend of Friend - Ami d'ami + Ami d'ami - Peer - Contact + Contact - - - - - - - - - Unknown Peer - Contact inconnu + Contact inconnu - Hide - Cacher + Cacher - Send Message - Envoyer le message + Envoyer le message PeerStatus - Friends: 0/0 - Amis : 0/0 + Amis : 0/0 - Online Friends/Total Friends - Amis en ligne/Nombre total d'amis + Amis en ligne/Nombre total d'amis - Friends - Amis + Amis PeopleDialog - - People - Gens + Gens - External - Externe + Externe - - Drag your circles or people to each other. - Traînez vos cercles ou gens l'un vers l'autre. + Traînez vos cercles ou gens l'un vers l'autre. - Internal - Interne + Interne PhotoCommentItem - Form - Formulaire + Formulaire PhotoDialog - PhotoShare - PhotoShare + PhotoShare - Photo - Photo + Photo - TextLabel - Etiquette + Etiquette - Comment - Commentaire + Commentaire - Summary - Résumé + Résumé - Caption - Légende + Légende - Where: - Où : + Où : - Photo Title: - Titre de la photo : + Titre de la photo : - When - Quand : + Quand : - ... - ... + ... - Add Comment - Ajouter un commentaire + Ajouter un commentaire - Write a comment... - Ecrivez un commentaire... + Ecrivez un commentaire... + + + <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; font-weight:600;">Photo View</span></p></body></html> + + + + Peer + Contact + + + Slideshow + + + + Thumb Image + + + + Image Name + + + + Date + Date + + + Location + + + + Size + Taille + + + PeerId + ID du pair + + + PhotoId + + + + Add Photo(s) + + + + Add Photo SlideShow + + + + Update Details + + + + Photo + + + + Description + Description + + + Insert Show Lists + + + + Open + Ouvrir + + + Remove + + + + Excellent + + + + Good + + + + Average + Normale + + + Below avarage + + + + Bad + + + + Unrated + + + + Rating + Évaluation PhotoItem - Form - Formulaire + Formulaire - TextLabel - Etiquette + Etiquette - <!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; font-weight:600;">Photo Title :</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Titre de la photo :</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; font-weight:600;">Photographer :</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Photographe :</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; font-weight:600;">Author :</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;"> @@ -12527,956 +11615,974 @@ p, li { white-space: pre-wrap; } PhotoShare - Form - Formulaire + Formulaire - Create Album - Créer un album + Créer un album - View Album - Afficher l'album + Afficher l'album - Subscribe To Album - S'abonner à l'album + S'abonner à l'album - Slide Show - Diaporama + Diaporama - My Albums - Vos albums + Vos albums - Subscribed Albums - Albums abonnés + Albums abonnés - Shared Albums - Albums partagés + Albums partagés - View Photo - Afficher la photo + Afficher la photo - PhotoShare - PhotoShare + PhotoShare - Please select an album before requesting to edit it! - S'il vous plaît sélectionner un album + S'il vous plaît sélectionner un album avant de vouloir le modifier ! + + PhotoShow + + Photo Show + + + + Date: + + + + Location: + Emplacement : + + + Comment: + + + + Display Size: + + + + 320 x 320 + + + + 640 x 640 + + + + Full Size + + + + Play Rate: + + + + 1 Sec + + + + 2 Sec + + + + 5 Sec + + + + 10 Sec + + + + 20 Sec + + + + 1 Min + + + + Edit Photo Details + + + + Save Photo + + + + No Photo Selected + + + + Back + Retour + + + Start + Start + + + Play + + + + Pause + + + + Forward + + + PhotoSlideShow - Album Name - Nom de l'album + Nom de l'album - Image - Image + Image - Show/Hide Details - Afficher/cacher les détails + Afficher/cacher les détails - << - << + << - - Stop - Stop + Stop - >> - >> + >> - Close - Fermer + Fermer - Start - Start + Start - Start Slide Show - Lancer le diaporama + Lancer le diaporama - Stop Slide Show - Arrêter le diaporama + Arrêter le diaporama PluginFrame - Remove - Supprimer + Supprimer PluginItem - TextLabel - Etiquette + Etiquette - Show more details about this plugin - sera activé aprés le redémarrage de Retroshare + sera activé aprés le redémarrage de Retroshare - <!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=" font-size:8pt; 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"> + <!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;"><a href="more"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">Plus</span></a></p></body></html> - Enable this plugin (restart required) - Activer ce module complémentaire (redémarrage nécessaire) + Activer ce module complémentaire (redémarrage nécessaire) - Enable - Activer + Activer - Disable this plugin (restart required) - Désactiver ce module complémentaire (redémarrage nécessaire) + Désactiver ce module complémentaire (redémarrage nécessaire) - Disable - Désactiver + Désactiver - Launch configuration panel, if provided by the plugin - Lancement du panneau de configuration, s'il est fourni par l'extension + Lancement du panneau de configuration, s'il est fourni par l'extension - Configure - Configurer + Configurer - About - À propos + À propos - File name: - Nom du fichier : + Nom du fichier : - File hash: - Hash du fichier : + Hash du fichier : - Status: - Statut : + Statut : - will be enabled after your restart RetroShare. - sera activé aprés le redémarrage de Retroshare. + sera activé aprés le redémarrage de Retroshare. PluginManager - base folder %1 doesn't exist, default load failed - le dossier de base %1 n'existe pas, le chargement par défaut a échoué + le dossier de base %1 n'existe pas, le chargement par défaut a échoué - Error: instance '%1'can't create a widget - Erreur: l'instance '%1' ne peut pas créer un widget + Erreur: l'instance '%1' ne peut pas créer un widget - Error: no plugin with name '%1' found - Erreur : aucun plug-in trouvé ayant le nom '%1' + Erreur : aucun plug-in trouvé ayant le nom '%1' - Error(uninstall): no plugin with name '%1' found - Erreur (désinstallation) : aucune extension trouvée ayant le nom '%1' + Erreur (désinstallation) : aucune extension trouvée ayant le nom '%1' - Error(installation): plugin file %1 doesn't exist - Erreur (installation): le fichier plugin %1 n'existe pas + Erreur (installation): le fichier plugin %1 n'existe pas - Error: failed to remove file %1(uninstalling plugin '%2') - Erreur : échec de la suppression du fichier %1 (désinstallation de l'extension '%2') + Erreur : échec de la suppression du fichier %1 (désinstallation de l'extension '%2') - Error: can't copy %1 to %2 - Erreur : ne peut pas copier %1 vers %2 + Erreur : ne peut pas copier %1 vers %2 PluginManagerWidget - Install New Plugin... - Installation d'une nouvelle extension... + Installation d'une nouvelle extension... - Open Plugin to install - Ouvrir l'extension à installer + Ouvrir l'extension à installer - Plugins (*.so *.dll) - Extensions (*.so *.dll) + Extensions (*.so *.dll) - Widget for plugin %1 not found on plugins frame - Le widget (gadget) pour le plug-in %1 n'a pas été trouvé sur le cadre de plug-ins (plugins frame) + Le widget (gadget) pour le plug-in %1 n'a pas été trouvé sur le cadre de plug-ins (plugins frame) PluginsPage - Authorize all plugins - Autoriser toutes les extensions + Autoriser toutes les extensions - Loaded plugins - Extensions chargées + Extensions chargées - Plugin look-up directories - Dossiers des extensions + Dossiers des extensions - Hash rejected. Enable it manually and restart, if you need. - Hachage rejeté. Activer le manuellement et redémarrer, si vous avez besoin. + Hachage rejeté. Activer le manuellement et redémarrer, si vous avez besoin. - No API number supplied. Please read plugin development manual. - Aucun numéro d'API fourni. S'il vous plaît lire le manuel de développement des extensions. + Aucun numéro d'API fourni. S'il vous plaît lire le manuel de développement des extensions. - No SVN number supplied. Please read plugin development manual. - Aucun numéro de SVN fourni. S'il vous plaît lire le manuel de développement des extensions. + Aucun numéro de SVN fourni. S'il vous plaît lire le manuel de développement des extensions. - Loading error. - Erreur de chargement. + Erreur de chargement. - Missing symbol. Wrong version? - Symbole manquant. Mauvaise version ? + Symbole manquant. Mauvaise version ? - No plugin object - Pas d'extension + Pas d'extension - Plugins is loaded. - L'extension est chargée + L'extension est chargée - Unknown status. - Statut inconnue. + Statut inconnue. - Title unavailable - Titre indisponible + Titre indisponible - Description unavailable - Description indisponible + Description indisponible - Unknown version - Version inconnue + Version inconnue - Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from malicious behavior of crafted plugins. - Cochez cette case pour le développement des extensions. Elles ne seront pas + Cochez cette case pour le développement des extensions. Elles ne seront pas vérifié par hachage. Toutefois, dans des conditions normales en vérifiant la valeur de hachage cela vous protège contre les comportements malveillants des extensions. - Plugins - Extensions + Extensions - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Extensions</h1> <p>Les extensions sont chargés depuis les répertoires listés dans la liste du bas.</p> <p>Pour des raisons de sécurité, les extensions reconnues sont chargées automatiquement jusqu'à ce que l'exécutable principal Retroshare ou que de la bibliothèque de plug-in changent. Dans un tel cas, l'utilisateur doit confirmer à nouveau. Après le démarrage du programme, vous pouvez activer un plugin manuellement en cliquant sur ​​le bouton "Activer" puis redémarrez Retroshare.</p> <p>Si vous voulez développer vos propres extensions, contactez l'équipe de développeurs, ils seront heureux de vous aider!</p> + <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Extensions</h1> <p>Les extensions sont chargés depuis les répertoires listés dans la liste du bas.</p> <p>Pour des raisons de sécurité, les extensions reconnues sont chargées automatiquement jusqu'à ce que l'exécutable principal Retroshare ou que de la bibliothèque de plug-in changent. Dans un tel cas, l'utilisateur doit confirmer à nouveau. Après le démarrage du programme, vous pouvez activer un plugin manuellement en cliquant sur ​​le bouton "Activer" puis redémarrez Retroshare.</p> <p>Si vous voulez développer vos propres extensions, contactez l'équipe de développeurs, ils seront heureux de vous aider!</p> + + + Plugin disabled. Click the enable button and restart Retroshare + + + + [disabled] + + + + [loading problem] + + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + PopularityDefs - Popularity - Popularité + Popularité PopupChatDialog - Clear offline messages - Effacer les messages hors ligne + Effacer les messages hors ligne - Hide Avatar - Cacher l'avatar + Cacher l'avatar - Show Avatar - Montrer l'avatar + Montrer l'avatar PopupChatWindow - Avatar - Avatar + Avatar - Set your Avatar Picture - Définir votre image d'avatar + Définir votre image d'avatar - - Dock tab - Activer les onglets + Activer les onglets - - Undock tab - Désactiver les onglets + Désactiver les onglets - - Set Chat Window Color - Définir la couleur de la fenêtre du tchat + Définir la couleur de la fenêtre du tchat - - Set window on top - Mettre la fenêtre sur le dessus + Mettre la fenêtre sur le dessus PopupDistantChatDialog - The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - La personne à laquelle vous parliez a supprimé le tunnel de tchat sécurisé. Vous pouvez maintenant supprimer la fenêtre de chat. + La personne à laquelle vous parliez a supprimé le tunnel de tchat sécurisé. Vous pouvez maintenant supprimer la fenêtre de chat. - Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - La fermeture de cette fenêtre met fin à la conversation, informez le contact puis supprimez le tunnel crypté. + La fermeture de cette fenêtre met fin à la conversation, informez le contact puis supprimez le tunnel crypté. - Kill the tunnel? - Tuer ce tunnel ? + Tuer ce tunnel ? - Hash Error. No tunnel. - Erreur de hachage. Pas de tunnel. + Erreur de hachage. Pas de tunnel. - Can't send message, because there is no tunnel. - Ne peut pas envoyer le message, parce qu'il n'y a pas de tunnel. + Ne peut pas envoyer le message, parce qu'il n'y a pas de tunnel. - Can't send message, because the chat partner deleted the secure tunnel. - Ne peut pas envoyer le message, parce que le partenaire de tchat a effacé le tunnel sécurisé. + Ne peut pas envoyer le message, parce que le partenaire de tchat a effacé le tunnel sécurisé. + + + Chat remotely closed. Please close this window. + PostedCreatePostDialog - Signed by: - Signé par : + Signé par : - Notes - Notes + Notes - RetroShare - Retroshare + Retroshare - Please create or choose a Signing Id first - S'il vous plaît créer ou choisir une Signing Id en premier + S'il vous plaît créer ou choisir une Signing Id en premier - Submit Post - Soumettre l'article + Soumettre l'article - You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - Vous proposez un lien. La clé d'une proposition réussie est un contenu intéressant et ayant un titre descriptif. + Vous proposez un lien. La clé d'une proposition réussie est un contenu intéressant et ayant un titre descriptif. - Submit - Soumettre + Soumettre - Submit a new Post - Soumettre un nouveau sujet + Soumettre un nouveau sujet - Please add a Title - Veuillez ajouter un titre + Veuillez ajouter un titre - Title - Titre + Titre - Link - Lien + Lien PostedDialog - Posted Links - Liens publiés + Liens publiés - Posted - Publié + Publié - Create Topic - Créer un sujet + Créer un sujet - My Topics - Vos sujets + Vos sujets - Subscribed Topics - Sujets abonnés + Sujets abonnés - Popular Topics - Sujets populaires + Sujets populaires - Other Topics - Autres sujets + Autres sujets - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Publication</h1> <p>Le service de publication vous permet de partager des liens internet, qui se propage entre les nœuds Retroshare comme les forums et les canaux</p> <p>Les liens peuvent être commentés par les utilisateurs inscrits. Un système de promotion donne également la possibilité de mettre en avant liens importants.</p> <p>Il n'y a aucune restriction lorsque ces liens sont partagés. Soyez donc prudent lorsque vous cliquez.</p> <p>Les publications sont effacées après %1 mois.</p> + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Publication</h1> <p>Le service de publication vous permet de partager des liens internet, qui se propage entre les nœuds Retroshare comme les forums et les canaux</p> <p>Les liens peuvent être commentés par les utilisateurs inscrits. Un système de promotion donne également la possibilité de mettre en avant liens importants.</p> <p>Il n'y a aucune restriction lorsque ces liens sont partagés. Soyez donc prudent lorsque vous cliquez.</p> <p>Les publications sont effacées après %1 mois.</p> + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + PostedGroupDialog - Posted Topic - Sujet publié + Sujet publié - Add Topic Admins - Ajouter des admins au sujet + Ajouter des admins au sujet - Select Topic Admins - Selectionner les admins + Selectionner les admins - Create New Topic - Créer un nouveau sujet + Créer un nouveau sujet - Edit Topic - Éditer le sujet + Éditer le sujet - Update Topic - Mettre à jour le sujet + Mettre à jour le sujet - Create - Créer + Créer PostedGroupItem - Subscribe to Posted - Abonné à Posté + Abonné à Posté - - Expand - Montrer + Montrer - Remove Item - Supprimer l'élement + Supprimer l'élement - Posted Description - Description postée + Description postée - Loading - Chargement + Chargement - New Posted - Nouveau post + Nouveau post - Hide - Cacher + Cacher PostedItem - 0 - 0 + 0 - Site - Site + Site - - Comments - Commentaires + Commentaires - Comment - Commentaire + Commentaire - Vote up - Voter pour + Voter pour - Vote down - Voter contre + Voter contre - \/ - \/ + \/ - Set as read and remove item - Définir comme lu et supprimer l'élément + Définir comme lu et supprimer l'élément - New - Nouveau + Nouveau - Toggle Message Read Status - Changer l'état de lecture du message + Changer l'état de lecture du message - Remove Item - Supprimer + Supprimer - Loading - Chargement + Chargement - By - Par + Par PostedListWidget - Form - Formulaire + Formulaire - Hot - Hot + Hot - New - Nouveau + Nouveau - Top - Top + Top - Today - Aujourd'hui + Aujourd'hui - Yesterday - Hier + Hier - This Week - Cette semaine + Cette semaine - This Month - Ce mois + Ce mois - This Year - Cette année + Cette année - Submit a new Post - Soumettre un nouveau poste + Soumettre un nouveau poste - Next - Suivant + Suivant - RetroShare - RetroShare + RetroShare - Please create or choose a Signing Id before Voting - Veuillez créer ou choisir une ID de signature avant de voter + Veuillez créer ou choisir une ID de signature avant de voter - Previous - Précédent + Précédent - 1-10 - 1-10 + 1-10 PostedPage - Tabs - Onglets + Onglets - Posted - Publié + Publié - Open each topic in a new tab - Ouvrir chaque sujet dans un nouvel onglet + Ouvrir chaque sujet dans un nouvel onglet PostedUserNotify - Posted - Publié + Publié PrintPreview - RetroShare Message - Print Preview - Message Retroshare - Aperçu avant impression + Message Retroshare - Aperçu avant impression - Print - Imprimer + Imprimer - &Print... - Im&primer... + Im&primer... - Page Setup... - Mise en page... + Mise en page... - Zoom In - Zoom + + Zoom + - Zoom Out - Zoom - + Zoom - - &Close - &Fermer + &Fermer + + + + ProfileEdit + + Profile Edit + + + + Profile + + + + Category + + + + Thoughts + + + + Edit Profile Category + + + + Birthday + + + + School + + + + University + + + + Phone Number + + + + Favourite Books + + + + Favourite Music + + + + Favourite Films + + + + or Custom Entry + + + + Add Entry + + + + Move + + + + Close Editor + + + + Remove Profile Entry + + + + Move Profile Entry Up + + + + Move Profile Entry Down + ProfileManager - - Profile Manager - Gestionnaire de profil + Gestionnaire de profil - Name - Nom + Nom - Email - Courrier électronique + Courrier électronique - GID - GID + GID - - Export Identity - Exporter l'identité + Exporter l'identité - - RetroShare Identity files (*.asc) - Fichiers d'identité Retroshare (*.asc) + Fichiers d'identité Retroshare (*.asc) - Identity saved - Identité sauvegardée + Identité sauvegardée - Your identity was successfully saved It is encrypted You can now copy it to another computer and use the import button to load it - Votre identité a été enregistrée avec succès + Votre identité a été enregistrée avec succès Elle est cryptée Vous pouvez maintenant la copier sur un autre ordinateur et utiliser le bouton d'importation pour la charger - Identity not saved - Identité non enregistrée + Identité non enregistrée - Your identity was not saved. An error occurred. - Votre identité n'a pas été enregistrée. Une erreur est survenue. + Votre identité n'a pas été enregistrée. Une erreur est survenue. - Import Identity - Importer une identité + Importer une identité - Identity not loaded - Identité non chargée + Identité non chargée - Your identity was not loaded properly: - Votre identité n'a pas été chargée correctement : + Votre identité n'a pas été chargée correctement : - New identity imported - Nouvelle identité importée + Nouvelle identité importée - Your identity was imported successfully: - Votre identité a été importée avec succès : + Votre identité a été importée avec succès : - Select Trusted Friend - Définir la confiance de vos amis + Définir la confiance de vos amis - Certificates (*.pqi *.pem) - Certificats (*.pqi *.pem) + Certificats (*.pqi *.pem) - <!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;"> +</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;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</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;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To create a new location on a different computer, select the identity manager in the login window. From there you can import the key file and create a new location for that key. </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;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Creating a new node with the same key allows your your friend nodes to accept you automatically.</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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> @@ -13487,697 +12593,673 @@ 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;">Créer un nouveau noeud avec la même clé permet à vos noeuds amis de vous accepter automatiquement.</p></body></html> - Full keys available in your keyring: - Clés complètes disponibles dans votre trousseau de clés : + Clés complètes disponibles dans votre trousseau de clés : - Export selected key - Exporter la clé sélectionnée + Exporter la clé sélectionnée - You can use it now to create a new node. - Vous pouvez l'utiliser maintenant pour créer un nouveau noeud. + Vous pouvez l'utiliser maintenant pour créer un nouveau noeud. + + + + ProfileView + + Profile View + + + + Name + + + + Peer ID + ID du contact + + + Last Post: + + + + <!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 Serif'; font-size:9pt; 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:16pt; vertical-align:sub;">Profile</span></p></body></html> + + + + Edit Profile + + + + Category + + + + Thoughts + + + + Favourite Files + + + + Size + Taille + + + Hash + Hash + + + Close Profile + + + + Clear Photo + + + + Change Photo + + + + Remove Favourite + + + + Clear Favourites + + + + Download File + Télécharger le fichier + + + Download All + + + + RetroShare + + + + Error : cannot get peer details. + Erreur : impossible d'obtenir les détails de ce contact. ProfileWidget - - Edit status message - Modifier le message d'état + Modifier le message d'état - Copy Certificate - Copier le certificat + Copier le certificat - Profile Manager - Gestionnaire de profil + Gestionnaire de profil - Public Information - Information publique + Information publique - Name: - Nom : + Nom : - Location: - Emplacement : + Emplacement : - Peer ID: - ID du contact : + ID du contact : - Number of Friends: - Nombre d'amis : + Nombre d'amis : - Version: - Version : + Version : - Online since: - En ligne depuis : + En ligne depuis : - Other Information - Autres informations + Autres informations - My Address - Votre adresse + Votre adresse - Local Address: - Adresse locale : + Adresse locale : - External Address: - Adresse externe : + Adresse externe : - Dynamic DNS: - DNS dynamique : + DNS dynamique : - Addresses list: - Liste d'adresses : + Liste d'adresses : - - RetroShare - Retroshare + Retroshare - Sorry, create certificate failed - Désolé, la création du certificat a échoué + Désolé, la création du certificat a échoué - Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Votre certificat a été copié dans le presse-papier, collez-le et envoyez-le par courrier electronique ou par tout autre moyen + Votre certificat a été copié dans le presse-papier, collez-le et envoyez-le par courrier electronique ou par tout autre moyen PulseAddDialog - Post From: - Article de : + Article de : - - Account 1 - Compte 1 + Compte 1 - - Account 2 - Compte 2 + Compte 2 - - Account 3 - Compte 3 + Compte 3 - - Add to Pulse - Ajouter a Pulse + Ajouter a Pulse - filter - filtre + filtre - URL Adder - Additionneur URL + Additionneur URL - Display As - Afficher en tant que + Afficher en tant que - URL - URL + URL - Cancel - Annuler + Annuler - Post Pulse to Wire - Publier Pulse sur Wire + Publier Pulse sur Wire PulseItem - From - De + De - Date - Date + Date - - - ... - ... + ... QObject - - Confirmation - Confirmation + Confirmation - Do you want this link to be handled by your system? - Voulez-vous que ce lien soit traité par votre système ? + Voulez-vous que ce lien soit traité par votre système ? - Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - Cliquez pour ajouter ce certificat Retroshare à votre porte-clés PGP + Cliquez pour ajouter ce certificat Retroshare à votre porte-clés PGP et ouvrir Ajouter un ami. - Add file - Ajouter un fichier + Ajouter un fichier - Add files - Ajouter des fichiers + Ajouter des fichiers - Do you want to process the link ? - Voulez-vous traiter le lien ? + Voulez-vous traiter le lien ? - Do you want to process %1 links ? - Souhaitez-vous traiter les %1 liens ? + Souhaitez-vous traiter les %1 liens ? - %1 of %2 RetroShare link processed. - %1 des %2 lien Retroshare traité. + %1 des %2 lien Retroshare traité. - %1 of %2 RetroShare links processed. - %1 des %2 liens Retroshare traités. + %1 des %2 liens Retroshare traités. - File added - Fichier ajouté + Fichier ajouté - Files added - Fichiers ajoutés + Fichiers ajoutés - File exist - Fichier existe + Fichier existe - Files exist - Fichiers existent + Fichiers existent - Friend added - Ami ajouté + Ami ajouté - Friends added - Amis ajoutés + Amis ajoutés - Friend exist - Ami existe + Ami existe - Friends exist - Amis existent + Amis existent - Friend not added - Ami non ajouté + Ami non ajouté - Friends not added - Amis non ajoutés + Amis non ajoutés - Friend not found - Ami non trouvé + Ami non trouvé - Friends not found - Amis non trouvés + Amis non trouvés - Forum not found - Forum non trouvé + Forum non trouvé - Forums not found - Forums non trouvés + Forums non trouvés - Forum message not found - Message du forum non trouvé + Message du forum non trouvé - Forum messages not found - Messages du forum non trouvés + Messages du forum non trouvés - Channel not found - Chaîne non trouvé + Chaîne non trouvé - Channels not found - Chaînes non trouvées + Chaînes non trouvées - Channel message not found - Message de la chaîne non trouvé + Message de la chaîne non trouvé - Channel messages not found - Messages de la chaîne non trouvés + Messages de la chaîne non trouvés - Recipient not accepted - Destinataire non accepté + Destinataire non accepté - Recipients not accepted - Destinataires non acceptés + Destinataires non acceptés - Unkown recipient - Destinataire inconnu + Destinataire inconnu - Unkown recipients - Destinataires inconnus + Destinataires inconnus - Malformed links - Le lien du fichier est incorrecte. + Le lien du fichier est incorrecte. - Invalid links - Liens non valides + Liens non valides - Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - Avertissement : des caractères interdits sont utilisés dans les noms de fichiers. + Avertissement : des caractères interdits sont utilisés dans les noms de fichiers. Les caractères <b>",|,/,\,&lt;,&gt;,*,?</b> seront remplacés par des '_'. - Result - Résultat + Résultat - Unable to make path - Impossible de créer le chemin + Impossible de créer le chemin - Unable to make path: - Impossible de créer le chemin : + Impossible de créer le chemin : - Failed to process collection file - Impossible de créer le fichier collection + Impossible de créer le fichier collection - Deny friend - Ignorer cet ami + Ignorer cet ami - Make friend - Devenir ami + Devenir ami - Peer details - Détails du contact + Détails du contact - File Request canceled - Demande de fichier annulée + Demande de fichier annulée - 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. - Cette version de Retroshare utilise OpenPGP SDK. En contre partie, elle n'utilise plus le système de trousseau de clés PGP, mais possède son propre trousseau de clés partagé par toutes les instances de Retroshare. <br><br> Vous ne semblez pas posséder un tel trousseau, bien que des clés PGP apparaissent pour les comptes Retroshare existants, probablement parce que vous venez d'installer cette nouvelle version du logiciel. + Cette version de Retroshare utilise OpenPGP SDK. En contre partie, elle n'utilise plus le système de trousseau de clés PGP, mais possède son propre trousseau de clés partagé par toutes les instances de Retroshare. <br><br> Vous ne semblez pas posséder un tel trousseau, bien que des clés PGP apparaissent pour les comptes Retroshare existants, probablement parce que vous venez d'installer cette nouvelle version du logiciel. - 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> - Choisissez entre :<br><ul><li><b>Ok</b> copier le trousseau de clés existant de gnupg (choix le plus sûr), ou </li><li><b> Fermer sans enregistrer </b> repartir de zéro avec un trousseau de clés vide (il vous sera demandé de créer une nouvelle clé PGP pour Retroshare, ou d'importer une paire de clés PGP précédemment enregistrée). </li><li><b>Annuler</b> quitter et fabriquer un trousseau de clés par vous-même (avoir quelques compétences PGP)</li></ul> + Choisissez entre :<br><ul><li><b>Ok</b> copier le trousseau de clés existant de gnupg (choix le plus sûr), ou </li><li><b> Fermer sans enregistrer </b> repartir de zéro avec un trousseau de clés vide (il vous sera demandé de créer une nouvelle clé PGP pour Retroshare, ou d'importer une paire de clés PGP précédemment enregistrée). </li><li><b>Annuler</b> quitter et fabriquer un trousseau de clés par vous-même (avoir quelques compétences PGP)</li></ul> - - RetroShare - Retroshare + Retroshare - Initialization failed. Wrong or missing installation of PGP. - L'initialisation a échoué. Installation de PGP est corrompue ou manquante. + L'initialisation a échoué. Installation de PGP est corrompue ou manquante. - An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - Une erreur inattendue s'est produite. Vous pouvez la reporter 'RsInit::InitRetroShare unexpected return code %1'. + Une erreur inattendue s'est produite. Vous pouvez la reporter 'RsInit::InitRetroShare unexpected return code %1'. - An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - Une erreur inattendue s'est produite. Vous pouvez la reporter 'RsInit::InitRetroShare unexpected return code %1'. + Une erreur inattendue s'est produite. Vous pouvez la reporter 'RsInit::InitRetroShare unexpected return code %1'. - - Multiple instances - Instances multiples + Instances multiples - Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - Une autre instance de Retroshare utilise actuellement le même profil sur votre système. Veuillez dans un premier temps fermer ce profil puis réessayez de l'ouvrir. + Une autre instance de Retroshare utilise actuellement le même profil sur votre système. Veuillez dans un premier temps fermer ce profil puis réessayez de l'ouvrir. Fichier vérrouillé : - An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - Une erreur inattendue s'est produite lorsque Retroshare a essayé d'acquérir le verrou d'instance unique + Une erreur inattendue s'est produite lorsque Retroshare a essayé d'acquérir le verrou d'instance unique Fichier verrouillé : - Start with a RetroShare link is only supported for Windows. - Démarrer avec un lien Retroshare est seulement possible sous Windows. + Démarrer avec un lien Retroshare est seulement possible sous Windows. - Distant peer has closed the chat - Le contact distant a fermé le tchat + Le contact distant a fermé le tchat - Tunnel is pending... - Tunnel en attente... + Tunnel en attente... - Secured tunnel established. Waiting for ACK... - Tunnel sécurisé établi. En attente d'ACK ... + Tunnel sécurisé établi. En attente d'ACK ... - Secured tunnel is working. You can talk! - Le tunnel sécurisé fonctionne. Vous pouvez parler ! + Le tunnel sécurisé fonctionne. Vous pouvez parler ! - The collection file %1 could not be opened. Reported error is: %2 - Le fichier de collection %1 n'a pas pu être ouvert. + Le fichier de collection %1 n'a pas pu être ouvert. L'erreur rapportée est : %2 - Click to send a private message to %1 (%2). - Cliquer pour envoyer un message privé à %1 (%2). + Cliquer pour envoyer un message privé à %1 (%2). - %1 (%2, Extra - Source included) - %1 (%2, supplémentaire - source incluse) + %1 (%2, supplémentaire - source incluse) - Click this link to send a private message to %1 (%2) - Cliquez sur ce lien pour envoyer un message privé à %1 (%2) + Cliquez sur ce lien pour envoyer un message privé à %1 (%2) - RetroShare Certificate (%1, @%2) - Certificat RetroShare (%1, @%2) + Certificat RetroShare (%1, @%2) - secs - secs + secs - TR up - TR émis + TR émis - TR dn - TR reçus + TR reçus - Data up - Données envoyées + Données envoyées - Data dn - Données reçues + Données reçues - Data forward - Données transférées + Données transférées - You appear to have nodes associated to DSA keys: - Vous semblez avoir des noeuds associés à vos clés DSA : + Vous semblez avoir des noeuds associés à vos clés DSA : - DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - Les clés DSA ne sont pas encore supportées par cette version de RetroShare. Tous ces noeuds seront inutilisables. Nous sommes vraiment désolés pour cela. + Les clés DSA ne sont pas encore supportées par cette version de RetroShare. Tous ces noeuds seront inutilisables. Nous sommes vraiment désolés pour cela. - enabled - activé + activé - disabled - désactivé + désactivé - Join chat lobby - Rejoindre le salon de tchat + Rejoindre le salon de tchat - Move IP %1 to whitelist - Ajouter l'IP %1 en liste blanche + Ajouter l'IP %1 en liste blanche - Whitelist entire range %1 - Ajouter la plage entière %1 en liste blanche + Ajouter la plage entière %1 en liste blanche - whitelist entire range %1 - ajouter la plage entière %1 en liste blanche + ajouter la plage entière %1 en liste blanche - %1 seconds ago - %1 secondes avant + %1 secondes avant - %1 minute ago - %1 minute avant + %1 minute avant - %1 minutes ago - %1 minutes avant + %1 minutes avant - %1 hour ago - %1 heure avant + %1 heure avant - %1 hours ago - %1 heures avant + %1 heures avant - %1 day ago - %1 jour avant + %1 jour avant - %1 days ago - il y a %1 jours + il y a %1 jours - Subject: - Sujet : + Sujet : - Participants: - Participants : + Participants : - Auto Subscribe: - Abonnement automatique : + Abonnement automatique : - Id: - Id : + Id : - - This cert is malformed. Error code: - Ce certificat est mal formé. Code d'erreur : + Ce certificat est mal formé. Code d'erreur : - The following has not been added to your download list, because you already have it: - Celui qui suit n'a pas été ajouté à votre liste de téléchargement, parce que vous l'avez déjà : + Celui qui suit n'a pas été ajouté à votre liste de téléchargement, parce que vous l'avez déjà : + + + +Security: no anonymous IDs + + + + Error + Erreur + + + unable to parse XML file! + + + + Select who can contact you: + + + + Group details + + + + Chat this peer + + + + This file already exists. Do you want to open it ? + QuickStartWizard - Quick Start Wizard - Assistant de configuration rapide + Assistant de configuration rapide - <!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> @@ -14186,7 +13268,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Choose which files you share.</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;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Get started using RetroShare.</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;"> @@ -14205,104 +13287,79 @@ 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;"> De commencer à utiliser Retroshare.</span></p></body></html> - - - Next > - Suivant > + Suivant > - - - - Exit - Quitter + Quitter - For best performance, RetroShare needs to know a little about your connection to the internet. - Pour obtenir de meilleures performances, Retroshare a besoin d'informations au sujet de votre connexion internet. + Pour obtenir de meilleures performances, Retroshare a besoin d'informations au sujet de votre connexion internet. - Choose your download speed limit: - Vitesse de réception maximale : + Vitesse de réception maximale : - - KB/s - Ko/s + Ko/s - Choose your upload speed limit: - Vitesse d'envoi maximale : + Vitesse d'envoi maximale : - Connection : - Connexion : + Connexion : - Automatic (UPnP) - Automatique (UPnP) + Automatique (UPnP) - Firewalled - Pare-feu + Pare-feu - Manually forwarded port - Redirection de port manuelle + Redirection de port manuelle - Discovery : - Découverte : + Découverte : - Public: DHT & Discovery - Publique : DHT & Découverte + Publique : DHT & Découverte - Private: Discovery Only - Privée : Découverte seulement + Privée : Découverte seulement - Inverted: DHT Only - Inversé : DHT seulement + Inversé : DHT seulement - Dark Net: None - Dark Net : Aucun + Dark Net : Aucun - - - < Back - < Précédent + < Précédent - <!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, initially 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"> + <!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;"> @@ -14312,46 +13369,38 @@ p, li { white-space: pre-wrap; } <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;">Partage anonyme </span><span style=" font-family:'Sans'; font-size:8pt;">: vos fichiers sont accessibles par n'importe qui par l'intermédiaire d'un tunnel anonyme.</span></p></body></html> - Directory - Dossier + Dossier - - Network Wide - Anonyme + Anonyme - Browseable - Publique + Publique - Add - Ajouter + Ajouter - Remove - Supprimer + Supprimer - Automatically share incoming directory (Recommended) - Partager automatiquement le dossier de réception (recommandé) + Partager automatiquement le dossier de réception (recommandé) - <!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"> + <!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;"> @@ -14360,16 +13409,15 @@ 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;">Amusez-vous bien avec 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> - <!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;"> @@ -14379,1713 +13427,1499 @@ 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 - Ne pas afficher d'avertissement à la fermeture de Retroshare + Ne pas afficher d'avertissement à la fermeture de Retroshare - Start Minimized - Démarrer en mode réduit + Démarrer en mode réduit - Start RetroShare when my System Starts. - Démarrer Retroshare au lancement du système + Démarrer Retroshare au lancement du système - Start minimized on system start - Minimiser au démarrage du système + Minimiser au démarrage du système - Finish - Fin de la configuration + Fin de la configuration - Select A Folder To Share - Choisir un dossier à partager + Choisir un dossier à partager - Shared Directory Added! - Le dossier partagé a été ajouté ! + Le dossier partagé a été ajouté ! - Warning! - Attention ! + Attention ! - Browsable - Visible + Visible - Universal - Universel + Universel - If checked, the share is anonymously shared to anybody. - Si coché, le partage est partagé anonymement avec tout le monde. + Si coché, le partage est partagé anonymement avec tout le monde. - If checked, the share is browsable by your friends. - Si coché, le partage est visible par vos amis. + Si coché, le partage est visible par vos amis. - Please decide whether this directory is * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - Veuillez décider si ce répertoire est + Veuillez décider si ce répertoire est * À l'échelle du réseau : partagé anonymement à travers tout le réseau (ceci incluant vos amis) * Parcourable : parcourable par vos amis * Universel : les deux - Do you really want to stop sharing this directory ? - Etes-vous certain(e) de ne plus vouloir partager ce dossier ? + Etes-vous certain(e) de ne plus vouloir partager ce dossier ? + + + RetroShare Page Display Style + + + + Where do you want to have the buttons for the page? + Où voulez-vous avoir les boutons pour la page ? + + + ToolBar View + + + + List View + + + + <!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 align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Welcome to RetroShare.</span></p> +<p align="center" 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;">No Questions, No Limits, Pure Privacy. </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:14pt;"></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:14pt;">The QuickStart wizard helps you get 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-size:14pt;"></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:14pt;">This Wizard helps you </span><span style=" font-size:14pt; font-weight:600;">Add Friends</span><span style=" font-size:14pt;"> and </span><span style=" font-size:14pt; font-weight:600;">Add Shared Folders</span><span style=" font-size:14pt;">.</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:'Lucida Grande'; font-size:13pt;"></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:14pt;">You can restart the Wizard at anytime from the Toolbar.</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:14pt;"></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:14pt;">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:14pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Help I don't know what I'm doing! Someone just sent me a link...</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:14pt;"></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:14pt;">Firstly, </span><span style=" font-size:14pt; font-weight:600;">Don't Panic... </span><span style=" font-size:14pt;">Retroshare is easy to use. Most things are handled automatically for 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-size:14pt;"></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:14pt;">Retroshare is a </span><span style=" font-size:14pt; font-weight:600;">Secure Social Network</span><span style=" font-size:14pt;"> which allows you to privately share stuff with your friends. </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-size:14pt;"></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:14pt;">Follow the Instructions on each page of this wizard to setup Retroshare. (Click the &quot;Next&quot; Button!)</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:14pt;"></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:14pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Retroshare References</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-size:14pt; font-style:italic;"></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:14pt;">You will find more information about Retroshare on the Following Webpages:</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:14pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.retroshare.org"><span style=" font-family:'Lucida Grande'; font-size:13pt; text-decoration: underline; color:#0000ff;">Retroshare Offical Website</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"> +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 align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Invite Your Friends To Retroshare</span></p> +<p align="center" 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;">No Questions, No Limits, Pure Privacy. </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:14pt;"></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:14pt;">Increasing your number of friends makes Retroshare a more powerful tool. </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:14pt;"></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:14pt;">Each person provides a some content, </span><span style=" font-size:14pt; font-weight:600;">together with Retroshare</span><span style=" font-size:14pt;"> you form a </span><span style=" font-size:14pt; font-weight:600;">secure social network.</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:14pt; font-weight:600;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">How do I invite with 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-size:14pt;"></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:14pt;">Retroshare uses a Web of Trust to identify people. To connect with a friend, you must exchange &quot;Certificates&quot;</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:14pt;"></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:14pt;">This is easy to do: Click on the &quot;Launch Invite Email&quot; button below and an email will be created.</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:14pt;"></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:14pt;">Select your closest friends, add their email address, and send it!</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-size:14pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">How do I add Friends Certificates?</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:14pt;"></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:14pt;">If someone has sent you a Retroshare Invite Email, Click the &quot;Add Friend&quot; button below.</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:14pt;"></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:14pt;">Cut and Paste their invitation into the new Window and click Okay. Then click Make friend to add them.</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:14pt;"></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:14pt;">Be sure to send them your certificate as well, otherwise you will not connect.</span></p></body></html> + + + + Add Friend + Ajouter un ami + + + Launch Invite Email + + + + <!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 align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Setup your Shared Folders.</span></p> +<p align="center" 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;">No Questions, No Limits, Pure Privacy. </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:14pt;"></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:14pt;">Click the &quot;Add&quot; Button, and select which Folder you want to share with 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-size:14pt;"></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:14pt;">You can Share Folders in two different Modes:</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:14pt; font-weight:600;"> Browsable by friends</span><span style=" font-family:'Sans'; font-size:14pt;">: 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:14pt; font-weight:600;"> Anonymously shared</span><span style=" font-family:'Sans'; font-size:14pt;">: files can be downloaded by anybody through anonymous tunnels.</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-size:14pt;">When you add a new folder, It will be initially be shared both Anonymously and be Browsable by your 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-size:14pt;">Be sure to change the shared flags to your prefered settings.</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 align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Congratulations, you have just configured Retroshare.</span></p> +<p align="center" 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;">No Questions, No Limits, Pure Privacy. </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:14pt;"></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:14pt;">When your Friends reply with Invitations, Launch the Wizard again, Add Your Friends and Start Retrosharing!</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:14pt;"></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-size:14pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Getting the Most Out of 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:14pt;"></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:14pt; font-weight:600;">Invite your friends:</span><span style=" font-size:14pt;"> We suggest you get at least 5 friends to make Retroshare really useful.</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:14pt;"></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:14pt; font-weight:600;">Keep Retroshare running</span><span style=" font-size:14pt;">: You help make the network better by running Retroshare in the background.</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:14pt;"></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:14pt; font-weight:600;">Open a External Port </span><span style=" font-size:14pt;">on your Router via uPnP, this improves the Network Performance.</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:14pt;"></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:14pt;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Retroshare Tutorials</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:14pt; font-style:italic;"></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:14pt;">If you want to learn a little bit more about using Retroshare. Have a look at the following Websites:</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:14pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://pclosmag.com/html/Issues/201105/page14.html"><span style=" font-family:'Lucida Grande'; font-size:14pt; text-decoration: underline; color:#0000ff;">PcLinuxOS Tutorial. Part 1 getting started with Retroshare</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-family:'Lucida Grande'; font-size:14pt; text-decoration: underline; color:#0000ff;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://pclosmag.com/html/Issues/201104/page20.html"><span style=" font-family:'Lucida Grande'; font-size:14pt; text-decoration: underline; color:#0000ff;">PcLinuxOS Tutorial. Part 2 explaining the Windows</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-family:'Lucida Grande'; font-size:14pt; text-decoration: underline; color:#0000ff;"></p> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Thank you for trying out Retroshare. We hope that you find it useful.</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-size:14pt;"></p></body></html> + RSGraphWidget - %1 KB - %1 Ko + %1 Ko - %1 MB - %1 Mo + %1 Mo - %1 GB - %1 Go + %1 Go RSImageBlockWidget - Form - Formulaire + Formulaire - The loading of embedded images is blocked. - Le chargement des images intégrées est bloqué. + Le chargement des images intégrées est bloqué. - Load images - Charger les images + Charger les images RSPermissionMatrixWidget - Allowed by default - Autorisé par défaut + Autorisé par défaut - Denied by default - Refusé par défaut + Refusé par défaut - Enabled for this peer - Permis pour ce pair + Permis pour ce pair - Disabled for this peer - Désactivé pour ce pair + Désactivé pour ce pair - Enabled by remote peer - Permis pour ce pair distant + Permis pour ce pair distant - Disabled by remote peer - Désactivé pour ce pair distant + Désactivé pour ce pair distant - Switched Off - Éteint + Éteint - Service name: - Nom du service : + Nom du service : - Peer name: - Nom du contact : + Nom du contact : - Peer Id: - ID du contact : + ID du contact : + + + Globally switched Off + RSettingsWin - Error Saving Configuration on page - Une erreur est survenue lors de l'enregistrement de la configuration sur la page + Une erreur est survenue lors de l'enregistrement de la configuration sur la page RatesStatus - Down - Réception + Réception - Up - Émission + Émission - <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - <strong>Réception :</strong> 0.00 (kB/s) | <strong>Émission :</strong> 0.00 (kB/s) + <strong>Réception :</strong> 0.00 (kB/s) | <strong>Émission :</strong> 0.00 (kB/s) RelayPage - Enable Relay Connections - Activer les connexions relais + Activer les connexions relais - Use Relay Servers - Utiliser les serveurs relais + Utiliser les serveurs relais - Relay options - Options des relais + Options des relais - Number - Nombre + Nombre - Bandwidth per link - Bande passante par lien + Bande passante par lien - Total Bandwidth - Bande passante totale + Bande passante totale - Friends - Amis + Amis - - - kB/s - Ko/s + Ko/s - Friends of Friends - Amis de vos amis + Amis de vos amis - General - Général + Général - Total: - Total : + Total : - Relay Server Setup - Configuration du serveur relais + Configuration du serveur relais - Add Server - Ajouter un serveur + Ajouter un serveur - Server DHT Key - Clé DHT du serveur + Clé DHT du serveur - Remove Server - Supprimer serveur + Supprimer serveur - Relay - Relais + Relais - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relais</h1> <p>En activant les relais, vous permettez à votre Retroshare d'agir comme un pont entre les utilisateurs qui ne peuvent pas se connecter directement, par exemple lorsqu'ils sont derrière un Firewall.</p> <p>Vous pouvez choisir de servir de relais en cochant <i>Activer les connexions relais</i>, ou tout simplement profiter d'autres serveurs relais en cochant <i>Utiliser les serveurs relais</i>. Pour les premiers, vous pouvez spécifier la bande passante allouée lorsqu'il agit comme un relais pour les amis à vous, pour les amis de vos amis, ou pour n'importe qui dans le réseau Retroshare.</p> <p>Dans tous les cas, un nœud Retroshare agissant comme un relais ne peut pas voir le trafic relayé, car le trafic est crypté et authentifié par les deux nœuds relayés.</p> + <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relais</h1> <p>En activant les relais, vous permettez à votre Retroshare d'agir comme un pont entre les utilisateurs qui ne peuvent pas se connecter directement, par exemple lorsqu'ils sont derrière un Firewall.</p> <p>Vous pouvez choisir de servir de relais en cochant <i>Activer les connexions relais</i>, ou tout simplement profiter d'autres serveurs relais en cochant <i>Utiliser les serveurs relais</i>. Pour les premiers, vous pouvez spécifier la bande passante allouée lorsqu'il agit comme un relais pour les amis à vous, pour les amis de vos amis, ou pour n'importe qui dans le réseau Retroshare.</p> <p>Dans tous les cas, un nœud Retroshare agissant comme un relais ne peut pas voir le trafic relayé, car le trafic est crypté et authentifié par les deux nœuds relayés.</p> + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + RemoteSharedFilesDialog - Download - Télécharger + Télécharger - Recommend in a message to - Recommander par messagerie à + Recommander par messagerie à - Collection - Collection + Collection RetroshareDirModel - NEW - NOUVEAU + NOUVEAU RsBanListDefs - IP address not checked - Adresse IP non vérifiée + Adresse IP non vérifiée - IP address is blacklisted - L'adresse IP est en liste noire + L'adresse IP est en liste noire - IP address is not whitelisted - L'adresse IP n'est pas en liste blanche + L'adresse IP n'est pas en liste blanche - IP address accepted - Adresse IP acceptée + Adresse IP acceptée - Unknown - Inconnu + Inconnu RsBanListToolButton - Add IP to whitelist - Ajouter l'IP dans liste blanche + Ajouter l'IP dans liste blanche - Remove IP from whitelist - Retirer l'IP de la liste blanche + Retirer l'IP de la liste blanche - Add IP to blacklist - Ajouter l'IP à la liste noire + Ajouter l'IP à la liste noire - Remove IP from blacklist - Retirer l'IP de la liste noire + Retirer l'IP de la liste noire - Only IP - Seulement l'IP + Seulement l'IP - - Entire range - Plage entière + Plage entière RsCollectionDialog - Collection - Collection + Collection - File name : - Nom du fichier : + Nom du fichier : - Total size : - Taille totale : + Taille totale : - - Cancel - Annuler + Annuler - Download! - Télécharger ! + Télécharger ! - File - Fichier + Fichier - Size - Taille + Taille - Hash - Hash + Hash - Bad filenames have been cleaned - Les mauvais noms de fichiers ont été nettoyé + Les mauvais noms de fichiers ont été nettoyé - Some filenames or directory names contained forbidden characters. -Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. +Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. Concerned files are listed in red. - Des fichiers ou des noms de dossier contiennent des caractères interdits. + Des fichiers ou des noms de dossier contiennent des caractères interdits. Les caractères <b>",|,/,\,&lt;,&gt;,*,?</b> seront remplacés par des '_'. Les fichiers concernés sont affichés en rouge. - Selected files : - Fichiers choisis : + Fichiers choisis : - ... - ... + ... - <html><head/><body><p>Add selected item to collection one by one.</p><p>Select parent dir to add this too.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Enter&gt;</span></p></body></html> - <html><head/><body><p>Ajouter à la collection les articles sélectionnés un par un.</p><p>Sélectionner le répertoire parent pour ajouter ceci aussi.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Entrée&gt;</span></p></body></html> + <html><head/><body><p>Ajouter à la collection les articles sélectionnés un par un.</p><p>Sélectionner le répertoire parent pour ajouter ceci aussi.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Entrée&gt;</span></p></body></html> - <html><head/><body><p>Add selected item to collection.</p><p>If a directory is selected, all of his children will be added.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Enter&gt;</span></p></body></html> - <html><head/><body><p>Ajouter à la collection l'article sélectionné.</p><p>Si un répertoire est sélectionné, tous ses enfants seront ajoutés.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Entrée&gt;</span></p></body></html> + <html><head/><body><p>Ajouter à la collection l'article sélectionné.</p><p>Si un répertoire est sélectionné, tous ses enfants seront ajoutés.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Entrée&gt;</span></p></body></html> - >> - >> + >> - <html><head/><body><p>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - <html><head/><body><p>Faire une nouveau dossier dans la collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> + <html><head/><body><p>Faire une nouveau dossier dans la collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + - + + + - Save - Sauvegarder + Sauvegarder - Collection Editor - Éditeur de collection + Éditeur de collection - File Count - Compte fichiers + Compte fichiers - This is the root directory. - Ceci est le répertoire racine. + Ceci est le répertoire racine. - - Real Size: Waiting child... - Taille réelle : attente d'enfant... + Taille réelle : attente d'enfant... - - Real File Count: Waiting child... - Compte réel de fichiers : attente d'enfant... + Compte réel de fichiers : attente d'enfant... - This is a directory. Double-click to expand it. - Ceci est un dossier. Double-cliquez pour l'étendre. + Ceci est un dossier. Double-cliquez pour l'étendre. - - Real Size=%1 - Vraie taille = %1 + Vraie taille = %1 - - Real File Count=%1 - Vrai nombre de fichiers = %1 + Vrai nombre de fichiers = %1 - Save Collection File. - Sauvegarder fichier collection. + Sauvegarder fichier collection. - What do you want to do? - Que voulez-vous faire ? + Que voulez-vous faire ? - Overwrite - Écraser + Écraser - Merge - Mêler + Mêler - Warning, selection contains more than %1 items. - Attention, la sélection contient plus de %1 éléments. + Attention, la sélection contient plus de %1 éléments. - Do you want to remove them and all their children, too? <br> - Voulez-vous les enlever et tous leurs enfants aussi ? <br> + Voulez-vous les enlever et tous leurs enfants aussi ? <br> - New Directory - Nouveau dossier + Nouveau dossier - Enter the new directory's name - Entrez le nom du nouveau dossier + Entrez le nom du nouveau dossier - <html><head/><body><p>Change the file where collection will be saved.</p><p>If you select an existing file, you could merge it.</p></body></html> - <html><head/><body><p>Changer le fichier où la collection sera sauvegardée.</p><p>Si vous sélectionnez un fichier existant, vous pourrez le fusionner.</p></body></html> + <html><head/><body><p>Changer le fichier où la collection sera sauvegardée.</p><p>Si vous sélectionnez un fichier existant, vous pourrez le fusionner.</p></body></html> - File already exists. - Le fichier existe déjà. + Le fichier existe déjà. - <html><head/><body><p>Remove selected item from collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Del&gt;</span></p></body></html> - <html><head/><body><p>Enlever de la collection l'article sélectionné.</p><p><span style=" font-style:italic; vertical-align:sub;"><Suppr></span></p></body></html> + <html><head/><body><p>Enlever de la collection l'article sélectionné.</p><p><span style=" font-style:italic; vertical-align:sub;"><Suppr></span></p></body></html> RsCollectionFile - - Cannot open file %1 - Ne peut pas ouvrir le fichier %1 + Ne peut pas ouvrir le fichier %1 - Error parsing xml file - Erreur d'analyse du fichier xml + Erreur d'analyse du fichier xml - Open collection file - Ouvrir le fichier collection + Ouvrir le fichier collection - - - - Collection files - Fichiers collection + Fichiers collection - - - Create collection file - Créer un fichier collection + Créer un fichier collection - This file contains the string "%1" and is therefore an invalid collection file. If you believe it is correct, remove the corresponding line from the file and re-open it with Retroshare. - Le fichier contient la chaîne "%1" et donc ce qui en fait un fichier de collection incorrecte. + Le fichier contient la chaîne "%1" et donc ce qui en fait un fichier de collection incorrecte. Si vous pensez qu'il est correct, supprimez la ligne correspondante du fichier et ré-ouvrez le avec Retroshare. - Save Collection File. - Sauvegarder fichier collection. + Sauvegarder fichier collection. - What do you want to do? - Que voulez-vous faire ? + Que voulez-vous faire ? - Overwrite - Écraser + Écraser - Merge - Mêler + Mêler - Cancel - Annuler + Annuler - File already exists. - Le fichier existe déjà. + Le fichier existe déjà. RsHtml - Image is oversized for transmission. Reducing image to %1x%2 pixels? - L'image est trop grande pour la transmission. + L'image est trop grande pour la transmission. Réduire l'image par %1x%2 pixels ? RsNetUtil - Invalid format - Format invalide + Format invalide Rshare - Resets ALL stored RetroShare settings. - Réinitialisation de tous les paramètres de Retroshare. + Réinitialisation de tous les paramètres de Retroshare. - Sets the directory RetroShare uses for data files. - Définit le dossier utilisé par Retroshare pour stocker le profil utilisateur. + Définit le dossier utilisé par Retroshare pour stocker le profil utilisateur. - Sets the name and location of RetroShare's logfile. - Définit le nom et l'emplacement des fichiers log de Retroshare. + Définit le nom et l'emplacement des fichiers log de Retroshare. - Sets the verbosity of RetroShare's logging. - Définit la verbosité du log de Retroshare. + Définit la verbosité du log de Retroshare. - Sets RetroShare's interface style. - Définit le style visuel de Retroshare. + Définit le style visuel de Retroshare. - Sets RetroShare's interface stylesheets. - Définit la feuille de style de l'interface de Retroshare. + Définit la feuille de style de l'interface de Retroshare. - Sets RetroShare's language. - Définit la langue de Retroshare. + Définit la langue de Retroshare. - RetroShare Usage Information - Information sur l'utilisation de Retroshare + Information sur l'utilisation de Retroshare - Unable to open log file '%1': %2 - Impossible d'ouvrir le journal '%1': %2 + Impossible d'ouvrir le journal '%1': %2 - built-in - intégré + intégré - Could not create data directory: %1 - N'a pas pu créer le dossier de données : %1 + N'a pas pu créer le dossier de données : %1 - Revision - Révision + Révision - Invalid language code specified: - Le code de langue indiqué n'est pas valide : + Le code de langue indiqué n'est pas valide : - Invalid GUI style specified: - Le style visuel de l'interface indiqué n'est pas valide : + Le style visuel de l'interface indiqué n'est pas valide : - Invalid log level specified: - Niveau du journal spécifié invalide : + Niveau du journal spécifié invalide : RttStatistics - RTT Statistics - Statistiques RTT + Statistiques RTT SFListDelegate - B - O + O - KB - Ko + Ko - MB - Mo + Mo - GB - Go + Go SearchDialog - Enter a keyword here (at least 3 char long) - Entrez un mot clé ici (minimum 3 caractères) + Entrez un mot clé ici (minimum 3 caractères) - Start Search - Lancer la recherche + Lancer la recherche - Search - Rechercher + Rechercher - Advanced Search - Recherche avancée + Recherche avancée - Advanced - Avancé + Avancé - Search inside "browsable" files of your friends - Rechercher dans les dossiers "consultables" de vos amis + Rechercher dans les dossiers "consultables" de vos amis - Browsable files - Fichiers consultables + Fichiers consultables - Multi-hop search at distance 6 in the network (always reports available files) - Recherche jusqu'à 6 niveaux de contacts dans le réseau + Recherche jusqu'à 6 niveaux de contacts dans le réseau (toujours proposer des fichiers disponibles) - Distant - Distant + Distant - Include files from your own file list in the search result - Afficher vos fichiers dans les résultats de recherche + Afficher vos fichiers dans les résultats de recherche - Own files - Vos fichiers + Vos fichiers - Close all Search Results - Fermer tous les résultats de recherche + Fermer tous les résultats de recherche - Clear - Effacer + Effacer - KeyWords - Mots clés + Mots clés - Results - Résultats + Résultats - Search Id - ID de recherche + ID de recherche - Filename - Nom du fichier + Nom du fichier - Size - Taille + Taille - Sources - Sources + Sources - Type - Type + Type - Age - Ancienneté + Ancienneté - Hash - Hash + Hash - Filter: - Filtre : + Filtre : - Filter Search Result - Résultats filtrés + Résultats filtrés - Max results: - Résultats max : + Résultats max : - Any - Tout + Tout - Archive - Archive + Archive - Audio - Audio + Audio - CD-Image - Image Disque + Image Disque - Document - Document + Document - Picture - Image + Image - Program - Programme + Programme - Video - Vidéo + Vidéo - Directory - Dossier + Dossier - Download Selected - Télécharger la sélection + Télécharger la sélection - Download selected - Télécharger la sélection + Télécharger la sélection - File Name - Nom du fichier + Nom du fichier - Download - Télécharger + Télécharger - - Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare - Send RetroShare Link - Envoyer le lien Retroshare + Envoyer le lien Retroshare - Download Notice - Télécharger la notice + Télécharger la notice - Skipping Local Files - Les fichiers que vous possédez déjà seront ignorés + Les fichiers que vous possédez déjà seront ignorés - - Sorry - Désolé + Désolé - - This function is not yet implemented. - Cette fonction n'est pas encore activée. + Cette fonction n'est pas encore activée. - Search again - Relancer la recherche + Relancer la recherche - Remove - Supprimer + Supprimer - Remove All - Tout supprimer + Tout supprimer - - Folder - Dossier + Dossier - New RetroShare Link(s) - Nouveau(x) lien(s) Retroshare + Nouveau(x) lien(s) Retroshare - Open Folder - Ouvrir répertoire + Ouvrir répertoire - Create Collection... - Créer une collection ... + Créer une collection ... - Modify Collection... - Modifier collection ... + Modifier collection ... - View Collection... - Vue collection ... + Vue collection ... - Download from collection file... - Télécharger à partir d'un fichier collection... + Télécharger à partir d'un fichier collection... - Collection - Collection + Collection SecurityIpItem - Peer details - Détails du contact + Détails du contact - - Expand - Étendre + Étendre - Remove Item - Supprimer élément + Supprimer élément - IP address: - Adresse IP : + Adresse IP : - Peer ID: - ID du contact : + ID du contact : - Location: - Emplacement : + Emplacement : - Peer Name: - Nom du contact: + Nom du contact: - - - Unknown Peer - Contact inconnu + Contact inconnu - Hide - Cacher + Cacher - but reported: - mais signalé : + mais signalé : - Wrong external ip address reported - Mauvaise adresse IP externe signalée + Mauvaise adresse IP externe signalée - IP address %1 was added to the whitelist - L'adresse IP %1 a été ajouté en liste blanche + L'adresse IP %1 a été ajouté en liste blanche - <p>This is the external IP your Retroshare node thinks it is using.</p> - <p>Ceci est l'IP externe que votre noeud Retroshare pense utiliser.</p> + <p>Ceci est l'IP externe que votre noeud Retroshare pense utiliser.</p> - <p>This is the IP your friend claims it is connected to. If you just changed IPs, this is a false warning. If not, that means your connection to this friend is forwarded by an intermediate peer, which would be suspicious.</p> - <p>Ceci est l'IP à laquelle votre ami prétend être connecté. Si vous avez juste changé d'IPs, ceci est une fausse alerte. Sinon, cela signifie que votre connexion à cet ami est retransmise via un pair intermédiaire, ce qui serait suspect.</p> + <p>Ceci est l'IP à laquelle votre ami prétend être connecté. Si vous avez juste changé d'IPs, ceci est une fausse alerte. Sinon, cela signifie que votre connexion à cet ami est retransmise via un pair intermédiaire, ce qui serait suspect.</p> - - <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> - <html><head/><body><p>Cet avertissement est ici pour vous protéger contre les attaques visant le traffic transféré. Dans un tel cas, l'ami auquel vous êtes connecté ne verra pas votre IP externe, mais celle de l'attaquant. </p><p><br/></p><p>Cependant, si vous avez juste changé d'IP pour quelque raison que ce soit (quelques fournisseurs d'accès Internet forcent régulièrement le changement d'IPs) cet avertissement vous informe juste qu'un ami s'est connecté à la nouvelle IP avant que Retroshare n'aie compris que l'IP avait changé. Dans ce cas tout va bien.</p><p><br/></p><p>Vous pouvez facilement supprimer les fausses alertes en mettant en liste blanche vos propres IPs (par exemple la plage d'adresses de votre votre fournisseur d'accès Internet), ou en mettant complètement hors de service ces avertissements dans Options -&gt; Notifications -&gt; le Fil d'actualités.</p></body></html> + <html><head/><body><p>Cet avertissement est ici pour vous protéger contre les attaques visant le traffic transféré. Dans un tel cas, l'ami auquel vous êtes connecté ne verra pas votre IP externe, mais celle de l'attaquant. </p><p><br/></p><p>Cependant, si vous avez juste changé d'IP pour quelque raison que ce soit (quelques fournisseurs d'accès Internet forcent régulièrement le changement d'IPs) cet avertissement vous informe juste qu'un ami s'est connecté à la nouvelle IP avant que Retroshare n'aie compris que l'IP avait changé. Dans ce cas tout va bien.</p><p><br/></p><p>Vous pouvez facilement supprimer les fausses alertes en mettant en liste blanche vos propres IPs (par exemple la plage d'adresses de votre votre fournisseur d'accès Internet), ou en mettant complètement hors de service ces avertissements dans Options -&gt; Notifications -&gt; le Fil d'actualités.</p></body></html> SecurityItem - wants to be friend with you on RetroShare - veut devenir ton ami(e) sur Retroshare + veut devenir ton ami(e) sur Retroshare - Accept Friend Request - Accepter la demande d'amitié + Accepter la demande d'amitié - Peer details - Détails du contact + Détails du contact - Deny friend - Ignorer cet ami + Ignorer cet ami - Chat - Tchat + Tchat - Start Chat - Dialoguer + Dialoguer - - Expand - Déplier + Déplier - Remove Item - Supprimer + Supprimer - Name: - Nom : + Nom : - Peer ID: - ID du contact : + ID du contact : - Trust: - Confiance : + Confiance : - Location: - Emplacement : + Emplacement : - IP Address: - Adresse IP : + Adresse IP : - Connection Method: - Méthode de connexion : + Méthode de connexion : - Status: - Statut : + Statut : - Write Message - Envoyer un message + Envoyer un message - Connect Attempt - Tentative de connexion + Tentative de connexion - Connection refused by remote peer - Le contact ne vous a pas encore accepté + Le contact ne vous a pas encore accepté - Unknown (Incoming) Connect Attempt - Tentative de connexion (entrante) inconnue + Tentative de connexion (entrante) inconnue - Unknown (Outgoing) Connect Attempt - Tentative de connexion (sortante) inconnue + Tentative de connexion (sortante) inconnue - Unknown Security Issue - Problème de sécurité inconnue + Problème de sécurité inconnue - - - - - Unknown Peer - Contact inconnu + Contact inconnu - Hide - Cacher + Cacher - Do you want to remove this Friend? - Désirez-vous supprimer cet ami ? + Désirez-vous supprimer cet ami ? - Certificate has wrong signature!! This peer is not who he claims to be. - Ce certificat a une signature erronée ! Cette personne n'est pas celle qu'elle prétend être. + Ce certificat a une signature erronée ! Cette personne n'est pas celle qu'elle prétend être. - Missing/Damaged certificate. Not a real Retroshare user. - Certificat manquant/endommagé. Ce n'est pas un utilisateur réel de Retroshare. + Certificat manquant/endommagé. Ce n'est pas un utilisateur réel de Retroshare. - Certificate caused an internal error. - Ce certificat a provoqué une erreur interne. + Ce certificat a provoqué une erreur interne. - Peer/node not in friendlist (PGP id= - Le pair/noeud n'est pas dans la liste d'amis (ID PGP= + Le pair/noeud n'est pas dans la liste d'amis (ID PGP= - Missing/Damaged SSL certificate for key - Le certificat SSL de cette clé est manquant/endommagé + Le certificat SSL de cette clé est manquant/endommagé ServerPage - Network Configuration - Configuration du réseau + Configuration du réseau - Automatic (UPnP) - Automatique (UPnP) + Automatique (UPnP) - Firewalled - Pare-feu + Pare-feu - Manually Forwarded Port - Redirection de port manuelle + Redirection de port manuelle - Public: DHT & Discovery - Publique : DHT & Découverte + Publique : DHT & Découverte - Private: Discovery Only - Privé : Découverte seulement + Privé : Découverte seulement - Inverted: DHT Only - Inversé : DHT seulement + Inversé : DHT seulement - Dark Net: None - Dark Net : Aucun + Dark Net : Aucun - - Local Address - Adresse locale + Adresse locale - External Address - Adresse externe + Adresse externe - Dynamic DNS - DNS dynamique + DNS dynamique - - Port: - Port : + Port : - Local network - Réseau local + Réseau local - External ip address finder - Découverte de l'adresse IP externe + Découverte de l'adresse IP externe - UPnP - UPnP + UPnP - Known / Previous IPs: - IPs connues / précédentes : + IPs connues / précédentes : - Show Discovery information in statusbar - Montrer les informations de découverte dans la barre d'état + Montrer les informations de découverte dans la barre d'état - If you uncheck 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. - Si vous décochez cette case, Retroshare ne pourra déterminer votre adresse IP + Si vous décochez cette case, Retroshare ne pourra déterminer votre adresse IP que si vous vous connectez à quelqu'un. Laisser cette case cochée vous aidera à vous connecter si vous avez peu d'amis. Cela vous aidera aussi si vous êtes derrière un pare-feu ou un VPN (virtual private network). - Allow RetroShare to ask my ip to these websites: - Autoriser Retroshare à récupérer mon adresse IP à partir de ces sites : + Autoriser Retroshare à récupérer mon adresse IP à partir de ces sites : - - kB/s - Ko/s + Ko/s - Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - La gamme de ports acceptables s'étend de 10 à 65535. Normalement les ports en dessous de 1024 sont réservés à votre système. + La gamme de ports acceptables s'étend de 10 à 65535. Normalement les ports en dessous de 1024 sont réservés à votre système. - Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - La gamme de ports acceptables s'étend de 10 à 65535. Normalement les ports en dessous de 1024 sont réservés à votre système. + La gamme de ports acceptables s'étend de 10 à 65535. Normalement les ports en dessous de 1024 sont réservés à votre système. - Onion Address - Adresse Onion + Adresse Onion - Expected torrc Port Configuration: - Configuration de port torrc attendue : + Configuration de port torrc attendue : - HiddenServiceDir </your/path/to/hidden/directory/service> HiddenServicePort 9191 127.0.0.1:9191 - HiddenServiceDir </your/path/to/hidden/directory/service> + HiddenServiceDir </your/path/to/hidden/directory/service> HiddenServicePort 9191 127.0.0.1:9191 - Discovery On (recommended) - Découverte activée (recommandé) + Découverte activée (recommandé) - Discovery Off - Découverte désactivée + Découverte désactivée - Proxy seems to work. - Le proxy semble fonctionner. + Le proxy semble fonctionner. - [Hidden mode] - [Mode caché] + [Mode caché] - <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> - <html><head/><body><p>Ceci vide la liste d'adresses connues. Cette action est utile si, pour une raison quelconque, votre liste d'adresse contient une adresse invalide/sans rapport/expirée que vous voulez éviter de passer à vos amis en tant qu'adresse de contact.</p></body></html> + <html><head/><body><p>Ceci vide la liste d'adresses connues. Cette action est utile si, pour une raison quelconque, votre liste d'adresse contient une adresse invalide/sans rapport/expirée que vous voulez éviter de passer à vos amis en tant qu'adresse de contact.</p></body></html> - Clear - Effacer + Effacer - Download limit (KB/s) - Limite de téléchargement (KB/s) + Limite de téléchargement (KB/s) - <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - <html><head/><body><p>Cette limite du téléchargement concerne l'application entière. Cependant, dans quelques situations, comme lors du transfert de beaucoup de petits fichiers simultanément, la bande passante évaluée devient incertaine et la valeur totale rapportée par Retroshare peut excéder cette limite.</p></body></html> + <html><head/><body><p>Cette limite du téléchargement concerne l'application entière. Cependant, dans quelques situations, comme lors du transfert de beaucoup de petits fichiers simultanément, la bande passante évaluée devient incertaine et la valeur totale rapportée par Retroshare peut excéder cette limite.</p></body></html> - Upload limit (KB/s) - Limite d'envoi (KB/s) + Limite d'envoi (KB/s) - <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - <html><head/><body><p>La limite de téléversement (upload) concerne le logiciel entier. Une trop petite limite de téléversement pourrait éventuellement bloquer des services à basse priorité (forums, chaînes). La valeur minimum recommandée est 50 Ko/s. </p></body></html> + <html><head/><body><p>La limite de téléversement (upload) concerne le logiciel entier. Une trop petite limite de téléversement pourrait éventuellement bloquer des services à basse priorité (forums, chaînes). La valeur minimum recommandée est 50 Ko/s. </p></body></html> - Test - Test + Test - Network - Réseau + Réseau - IP Filters - Filtres d'IP + Filtres d'IP - IP blacklist - Liste noire d'IP + Liste noire d'IP - - IP range - Plage d'IP + Plage d'IP - - - Status - Statut + Statut - - - Origin - Origine + Origine - - Reason - Raison + Raison - - - Comment - Commentaire + Commentaire - IPs - IPs + IPs - IP whitelist - Liste blanche d'IP + Liste blanche d'IP - Manual input - Saisie manuelle + Saisie manuelle - <html><head/><body><p>Enter an IP range. Accepted formats:</p><p>193.190.209.15</p><p>193.190.209.15/24</p><p>193.190.209.15/16</p></body></html> - <html><head/><body><p>Entrer une plage d'IP. Formats accepté:</p><p>193.190.209.15</p><p>193.190.209.15/24</p><p>193.190.209.15/16</p></body></html> + <html><head/><body><p>Entrer une plage d'IP. Formats accepté:</p><p>193.190.209.15</p><p>193.190.209.15/24</p><p>193.190.209.15/16</p></body></html> - <html><head/><body><p>Enter any comment you'd like</p></body></html> - <html><head/><body><p>Entrez n'importe quel commentaire que vous souhaitez</p></body></html> + <html><head/><body><p>Entrez n'importe quel commentaire que vous souhaitez</p></body></html> - Add to blacklist - Ajouter à la liste noire + Ajouter à la liste noire - Add to whitelist - Ajouter en liste blanche + Ajouter en liste blanche - IP Range - Plage d'IP + Plage d'IP - Reported by DHT for IP masquerading - Rapporté par la DHT concernant masquerading d'IP (se fait passer pour). + Rapporté par la DHT concernant masquerading d'IP (se fait passer pour). - Range made from %1 collected addresses - Gamme faite à partir de %1 adresses rassemblées + Gamme faite à partir de %1 adresses rassemblées - - Remove - Enlever + Enlever - - - Added by you - Ajouté par vous + Ajouté par vous - <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - <html><head/><body><p>Les adresses IP de la liste blanche sont rassemblées depuis les sources suivantes : IPs venant à l'intérieur d'un certificat échangé manuellement, gammes IP entrées par vous dans cette fenêtre, ou dans les articles du flux de sécurité.</p><p>Le comportement par défaut de Retroshare est de (1) toujours permettre la connexion aux pairs ayant leur IP dans la liste blanche, même si cette IP est aussi présente dans la liste noire; (2) exiger facultativement que les IPs soient dans la liste blanche. Vous pouvez changer ce comportement pour chaque pair à partir de la fenêtre &quot;Détails&quot de chaque noeud Retroshare. </p></body></html> + <html><head/><body><p>Les adresses IP de la liste blanche sont rassemblées depuis les sources suivantes : IPs venant à l'intérieur d'un certificat échangé manuellement, gammes IP entrées par vous dans cette fenêtre, ou dans les articles du flux de sécurité.</p><p>Le comportement par défaut de Retroshare est de (1) toujours permettre la connexion aux pairs ayant leur IP dans la liste blanche, même si cette IP est aussi présente dans la liste noire; (2) exiger facultativement que les IPs soient dans la liste blanche. Vous pouvez changer ce comportement pour chaque pair à partir de la fenêtre &quot;Détails&quot de chaque noeud Retroshare. </p></body></html> - <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - <html><head/><body><p>La DHT vous permet de répondre aux demandes de connexion de vos amis utilisant la DHT de BitTorrent. Elle améliore grandement la connectivité. Aucune informations ne sont stockées en réalité dans la DHT. Elle est seulement utilisé comme un système de proxy afin de se mettre en contact avec d'autres noeuds Retroshare.</p><p>Le service de Découverte envoie le nom de noeud et les IDs de vos contacts éprouvés à vos pairs connectés, afin de les aider à choisir de nouveaux amis. L'amitié n'est cependant jamais automatique, et deux pairs doivent toujours avoir confiance l'un en l'autre pour permettre la connexion. </p></body></html> + <html><head/><body><p>La DHT vous permet de répondre aux demandes de connexion de vos amis utilisant la DHT de BitTorrent. Elle améliore grandement la connectivité. Aucune informations ne sont stockées en réalité dans la DHT. Elle est seulement utilisé comme un système de proxy afin de se mettre en contact avec d'autres noeuds Retroshare.</p><p>Le service de Découverte envoie le nom de noeud et les IDs de vos contacts éprouvés à vos pairs connectés, afin de les aider à choisir de nouveaux amis. L'amitié n'est cependant jamais automatique, et deux pairs doivent toujours avoir confiance l'un en l'autre pour permettre la connexion. </p></body></html> - <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - <html><head/><body><p>La balle devient verte aussitôt que Retroshare réussit à obtenir votre propre IP depuis les sites Web listés ci-dessous, si vous avez permis cette action. Retroshare utilisera aussi d'autres moyens pour découvrir votre propre IP.</p></body></html> + <html><head/><body><p>La balle devient verte aussitôt que Retroshare réussit à obtenir votre propre IP depuis les sites Web listés ci-dessous, si vous avez permis cette action. Retroshare utilisera aussi d'autres moyens pour découvrir votre propre IP.</p></body></html> - <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - <html><head/><body><p>Cette liste est automatiquement remplie d'informations rassemblées depuis des sources multiples : pairs en mode masquerading rapportés par la DHT, plages IP entrées par vous et plages IP rapportées par vos amis. Les réglages par défaut devraient vous protéger contre le relayage de trafic de grande échelle.</p><p>Devenir automatiquement les IPs employant le masquage peut avoir pour conséquence de placer vos IPs amies dans la liste noire. Dans ce cas, utilisez le menu de contexte afin de les mettre en liste blanche.</p></body></html> + <html><head/><body><p>Cette liste est automatiquement remplie d'informations rassemblées depuis des sources multiples : pairs en mode masquerading rapportés par la DHT, plages IP entrées par vous et plages IP rapportées par vos amis. Les réglages par défaut devraient vous protéger contre le relayage de trafic de grande échelle.</p><p>Devenir automatiquement les IPs employant le masquage peut avoir pour conséquence de placer vos IPs amies dans la liste noire. Dans ce cas, utilisez le menu de contexte afin de les mettre en liste blanche.</p></body></html> - activate IP filtering - Activer le filtrage d'IP + Activer le filtrage d'IP - <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> - <html><head/><body><p>Ceci est très radical, soyez prudent. Sachant que des IPs en masquerading pourraient être des IPs réelles actuelles, cette option pourrait causer la déconnexion, et probablement vous forcer à ajouter dans la liste blanche les IPs de vos amis.</p></body></html> + <html><head/><body><p>Ceci est très radical, soyez prudent. Sachant que des IPs en masquerading pourraient être des IPs réelles actuelles, cette option pourrait causer la déconnexion, et probablement vous forcer à ajouter dans la liste blanche les IPs de vos amis.</p></body></html> - Ban every IP reported by your friends - Interdire chaque IP rapportée par vos amis + Interdire chaque IP rapportée par vos amis - <html><head/><body><p>Another drastic option. If you use it, be prepared to add your friends' IPs into the whitelist when needed.</p></body></html> - <html><head/><body><p>Une autre option radicale. Si vous l'utilisez, soyez préparé à ajouter les IPs de vos amis dans la liste blanche quand cela sera nécessaire.</p></body></html> + <html><head/><body><p>Une autre option radicale. Si vous l'utilisez, soyez préparé à ajouter les IPs de vos amis dans la liste blanche quand cela sera nécessaire.</p></body></html> - Ban every masquerading IP reported by your DHT - Interdire chaque IP en masquerading (càd se faisant passer pour) rapportée par votre DHT + Interdire chaque IP en masquerading (càd se faisant passer pour) rapportée par votre DHT - <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - <html><head/><body><p>Si utilisée seule, cette option vous protège assez bien de masquerading d'IP (usurpation d'IP) à grande échelle.</p></body></html> + <html><head/><body><p>Si utilisée seule, cette option vous protège assez bien de masquerading d'IP (usurpation d'IP) à grande échelle.</p></body></html> - Automatically ban ranges of DHT masquerading IPs starting at - Bannir automatiquement de la DHT les plages auxquelles débutent les IP masquerading + Bannir automatiquement de la DHT les plages auxquelles débutent les IP masquerading - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - <html><head/><body><p>Ce noeud Retroshare fonctionne en "%Mode caché". Cela signifie qu'il peut seulement être atteint à travers le réseau Tor.</p><p>C'est la raison pour laquelle certaines options réseau sont désactivées.</p></body></html> + <html><head/><body><p>Ce noeud Retroshare fonctionne en "%Mode caché". Cela signifie qu'il peut seulement être atteint à travers le réseau Tor.</p><p>C'est la raison pour laquelle certaines options réseau sont désactivées.</p></body></html> - Tor Configuration - Configuration TOR + Configuration TOR - Outgoing Tor Connections - Connections Tor sortantes + Connections Tor sortantes - Tor Socks Proxy - Proxy Socks de Tor + Proxy Socks de Tor - Tor outgoing Okay - Tor sortant OK + Tor sortant OK - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor? - Paramètres par défaut du proxy Socks de Tor : 127.0.01:9050. Paramétrez torrc config, et mettez à jour ici. + Paramètres par défaut du proxy Socks de Tor : 127.0.01:9050. Paramétrez torrc config, et mettez à jour ici. Vous pouvez vous connecter à des noeuds cachés, même si vous êtes en train de faire fonctionner un noeud standard, alors pourquoi ne pas paramétrer Tor ? - Incoming Tor Connections - Connexions Tor entrantes + Connexions Tor entrantes - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - <html><head/><body><p>Ce bouton simule une connexion SSL à votre adresse Tor utilisant le proxy Tor. Si votre noeud Tor est accessible, cela devrait causer une erreur de poignée de main SSL, que RS interprétera comme un état de connexion valable. Cette opération pourrait aussi causer plusieurs "avertissements de sécurité" au sujet de connexions depuis votre adresse locale IP d'hôte (127.0.0.1) dans le "Fil d'actualités" si vous l'avez permis,</p></body></html> + <html><head/><body><p>Ce bouton simule une connexion SSL à votre adresse Tor utilisant le proxy Tor. Si votre noeud Tor est accessible, cela devrait causer une erreur de poignée de main SSL, que RS interprétera comme un état de connexion valable. Cette opération pourrait aussi causer plusieurs "avertissements de sécurité" au sujet de connexions depuis votre adresse locale IP d'hôte (127.0.0.1) dans le "Fil d'actualités" si vous l'avez permis,</p></body></html> - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - <html><head/><body><p>Ceci est votre addresse onion. Elle devrait avoir une apparence de type <span style=" font-weight:600;">[something].onion. </span>Si vous configurez un service caché avec Tor, l'adresse onion est générée automatiquement par Tor. Vous pouvez l'obtenir par exemple dans <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> + <html><head/><body><p>Ceci est votre addresse onion. Elle devrait avoir une apparence de type <span style=" font-weight:600;">[something].onion. </span>Si vous configurez un service caché avec Tor, l'adresse onion est générée automatiquement par Tor. Vous pouvez l'obtenir par exemple dans <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - <html><head/><body><p>Ceci est l'adresse locale vers laquelle pointe le service caché Tor vers votre localhost. La plupart du temps, <span style=" font-weight:600;">127.0.0.1</span> est la bonne réponse.</p></body></html> + <html><head/><body><p>Ceci est l'adresse locale vers laquelle pointe le service caché Tor vers votre localhost. La plupart du temps, <span style=" font-weight:600;">127.0.0.1</span> est la bonne réponse.</p></body></html> - Tor incoming ok - Tor entrant OK + Tor entrant OK - To Receive Connections, you must first setup a Tor Hidden Service. See Tor documentation for HOWTO details. @@ -16094,7 +14928,7 @@ This is your external address on the Tor network. Finally make sure that the Ports match the Tor configuration. If you have issues connecting over Tor check the Tor logs too. - Afin de recevoir des connexions, vous devez d'abord paramétrer un service caché Tor. + Afin de recevoir des connexions, vous devez d'abord paramétrer un service caché Tor. Voyez la documentation de Tor pour des détails sur comment faire. Une fois ceci fait, collez l'adresse Onion dans la boîte ci-dessous. @@ -16104,902 +14938,1039 @@ Finalement assurez-vous que les ports correspondent à la configuration de Tor. Si vous avez des soucis pour vous connecter via Tor, vérifiez aussi les logs de Tor. - Hidden - See Tor Config - Caché - Voir la config de Tor + Caché - Voir la config de Tor - Tor proxy is not enabled - Le proxy de Tor n'est pas activé + Le proxy de Tor n'est pas activé - - You are reachable through Tor. - Vous êtes accessible à travers Tor + Vous êtes accessible à travers Tor - - Tor proxy is not enabled or broken. Are you running a Tor hidden service? Check your ports! - Le proxy Tor n'est pas activé ou est cassé. + Le proxy Tor n'est pas activé ou est cassé. Exécutez-vous un service caché Tor ? Vérifiez vos ports ! + + Network Mode + Mode réseau + + + Nat + + + + Hidden Service Configuration + + + + Outgoing Connections + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + I2P Socks Proxy + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + I2P outgoing Okay + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + Incoming Service Connections + + + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Service Address + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + incoming ok + + + + Expected Configuration: + + + + Please fill in a service address + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + Hidden - See Config + + + + I2P Address + + + + I2P incoming ok + + + + Points at: + + + + Tor incoming ok + + + + incoming ok + + + + I2P proxy is not enabled + + + + You are reachable through the hidden service. + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + ServicePermissionDialog - Service permissions - Service des droits + Service des droits - Service Permissions - Service des droits + Service des droits - Use as direct source, when available - Utiliser en source directe, quand disponible + Utiliser en source directe, quand disponible - Auto-download recommended files - Télécharger automatiquement les fichiers recommandés + Télécharger automatiquement les fichiers recommandés - Require whitelist - Requiert la liste blanche + Requiert la liste blanche ServicePermissionsPage - ServicePermissions - Service des droits + Service des droits - Reset - Réinitialisation + Réinitialisation - Permissions - Droits + Droits - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Les permissions vous permettent de contrôler quels sont les services disponibles selon les amis</p> <p>Chaque interrupteur montre deux lumières, indiquant si vous ou votre ami a activé ce service. Tous deux nécessitent d'être ALLUMÉS (montrant <img height=20 src=":/images/switch11.png"/>) afin de laisser l'information être transférée afin de permettre un service spécifique / combinaison d'ami.</p> <p>Pour chaque service, l'onglet global <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> permet de basculer un service ON/OFF pour tous les amis à la fois.</p> <p>Soyez très prudent : certains services dépendent l'un de l'autre. Par exemple éteindre Turtle va aussi stopper tout le transfert anonyme, le tchat distant, et la messagerie distante.</p> + <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Les permissions vous permettent de contrôler quels sont les services disponibles selon les amis</p> <p>Chaque interrupteur montre deux lumières, indiquant si vous ou votre ami a activé ce service. Tous deux nécessitent d'être ALLUMÉS (montrant <img height=20 src=":/images/switch11.png"/>) afin de laisser l'information être transférée afin de permettre un service spécifique / combinaison d'ami.</p> <p>Pour chaque service, l'onglet global <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> permet de basculer un service ON/OFF pour tous les amis à la fois.</p> <p>Soyez très prudent : certains services dépendent l'un de l'autre. Par exemple éteindre Turtle va aussi stopper tout le transfert anonyme, le tchat distant, et la messagerie distante.</p> - hide offline - cacher ceux hors-ligne + cacher ceux hors-ligne + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + Settings - Options - Options + Options ShareDialog - RetroShare Share Folder - Retroshare Dossier de partage + Retroshare Dossier de partage - - Share Folder - Dossier partagé + Dossier partagé - Local Path - Chemin d'accès local + Chemin d'accès local - Browse - Parcourir + Parcourir - Virtual Folder - Dossier virtuel + Dossier virtuel - Share Flags - Types de partage + Types de partage - Edit Shared Folder - Modifier les dossiers partagés + Modifier les dossiers partagés - Select A Folder To Share - Selectionnez un dossier à partager + Selectionnez un dossier à partager - Share flags and groups: - Partager les drapeaux et les groupes : + Partager les drapeaux et les groupes : ShareKey - check peers you would like to share private publish key with - Visualiser les contacts avec qui vous partagez votre clé de publication privée + Visualiser les contacts avec qui vous partagez votre clé de publication privée - Share for Friend - Partager avec vos amis + Partager avec vos amis - Share - Partager + Partager - You can let your friends know about your Channel by sharing it with them. Select the Friends with which you want to Share your Channel. - Vous pouvez laisser vos amis connaître vos chaînes en les partageant avec eux. + Vous pouvez laisser vos amis connaître vos chaînes en les partageant avec eux. Sélectionnez les amis avec lesquels vous voulez partager votre chaîne. ShareManager - RetroShare Share Manager - Gestionnaire de partages Retroshare + Gestionnaire de partages Retroshare - Shared Folder Manager - Gestionnaire des dossiers partagés + Gestionnaire des dossiers partagés - Directory - Dossier + Dossier - Virtual Folder - Dossier virtuel + Dossier virtuel - Share flags - Types de partage + Types de partage - Groups - Groupes + Groupes - Add a Share Directory - Ajouter un dossier à partager + Ajouter un dossier à partager - Add - Ajouter + Ajouter - Stop sharing selected Directory - Arrêter de partager le dossier selectionné + Arrêter de partager le dossier selectionné - - Remove - Supprimer + Supprimer - Apply and close - Appliquer et fermer + Appliquer et fermer - Edit selected Shared Directory - Modifier les dossiers partagés selectionnés + Modifier les dossiers partagés selectionnés - - Edit - Modifier + Modifier - Share Manager - Gestionnaire de partage + Gestionnaire de partage - Edit Shared Folder - Modifier les dossiers partagés + Modifier les dossiers partagés - Warning! - Attention ! + Attention ! - Do you really want to stop sharing this directory ? - Etes-vous certains de ne plus vouloir partager ce dossier ? + Etes-vous certains de ne plus vouloir partager ce dossier ? - - Drop file error. - Erreur lors de l'ajout du fichier. + Erreur lors de l'ajout du fichier. - File can't be dropped, only directories are accepted. - On ne peut pas déposer un fichier, seuls les dossiers sont acceptés. + On ne peut pas déposer un fichier, seuls les dossiers sont acceptés. - Directory not found or directory name not accepted. - Le dossier n'a pas été trouvé ou le nom du dossier n'est pas accepté. + Le dossier n'a pas été trouvé ou le nom du dossier n'est pas accepté. - This is a list of shared folders. You can add and remove folders using the buttons at the bottom. When you add a new folder, intially all files in that folder are shared. You can separately setup share flags for each shared directory. - Il s'agit d'une liste des dossiers partagés. Vous pouvez ajouter et supprimer des dossiers en utilisant les boutons en bas. Lorsque vous ajoutez un nouveau dossier, initialement tous les fichiers contenus dans ce dossier sont partagés. Vous pouvez configurer séparément le type de partage pour chaque répertoire sélectionné. + Il s'agit d'une liste des dossiers partagés. Vous pouvez ajouter et supprimer des dossiers en utilisant les boutons en bas. Lorsque vous ajoutez un nouveau dossier, initialement tous les fichiers contenus dans ce dossier sont partagés. Vous pouvez configurer séparément le type de partage pour chaque répertoire sélectionné. SharedFilesDialog - Files - Fichiers + Fichiers - Search files - Rechercher des fichiers + Rechercher des fichiers - Start Search - Lancer la recherche + Lancer la recherche - Reset - Réinitialiser + Réinitialiser - Tree view - Affichage en arborescence + Affichage en arborescence - Flat view - Affichage à plat + Affichage à plat - All - Tout + Tout - One day old - Agé d'un jour + Agé d'un jour - One Week old - Agé d'une semaine + Agé d'une semaine - One month old - Agé d'un mois + Agé d'un mois - check files - Vérifier vos fichiers + Vérifier vos fichiers - Download selected - Télécharger la sélection + Télécharger la sélection - Download - Télécharger + Télécharger - Copy retroshare Links to Clipboard - Copier le lien Retroshare + Copier le lien Retroshare - Copy retroshare Links to Clipboard (HTML) - Copier le lien Retroshare dans le presse-papier (HTML) + Copier le lien Retroshare dans le presse-papier (HTML) - Send retroshare Links - Envoyer le lien Retroshare + Envoyer le lien Retroshare - Send retroshare Links to Cloud - Envoyer les liens Retroshare dans le nuage de liens + Envoyer les liens Retroshare dans le nuage de liens - Add Links to Cloud - Ajouter les liens Retroshare dans le nuage de liens + Ajouter les liens Retroshare dans le nuage de liens - RetroShare Link - Lien Retroshare + Lien Retroshare - - Recommendation(s) - Recommandation(s) + Recommandation(s) - Add Share - Ajouter un partage + Ajouter un partage - Create Collection... - Créer une collection ... + Créer une collection ... - Modify Collection... - Modifier collection ... + Modifier collection ... - View Collection... - Vue collection ... + Vue collection ... - Download from collection file... - Télécharger à partir d'un fichier collection... + Télécharger à partir d'un fichier collection... SoundManager - Friend - Ami + Ami - Go Online - Passer en ligne + Passer en ligne - Chatmessage - Message tchat + Message tchat - New Msg - Nouveau msg + Nouveau msg - Message - Message + Message - Message arrived - Message arrivé + Message arrivé - Download - Télécharger + Télécharger - Download complete - Téléchargement terminé + Téléchargement terminé + + + Lobby + SoundPage - Event: - Événement : + Événement : - Filename: - Nom du fichier : + Nom du fichier : - Browse - Parcourir + Parcourir - Event - Événement + Événement - Filename - Nom du fichier + Nom du fichier - Open File - Ouvrir le fichier + Ouvrir le fichier - Sound - Sons + Sons - Default - Par défaut + Par défaut SoundStatus - Sound is off, click to turn it on - Le son est débranché, cliquer pour l'allumer + Le son est débranché, cliquer pour l'allumer - Sound is on, click to turn it off - Le son est branché, cliquer pour l'éteindre + Le son est branché, cliquer pour l'éteindre SplashScreen - Load profile - Chargement du profil + Chargement du profil - Load configuration - Chargement de la configuration + Chargement de la configuration - Create interface - Création de l'interface + Création de l'interface StartDialog - RetroShare - Retroshare + Retroshare - Login - Se connecter + Se connecter - Name (PGP Id) - location: - Nom (ID PGP) - Emplacement : + Nom (ID PGP) - Emplacement : - Remember Password - Se rappeler du mot de passe + Se rappeler du mot de passe - Log In - Se connecter + Se connecter - Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - Ouvre une boite de dialogue permettant de créer un nouveau profil ou + Ouvre une boite de dialogue permettant de créer un nouveau profil ou l'ajout d'un nouvel emplacement à un profil existant. Les identités actuelles/emplacements seront sauvegardés. - Load Person Failure - Echec du chargement de la personne + Echec du chargement de la personne - Missing PGP Certificate - Certificat PGP manquant + Certificat PGP manquant - - - Warning - Attention + Attention - <!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 nodes...</span></a></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:'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;">Gérer les profils et les noeuds ...</span></a></p></body></html> - The password to your SSL certificate (your node) will be stored encrypted in your Gnome Keyring. Your PGP passwd will not be stored. This choice can be reverted in settings. - Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans votre trousseau de clés Gnome. + Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans votre trousseau de clés Gnome. Votre mot de passe PGP ne sera pas stocké. Ce choix peut être inversé dans des paramétrages. - The password to your SSL certificate (your node) will be stored encrypted in your Keychain. Your PGP passwd will not be stored. This choice can be reverted in settings. - Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans votre trousseau de clés. + Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans votre trousseau de clés. Votre mot de passe PGP ne sera pas stocké. Ce choix peut être inversé dans des paramétrages. - The password to your SSL certificate (your node) will be stored encrypted in the keys/help.dta file. This is not secure. Your PGP password will not be stored. This choice can be reverted in settings. - Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans le fichier clés/help.dta. Ceci n'est pas sécurisé. + Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans le fichier clés/help.dta. Ceci n'est pas sécurisé. Votre mot de passe PGP ne sera pas stocké. Ce choix peut être inversé dans des paramétrages. + + StatisticDialog + + Statistics + Statistiques + + + Now + + + + Transfer + + + + Session UL:DL Ratio: + + + + Cumulative UL:DL Ratio + + + + Download + Télécharger + + + Session: + + + + Downloaded: + + + + Count of Downloads: + + + + Overall + Global + + + Upload + + + + Session + + + + Uploaded: + + + + Count of Uploads: + + + + Uploaded + + + + Connections: + + + + Peers: + Contacts : + + + Time Statistics + + + + Uptime + + + + Since: + Statistiques enregistrées depuis : + + + Cumulative + + + + Records + + + + Uploadspeed: + + + + Downloadspeed: + + + + Uptime: + + + + Show Settings + + + + Reset + + + + Receive Rate + Vitesse de réception + + + Send Rate + Vitesse d'émission + + + Always On Top + + + + 100 + 100 + + + % Opaque + % opaque + + + Changes the transparency of the Bandwidth Graph + Modifier la transparence du graphique de bande passande + + + Save + + + + Cancel + Annuler + + + %1 days + + + + Hide Settings + Masquer les options + + StatisticsWindow - Add Friend - Ajouter un ami + Ajouter un ami - Add a Friend Wizard - Assistant pour ajouter un ami + Assistant pour ajouter un ami - Add Share - Ajouter un partage + Ajouter un partage - Options - Options + Options - Messenger - Messager + Messager - About - À propos + À propos - SMPlayer - SMPlayer + SMPlayer - Quit - Quitter + Quitter - - Quick Start Wizard - Assistant de configuration rapide + Assistant de configuration rapide - ServicePermissions - Service des droits + Service des droits - Service permissions matrix - Matrice des autorisations des services + Matrice des autorisations des services - DHT - DHT + DHT - Bandwidth - Bande passante + Bande passante - Turtle Router - Routeur Turtle + Routeur Turtle - Global Router - Routeur global + Routeur global - RTT Statistics - Statistiques RTT + Statistiques RTT StatusDefs - - Offline - Hors ligne + Hors ligne - Away - Absent(e) + Absent(e) - Busy - Occupé(e) + Occupé(e) - Online - En ligne + En ligne - Idle - Inactif + Inactif - Friend is offline - Ami hors ligne + Ami hors ligne - Friend is away - Ami absent + Ami absent - Friend is busy - Ami occupé + Ami occupé - Friend is online - Ami en ligne + Ami en ligne - Friend is idle - Ami inactif + Ami inactif - - Connected - Connecté + Connecté - Unreachable - Indisponible + Indisponible - Available - Disponible + Disponible - Neighbor - Voisinage + Voisinage - - Trying TCP - Tentative TCP + Tentative TCP - - Trying UDP - Tentative UDP + Tentative UDP - Connected: TCP - Connecté : TCP + Connecté : TCP - Connected: UDP - Connecté : UDP + Connecté : UDP - Connected: Unknown - Connecté : Inconnu + Connecté : Inconnu - DHT: Contact - DHT : Connectée + DHT : Connectée - TCP-in - TCP-entrant + TCP-entrant - TCP-out - TCP-sortant + TCP-sortant - inbound connection - connexion entrante + connexion entrante - outbound connection - connexion sortante + connexion sortante - UDP - UDP + UDP - Tor-in - Tor-entrant + Tor-entrant - Tor-out - Tor-sortant + Tor-sortant - unkown - inconnu + inconnu - Connected: Tor - Connecté : Tor + Connecté : Tor + + + Connected: I2P + + + + I2P-in + + + + I2P-out + StatusMessage - Status message - Message d'état + Message d'état - Message: - Message : + Message : - <!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;">Status message</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">Message d'état</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 message</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;"> @@ -17009,686 +15980,535 @@ p, li { white-space: pre-wrap; } StyleDialog - - Define Style - Définir le style + Définir le style - - Choose color - Choix de la couleur + Choix de la couleur - Color 2 - Couleur 2 + Couleur 2 - Color 1 - Couleur 1 + Couleur 1 - Style - Style + Style - None - Aucune + Aucune - Solid - Solide + Solide - Gradient - Dégradé + Dégradé SubFileItem - %p Kb - %p Ko + %p Ko - Cancel Download - Annuler le téléchargement + Annuler le téléchargement - Download File - Télécharger le fichier + Télécharger le fichier - Download - Télécharger + Télécharger - - - Play File - Lecture + Lecture - Play - Lire + Lire - Save File - Enregistrer le fichier + Enregistrer le fichier - - ERROR - ERREUR + ERREUR - EXTRA - EXTRA + EXTRA - REMOTE - DISTANT + DISTANT - DOWNLOAD - TÉLÉCHARGE + TÉLÉCHARGE - LOCAL - LOCAL + LOCAL - UPLOAD - ENVOI + ENVOI - - Remove Attachment - Supprimer la pièce jointe + Supprimer la pièce jointe - File %1 does not exist at location. - Le fichier %1 n'existe pas à cet endroit. + Le fichier %1 n'existe pas à cet endroit. - File %1 is not completed. - Le fichier %1 est incomplet. + Le fichier %1 est incomplet. - Save Channel File - Enregistrer le fichier de la chaîne + Enregistrer le fichier de la chaîne - Open - Ouvrir + Ouvrir - Open File - Ouvrir le fichier + Ouvrir le fichier - Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare SubscribeToolButton - Subscribed - Abonné + Abonné - Unsubscribe - Se désabonner + Se désabonner - Subscribe - S'abonner + S'abonner TBoard - Pause - En pause + En pause TagDefs - Important - Important + Important - Work - Professionnel + Professionnel - Personal - Personnel + Personnel - Todo - À faire + À faire - Later - Plus tard + Plus tard TagsMenu - Remove All Tags - Supprimer tout les mots clés + Supprimer tout les mots clés - New tag ... - Nouveau mot clé... + Nouveau mot clé... ToasterDisable - All Toasters are disabled - Toutes les notifications grille-pain sont empêchées + Toutes les notifications grille-pain sont empêchées - Toasters are enabled - Les notifications grille-pain sont permises + Les notifications grille-pain sont permises TransferPage - Transfer options - Options de transfert + Options de transfert - Maximum simultaneous downloads: - Maximum de téléchargements simultanés : + Maximum de téléchargements simultanés : - Slots reserved for non-cache transfers: - Emplacements réservés pour les transferts non-cache : + Emplacements réservés pour les transferts non-cache : - Default chunk strategy: - Mode de téléchargement : + Mode de téléchargement : - Safety disk space limit : - Limitation de l'espace disque de sécurité : + Limitation de l'espace disque de sécurité : - Streaming - Streaming + Streaming - Progressive - Progressive + Progressive - Random - Aléatoire + Aléatoire - MB - Mo + Mo - <!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 transferring 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;"><br /></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 transferring 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;"><br /></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"> 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;"> est capable de transférer des fichiers et d'effectuer des recherches entre personnes qui ne sont pas amies. Cependant, ce trafic se fait à travers une liste de contacts anonymes.</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;">Vous pouvez paramétrer le type de partage dans la fenêtre de partage de dossier :</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;">Visible par mes amis </span>: les fichiers sont visibles par mes amis.</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;">Partage anonyme </span>: les fichiers sont accessibles anonymement par des tunnels F2F.</li></ul></body></html> - Max. tunnel req. forwarded per second: - Nombre max. de requêtes de tunnels transmises par sec. : + Nombre max. de requêtes de tunnels transmises par sec. : - <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Streaming </span> a pour conséquence que le transfert demande des morceaux de fichier de taille de 1 Mo en ordre croissant, ceci facilitant la prévisualisation lors du téléchargement. <span style=" font-weight:600;">Random</span> est purement aléatoire et favorise le comportement en essaimage. <span style=" font-weight:600;">Progressif</span> est un compromis, choisissant le prochain morceau au hasard dans moins de 50 Mo après la fin du fichier partiel. Cela permet un certain aléatoire tout en empêchant des grands temps d'initialisation de fichiers vides.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Streaming </span> a pour conséquence que le transfert demande des morceaux de fichier de taille de 1 Mo en ordre croissant, ceci facilitant la prévisualisation lors du téléchargement. <span style=" font-weight:600;">Random</span> est purement aléatoire et favorise le comportement en essaimage. <span style=" font-weight:600;">Progressif</span> est un compromis, choisissant le prochain morceau au hasard dans moins de 50 Mo après la fin du fichier partiel. Cela permet un certain aléatoire tout en empêchant des grands temps d'initialisation de fichiers vides.</p></body></html> - <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> - <html><head/><body><p>Retroshare suspendra tous les transferts et la sauvegarde de fichier de configuration si l'espace disque descend en dessous de cette limite. Cela empêche la perte d'informations sur certains systèmes. Une fenêtre contextuelle vous avertira si cela arrive.</p></body></html> + <html><head/><body><p>Retroshare suspendra tous les transferts et la sauvegarde de fichier de configuration si l'espace disque descend en dessous de cette limite. Cela empêche la perte d'informations sur certains systèmes. Une fenêtre contextuelle vous avertira si cela arrive.</p></body></html> - <html><head/><body><p>This value controls how many tunnel request your peer can forward per second. </p><p>If you have a large internet bandwidth, you may raise this up to 30-40, to allow statistically longer tunnels to pass. Be very careful though, since this generates many small packets that can significantly slow down your own file transfer. </p><p>The default value is 20. If you're not sure, keep it that way.</p></body></html> - <html><head/><body><p>Cette valeur contrôle le nombre de requêtes de tunnels que votre pair peut transmettre par seconde. </p><p> Si vous avez une grande bande passante, vous pouvez l'augmenter jusqu'à 30-40, pour permettre statistiquement aux tunnels plus long de passer. Soyez très prudent cependant, car cela génère de nombreux petits paquets qui peuvent considérablement ralentir le transfert de vos propres fichiers. </p><p>La valeur par défaut est de 20. Si vous n'êtes pas certain, gardez là ainsi.</p></body></html> + <html><head/><body><p>Cette valeur contrôle le nombre de requêtes de tunnels que votre pair peut transmettre par seconde. </p><p> Si vous avez une grande bande passante, vous pouvez l'augmenter jusqu'à 30-40, pour permettre statistiquement aux tunnels plus long de passer. Soyez très prudent cependant, car cela génère de nombreux petits paquets qui peuvent considérablement ralentir le transfert de vos propres fichiers. </p><p>La valeur par défaut est de 20. Si vous n'êtes pas certain, gardez là ainsi.</p></body></html> - File transfer - Transfert de fichier + Transfert de fichier - <html><head/><body><p>You can use this to force RetroShare to download your files rather <br/>than cache files for as many slots as requested. Setting that number <br/>to be equal to the queue size above will always prioritize your files<br/>over cache. <br/><br/>It is however recommended to leave at least a few slots for cache files. For now, cache files are only used to transfer friend file lists.</p></body></html> - <html><head/><body><p>Vous pouvez utiliser cela pour forcer Retroshare à télécharger vos fichiers, plutôt <br/>que les fichiers caches, pour autant d'emplacements que nécessaire. Paramétrer ce nombre <br/>afin qu'il soit égal à la taille de queue ci-dessus aura pour conséquence de toujours passer en priorité vos fichiers<br/> par rapport au cache. <br/><br/>Il est cependant recommandé de laisser au moins quelques emplacements pour les fichiers caches. Pour l'instant, les fichiers cache sont encore utilisés pour transférer les listes de fichiers des amis.</p></body></html> + <html><head/><body><p>Vous pouvez utiliser cela pour forcer Retroshare à télécharger vos fichiers, plutôt <br/>que les fichiers caches, pour autant d'emplacements que nécessaire. Paramétrer ce nombre <br/>afin qu'il soit égal à la taille de queue ci-dessus aura pour conséquence de toujours passer en priorité vos fichiers<br/> par rapport au cache. <br/><br/>Il est cependant recommandé de laisser au moins quelques emplacements pour les fichiers caches. Pour l'instant, les fichiers cache sont encore utilisés pour transférer les listes de fichiers des amis.</p></body></html> TransferUserNotify - Download completed - Téléchargement terminé + Téléchargement terminé - You have %1 completed downloads - Vous avez %1 téléchargements terminés + Vous avez %1 téléchargements terminés - You have %1 completed download - Vous avez %1 téléchargement terminé + Vous avez %1 téléchargement terminé - %1 completed downloads - %1 téléchargements terminés + %1 téléchargements terminés - %1 completed download - %1 téléchargement terminé + %1 téléchargement terminé TransfersDialog - Downloads - Téléchargements + Téléchargements - Uploads - Envois + Envois - - Name i.e: file name - Nom + Nom - - Size i.e: file size - Taille + Taille - - Completed - Terminé + Terminé - Speed i.e: Download speed - Vitesse + Vitesse - Progress / Availability i.e: % downloaded - Progression / Disponibilité + Progression / Disponibilité - Sources i.e: Sources - Sources + Sources - - - Status - Statut + Statut - - Speed / Queue position - Vitesse / Position + Vitesse / Position - - Remaining - Restant + Restant - Download time i.e: Estimated Time of Arrival / Time left - Temps restant estimé + Temps restant estimé - Peer i.e: user name - Contact + Contact - Progress i.e: % uploaded - Progression + Progression - Speed i.e: upload speed - Vitesse + Vitesse - Transferred - Transféré + Transféré - - - Hash - Hash + Hash - Search - Rechercher + Rechercher - Friends files - Fichiers de vos amis + Fichiers de vos amis - My files - Vos fichiers + Vos fichiers - Download from collection file... - Télécharger à partir d'un fichier collection... + Télécharger à partir d'un fichier collection... - Pause - Mettre en pause + Mettre en pause - Resume - Reprendre + Reprendre - Force Check - Forcer la vérification + Forcer la vérification - Cancel - Annuler + Annuler - - Open Folder - Ouvrir le dossier de destination + Ouvrir le dossier de destination - Open File - Ouvrir le fichier + Ouvrir le fichier - Preview File - Prévisualiser + Prévisualiser - Details... - Détails... + Détails... - Clear Completed - Effacer les fichiers terminés de la liste + Effacer les fichiers terminés de la liste - - Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare - Paste RetroShare Link - Coller le lien Retroshare + Coller le lien Retroshare - Down - Descendre + Descendre - Up - Monter + Monter - Top - En haut + En haut - Bottom - En bas + En bas - Streaming - Streaming + Streaming - - Slower - Basse + Basse - - - Average - Normale + Normale - - Faster - Rapide + Rapide - Random - Aléatoire + Aléatoire - Progressive - Progressive + Progressive - Play - Lecture + Lecture - Rename file... - Renommer le fichier... + Renommer le fichier... - Specify... - Spécifier... + Spécifier... - Move in Queue... - Mettre en file d'attente... + Mettre en file d'attente... - Priority (Speed)... - Priorité (vitesse)... + Priorité (vitesse)... - Chunk strategy - Méthode de téléchargement + Méthode de téléchargement - Set destination directory - Spécifier le dossier de destination + Spécifier le dossier de destination - Choose directory - Choisir le répertoire + Choisir le répertoire - - - Failed - Echoué + Echoué - - - Okay - OK + OK - - Waiting - En attente + En attente - Downloading - Téléchargement en cours + Téléchargement en cours - - - - Complete - Terminé + Terminé - Queued - En file d'attente + En file d'attente - Paused - En pause + En pause - Checking... - Vérification en cours... + Vérification en cours... - Unknown - Inconnu + Inconnu - If the hash of the downloaded data does not correspond to the hash announced by the file source. The data is likely @@ -17699,7 +16519,7 @@ map of the data; it will compare and invalidate bad blocks, and download them again Try to be patient! - Si la valeur de hachage des données téléchargées + Si la valeur de hachage des données téléchargées ne correspond pas à la valeur de hachage annoncé par la source du fichier. Les données sont susceptibles d'être corrompues. @@ -17711,1274 +16531,1097 @@ les blocs défectueux, et de les télécharger à nouveau Essayez d'être patient ! - Transferring - En cours de transfert + En cours de transfert - Uploading - En cours d'envoi + En cours d'envoi - Are you sure that you want to cancel and delete these files? - Etes-vous sûr de vouloir annuler et supprimer ces fichiers ? + Etes-vous sûr de vouloir annuler et supprimer ces fichiers ? - RetroShare - Retroshare + Retroshare - - - - File preview - Prévisualiser + Prévisualiser - Can't create link for file %1. - Impossible de créer le lien pour le fichier %1. + Impossible de créer le lien pour le fichier %1. - File %1 preview failed. - La prévisualisation du fichier %1 a échoué. + La prévisualisation du fichier %1 a échoué. - Click OK when program terminates! - Cliquez sur OK lorsque le programme s'arrête ! + Cliquez sur OK lorsque le programme s'arrête ! - Open Transfer - Ouvrir le transfert + Ouvrir le transfert - File %1 is not completed. If it is a media file, try to preview it. - Le fichier %1 n'est pas terminé. Si c'est un fichier multimédia, essayez de le prévisualiser. + Le fichier %1 n'est pas terminé. Si c'est un fichier multimédia, essayez de le prévisualiser. - Change file name - Changer le nom du fichier + Changer le nom du fichier - Please enter a new file name - S'il vous plaît entrez le nouveau nom du fichier + S'il vous plaît entrez le nouveau nom du fichier - Please enter a new--and valid--filename - S'il vous plaît entrez un nouveau--et valide--nomdefichier + S'il vous plaît entrez un nouveau--et valide--nomdefichier - Last Time Seen i.e: Last Time Receiced Data - Dernière fois vu + Dernière fois vu - UserID - ID de l'utilisateur + ID de l'utilisateur - Expand all - Tout déplier + Tout déplier - Collapse all - Tout replier + Tout replier - Size - Taille + Taille - Show Size Column - Afficher la colonne des tailles + Afficher la colonne des tailles - Show Completed Column - Afficher la colonne des terminés + Afficher la colonne des terminés - Speed - Vitesse + Vitesse - Show Speed Column - Afficher la colonne des vitesses + Afficher la colonne des vitesses - Progress / Availability - Progression / Disponibilité + Progression / Disponibilité - Show Progress / Availability Column - Afficher la colonne de la progression / disponibilité + Afficher la colonne de la progression / disponibilité - Sources - Sources + Sources - Show Sources Column - Afficher la colonne des sources + Afficher la colonne des sources - Show Status Column - Afficher la colonne des états + Afficher la colonne des états - Show Speed / Queue position Column - Afficher la colonne de la Vitesse / Position + Afficher la colonne de la Vitesse / Position - Show Remaining Column - Afficher la colonne des restants + Afficher la colonne des restants - Download time - Temps restant estimé + Temps restant estimé - Show Download time Column - Afficher la colonne du temps de téléchargement + Afficher la colonne du temps de téléchargement - Show Hash Column - Afficher la colonne des Hashs + Afficher la colonne des Hashs - Last Time Seen - Dernière fois vu + Dernière fois vu - Show Last Time Seen Column - Afficher la colonne des derniers vus + Afficher la colonne des derniers vus - Columns - Colonnes + Colonnes - File Transfers - Transferts de fichiers + Transferts de fichiers - Path i.e: Where file is saved - Chemin + Chemin - Path - Chemin + Chemin - Show Path Column - Afficher la colonne des chemins + Afficher la colonne des chemins - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Partage de fichiers</h1> <p>Retroshare utilise deux modes de transfert de fichiers : les transferts directs depuis vos amis, et les transferts distants anonymes par tunnels. En plus, le transfert de fichier est multi-source et permet l'essaimage (vous pouvez être une source pendant le téléchargement) </p> <p>Vous pouvez partager des fichiers en utilisant <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> l'icône dans la barre latérale gauche. Ces fichiers seront listés dans l'onglet Vos fichiers. Vous pouvez décider pour chaque groupe d'ami s'ils peuvent ou pas voir ces fichiers dans l'onglet Mes amis</p> <p>L'onglet recherche des fichiers liste les fichiers de vos amis et des fichiers distants qui peuvent être atteints anonymement en utilisant le système à effet tunnel à sauts multiples.</p> + <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Partage de fichiers</h1> <p>Retroshare utilise deux modes de transfert de fichiers : les transferts directs depuis vos amis, et les transferts distants anonymes par tunnels. En plus, le transfert de fichier est multi-source et permet l'essaimage (vous pouvez être une source pendant le téléchargement) </p> <p>Vous pouvez partager des fichiers en utilisant <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> l'icône dans la barre latérale gauche. Ces fichiers seront listés dans l'onglet Vos fichiers. Vous pouvez décider pour chaque groupe d'ami s'ils peuvent ou pas voir ces fichiers dans l'onglet Mes amis</p> <p>L'onglet recherche des fichiers liste les fichiers de vos amis et des fichiers distants qui peuvent être atteints anonymement en utilisant le système à effet tunnel à sauts multiples.</p> - Could not delete preview file - N'a pas pu supprimer le fichier d'aperçu + N'a pas pu supprimer le fichier d'aperçu - Try it again? - Le réessayer ? + Le réessayer ? - Create Collection... - Créer une collection ... + Créer une collection ... - Modify Collection... - Modifier collection ... + Modifier collection ... - View Collection... - Vue collection ... + Vue collection ... - Collection - Collection + Collection - File sharing - Partage de fichiers + Partage de fichiers - Anonymous tunnel 0x - Tunnels anonymes 0x + Tunnels anonymes 0x - Show file list transfers - Afficher les transferts de listes de fichiers + Afficher les transferts de listes de fichiers - version: - version : + version : + + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + TreeStyle_RDM - - My files - Vos fichiers + Vos fichiers - - FILE - FICHIER + FICHIER - Files - Fichiers + Fichiers - File - Fichier + Fichier - - DIR - REP + REP - Friends Directories - Dossiers partagés de vos amis + Dossiers partagés de vos amis - My Directories - Vos dossiers + Vos dossiers - Size - Taille + Taille - Age - Ancienneté + Ancienneté - Friend - Ami + Ami - Share Flags - Type de partage + Type de partage - What's new - Quoi de neuf + Quoi de neuf - Groups - Groupes + Groupes + + + + TrustView + + Zoom : + + + + Update + + + + Showing: whole network + + + + This table normally auto-updates every 10 seconds. + + + + Self + + + + Trust + + + + is authenticated (one way) by + + + + Half + + + + authenticated himself + + + + and + et + + + authenticated each other + + + + Full + Totale + + + is authenticated by + + + + peers, including him(her)self. + + + + authenticated + + + + Showing: peers connected to + TurtleRouterDialog - - Search requests - Requêtes de recherche + Requêtes de recherche - - Tunnel requests - Requêtes de tunnel + Requêtes de tunnel - - - - - Unknown hashes - Hashs inconnus + Hashs inconnus - Tunnel id - ID du tunnel + ID du tunnel - last transfer - dernier transfert + dernier transfert - Speed - Vitesse + Vitesse - - Request id: %1 from [%2] %3 secs ago - Demande d'Id : %1 de [%2] il y a %3 secs + Demande d'Id : %1 de [%2] il y a %3 secs TurtleRouterDialogForm - Router Statistics - Statistiques de routage + Statistiques de routage - F2F router information - Information de routage F2F + Information de routage F2F TurtleRouterStatistics - Router Statistics - Statistiques de routage + Statistiques de routage - Age in seconds - Ancienneté en secondes + Ancienneté en secondes - Depth - Profondeur + Profondeur - total - total + total - Unknown Peer - Contact inconnu + Contact inconnu - Turtle Router - Routeur Turtle + Routeur Turtle - Tunnel Requests - Requêtes tunnels + Requêtes tunnels + + + Anonymous tunnels + + + + Authenticated tunnels + TurtleRouterStatisticsWidget - Search requests repartition - Répartition des requêtes de recherche + Répartition des requêtes de recherche - Tunnel requests repartition - Répartition des requêtes de tunnel + Répartition des requêtes de tunnel - Turtle router traffic - Trafic de Routage Turtle + Trafic de Routage Turtle - Tunnel requests Up - Requêtes de Tunnel (envoi) + Requêtes de Tunnel (envoi) - Tunnel requests Dn - Requêtes de Tunnel (réception) + Requêtes de Tunnel (réception) - Incoming file data - Données entrantes + Données entrantes - Outgoing file data - Données sortantes + Données sortantes - TR Forward probabilities - probabilités de TR Forward + probabilités de TR Forward - Forwarded data - Données transmises + Données transmises UIStateHelper - - - - - Loading - Chargement + Chargement ULListDelegate - B - O + O - KB - Ko + Ko - MB - Mo + Mo - GB - Go + Go UserNotify - You have %1 new messages - Vous avez %1 nouveaux messages + Vous avez %1 nouveaux messages - You have %1 new message - Vous avez %1 nouveau message + Vous avez %1 nouveau message - %1 new messages - %1 nouveaux messages + %1 nouveaux messages - %1 new message - %1 nouveau message + %1 nouveau message VMessageBox - OK - OK + OK - Cancel - Annuler + Annuler - Yes - Oui + Oui - No - Non + Non - Help - Aide + Aide - Retry - Réessayer + Réessayer - Show Log - Afficher le log + Afficher le log - Show Settings - Afficher les paramètres + Afficher les paramètres - Continue - Continuer + Continuer - Quit - Quitter + Quitter - Browse - Parcourir + Parcourir WebuiPage - Form - Formulaire + Formulaire - Enable Retroshare WEB Interface - Activer l'interface WEB de Retroshare + Activer l'interface WEB de Retroshare - Web parameters - Paramètres web + Paramètres web - Port : - Port : + Port : - allow access from all IP adresses (Default: localhost only) - permettre l'accès depuis toutes les adresses IP (par défaut: seulement l’hôte local) + permettre l'accès depuis toutes les adresses IP (par défaut: seulement l’hôte local) - apply setting and start browser - Appliquer le réglage et démarrer le navigateur + Appliquer le réglage et démarrer le navigateur - Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. - Remarque : ces paramètres n'affectent pas retroshare-nogui. Retroshare-nogui dispose d'un commutateur en ligne de commande permettant d'activer l'interface web. + Remarque : ces paramètres n'affectent pas retroshare-nogui. Retroshare-nogui dispose d'un commutateur en ligne de commande permettant d'activer l'interface web. - Webinterface not enabled - Interface web non permise + Interface web non permise - failed to start Webinterface - échec de lancement de l'interface web + échec de lancement de l'interface web - Webinterface - Interface web + Interface web - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Interrface WEB</h1> <p>L'interface web permet de contrôler Retroshare à partir du navigateur. Plusieurs périphériques peuvent partager le contrôle sur une instance Retroshare. Donc, vous pourriez commencer une conversation sur une tablette et utiliser plus tard un ordinateur de bureau pour continuer.</p> <p>Attention: ne pas exposer l'interface web à l'Internet, car il n'y a pas de contrôle d'accès et aucun chiffrement. Si vous voulez utiliser l'interface web sur Internet, utiliser un tunnel SSH ou un proxy pour sécuriser la connexion.</p> + <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Interrface WEB</h1> <p>L'interface web permet de contrôler Retroshare à partir du navigateur. Plusieurs périphériques peuvent partager le contrôle sur une instance Retroshare. Donc, vous pourriez commencer une conversation sur une tablette et utiliser plus tard un ordinateur de bureau pour continuer.</p> <p>Attention: ne pas exposer l'interface web à l'Internet, car il n'y a pas de contrôle d'accès et aucun chiffrement. Si vous voulez utiliser l'interface web sur Internet, utiliser un tunnel SSH ou un proxy pour sécuriser la connexion.</p> + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + WikiAddDialog - Basic Details - Détails de base + Détails de base - Group Name: - Nom du groupe : + Nom du groupe : - Category: - Catégorie : + Catégorie : - Travel - Voyage + Voyage - Holiday - Vacance + Vacance - Friends - Amis + Amis - - Family - Famille + Famille - Work - Professionnel + Professionnel - Random - Aléatoire + Aléatoire - Description: - Description : + Description : - Share Options - Options de partage + Options de partage - Public - Public + Public - All Friends - Tous les amis + Tous les amis - Restricted - Limité + Limité - N/A - N/A + N/A - University Friends - Amis d'université + Amis d'université - This List Contains - Cette liste comprend + Cette liste comprend - All your Groups - Tous vos groupes + Tous vos groupes - No Comments Allowed - Aucun commentaire admis + Aucun commentaire admis - Authenticated Comments - Commentaires authentifiés + Commentaires authentifiés - Any Comments Allowed - Aucun commentaire admis + Aucun commentaire admis - Publish with XXX Key - Publier avec la clé XXX + Publier avec la clé XXX - Cancel - Annuler + Annuler - Create Group - Créer un groupe + Créer un groupe WikiDialog - - Wiki Pages - Pages Wiki + Pages Wiki - New Group - Nouveau groupe + Nouveau groupe - Page Name - Nom de la page + Nom de la page - Page Id - ID de la page + ID de la page - Orig Id - Id d'origine + Id d'origine - << - << + << - >> - >> + >> - Republish - Re-publier + Re-publier - Edit - Modifier + Modifier - New Page - Nouvelle page + Nouvelle page - Refresh - Rafraîchir + Rafraîchir - Search - Rechercher + Rechercher - My Groups - Vos groupes + Vos groupes - Subscribed Groups - Groupes abonnés + Groupes abonnés - Popular Groups - Groupes populaires + Groupes populaires - Other Groups - Autres groupes + Autres groupes - Subscribe to Group - S'abonner au groupe + S'abonner au groupe - Unsubscribe to Group - Se désabonner du groupe + Se désabonner du groupe - Todo - À faire + À faire - Show Wiki Group - Afficher groupe Wiki + Afficher groupe Wiki - Edit Wiki Group - Modifier le groupe Wiki + Modifier le groupe Wiki WikiEditDialog - Page Edit History - Historique des modifications de la page + Historique des modifications de la page - Enable Obsolete Edits - Autoriser les modifications obsolètes + Autoriser les modifications obsolètes - Choose for Merge - Choisir pour merger + Choisir pour merger - Merge for Republish (TODO) - Merger pour re-publier (TODO) + Merger pour re-publier (TODO) - Publish Date - Date de publication + Date de publication - By - Par + Par - PageId - PageId + PageId - \/ - \/ + \/ - /\ - /\ + /\ - Wiki Group: - Groupe Wiki : + Groupe Wiki : - Page Name: - Nom de la page : + Nom de la page : - Previous Version - Version précédente + Version précédente - Tags - Mots clés + Mots clés - - - Show Edit History - Afficher l'historique des modifications + Afficher l'historique des modifications - Status - Statut + Statut - - Preview - Aperçu + Aperçu - Cancel - Annuler + Annuler - Revert - Revenir + Revenir - Submit - Soumettre + Soumettre - Hide Edit History - Masquer l'historique des modifications + Masquer l'historique des modifications - Edit Page - Modifier la page + Modifier la page - - Create New Wiki Page - Créer une nouvelle Page Wiki + Créer une nouvelle Page Wiki - Republish - Re-publier + Re-publier - - Edit Wiki Page - Modifier la Page Wiki + Modifier la Page Wiki WikiGroupDialog - Create New Wiki Group - Créer un nouveau Groupe Wiki + Créer un nouveau Groupe Wiki - Wiki Group - Groupe Wiki + Groupe Wiki - Edit Wiki Group - Modifier le Groupe Wiki + Modifier le Groupe Wiki - Add Wiki Moderators - Ajouter des modérateurs du Wiki + Ajouter des modérateurs du Wiki - Select Wiki Moderators - Selectionner des modérateurs du Wiki + Selectionner des modérateurs du Wiki - Create Group - Créer un groupe + Créer un groupe - Update Group - Mettre à jour le groupe + Mettre à jour le groupe WireDialog - TimeRange - TimeRange + TimeRange - - All - Tout + Tout - Last Month - Mois dernier + Mois dernier - Last Week - Semaine dernière + Semaine dernière - Today - Aujourd'hui + Aujourd'hui - New - Nouveau + Nouveau - from - De + De - until - jusqu'à + jusqu'à - Search/Filter - Rechercher/Filtrer + Rechercher/Filtrer - Network Wide - Tout le réseau + Tout le réseau - Manage Accounts - Gestionnaire de comptes + Gestionnaire de comptes - Showing: - Affichage : + Affichage : - Yourself - Moi + Moi - Friends - Amis + Amis - Following - Following + Following - Custom - Personnalisé + Personnalisé - Account 1 - Compte 1 + Compte 1 - Account 2 - Compte 2 + Compte 2 - Account 3 - Compte 3 + Compte 3 - - - - - CheckBox - CheckBox + CheckBox - Post Pulse to Wire - Publier Pulse sur Wire + Publier Pulse sur Wire misc - Unknown Unknown (size) - Inconnue + Inconnue - B bytes - O + O - KB kilobytes (1024 bytes) - Ko + Ko - MB megabytes (1024 kilobytes) - Mo + Mo - GB gigabytes (1024 megabytes) - Go + Go - TB, terabytes (1024 gigabytes) - To, + To, - TB terabytes (1024 gigabytes) - To + To - Unknown - Inconnu + Inconnu - < 1m < 1 minute - < 1m + < 1m - %1 minutes e.g: 10minutes - %1 minutes + %1 minutes - %1h %2m e.g: 3hours 5minutes - %1h %2m + %1h %2m - %1d %2h e.g: 2days 10hours - %1d %2h + %1d %2h - %1y %2d e.g: 2 years 2days - %1a %2j + %1a %2j - k e.g: 3.1 k - k + k - M e.g: 3.1 M - M + M - G e.g: 3.1 G - G + G - T e.g: 3.1 T - T + T - Load avatar image - Ajouter votre image d'avatar + Ajouter votre image d'avatar - Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - Images (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Images (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - \ No newline at end of file + From 464e89b7668ea89d82ab50876522bab51221248f Mon Sep 17 00:00:00 2001 From: csoler Date: Tue, 2 Feb 2016 23:13:07 -0500 Subject: [PATCH 11/23] updated french translation (unfinished) --- retroshare-gui/src/lang/retroshare_fr.qm | Bin 570697 -> 506274 bytes retroshare-gui/src/lang/retroshare_fr.ts | 20 ++++++++++---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/retroshare-gui/src/lang/retroshare_fr.qm b/retroshare-gui/src/lang/retroshare_fr.qm index aa4ff5ca3a11d63c23b918747268933b715fb0a0..4de39586067b5369ef3b6f6481255ee2c706fc57 100644 GIT binary patch delta 40954 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 F{|lE5y>I{k delta 67827 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

}sy7`HF9FRT__1Ee|ps{ZaX6(>k$E$$yl>Vl9 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 diff --git a/retroshare-gui/src/lang/retroshare_fr.ts b/retroshare-gui/src/lang/retroshare_fr.ts index df49ae28d..b0849dc1b 100644 --- a/retroshare-gui/src/lang/retroshare_fr.ts +++ b/retroshare-gui/src/lang/retroshare_fr.ts @@ -2626,7 +2626,7 @@ contact même si vous n'êtes pas amis. Enter the certificate manually - + Echanger manuellement des certificats Enter RetroShare ID manually @@ -2634,7 +2634,7 @@ contact même si vous n'êtes pas amis. &Send an Invitation by Web Mail Providers - + &Invitation par Web Mail &Send an Invitation by Email @@ -2643,19 +2643,19 @@ contact même si vous n'êtes pas amis. Recommend many friends to each other - + Recommender des noeud voisins entre eux The text below is your Retroshare certificate. You have to provide it to your friend - + Ceci est votre certificat Retroshare. Vous devez fournir celui de votre futur ami Please, paste your friend's Retroshare certificate into the box below - + Collez ici le certificat de votre futur ami <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> - + <html><head/><body><p>Cet emplacement attend un certificat Retroshare. ATTENTION: ce n'est pas la même chose qu'une clé PGP. N'essayez pas d'introduire une clé PGP ou une partie d"une clé PGP ici: cela ne marchera pas.</p></body></html> RetroShare is better with Friends @@ -2663,7 +2663,7 @@ contact même si vous n'êtes pas amis. Invite your Friends from other Networks to RetroShare. - + QS GMail @@ -2696,15 +2696,15 @@ contact même si vous n'êtes pas amis. Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - + Notew bien que Retroshare va consommer d'autant plus de bande passante et de CPU que vous aurez d'amis. Sur une connexion ADSL avoir plus de 30-40 amis risque de laisser trop peu de bande passante pour chacun d'entre eux IP-Addr: - + Adresse IP IP-Address - + Adresse IP From 48d7c576622a03c857499b8ea318fa5534ef5164 Mon Sep 17 00:00:00 2001 From: Phenom Date: Sat, 30 Jan 2016 23:34:42 +0100 Subject: [PATCH 12/23] Save last state of OpMode status bar droplist and restore it at start. --- retroshare-gui/src/gui/statusbar/OpModeStatus.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp b/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp index 96934c5bf..260c1a0c9 100644 --- a/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp +++ b/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp @@ -23,7 +23,10 @@ #include #include "gui/statusbar/OpModeStatus.h" +#include "gui/settings/rsharesettings.h" + #include + #include OpModeStatus::OpModeStatus(QWidget *parent) @@ -37,6 +40,8 @@ OpModeStatus::OpModeStatus(QWidget *parent) connect(this, SIGNAL(activated( int )), this, SLOT(setOpMode())); + setCurrentIndex(Settings->valueFromGroup("StatusBar", "OpMode", QVariant(0)).toInt()); + setOpMode(); setToolTip(tr("Use this DropList to quickly change Retroshare's behaviour\n No Anon D/L: switches off file forwarding\n Gaming Mode: 25% standard traffic and TODO: reduced popups\n Low Traffic: 10% standard traffic and TODO: pauses all file-transfers")); setFocusPolicy(Qt::ClickFocus); @@ -77,6 +82,7 @@ void OpModeStatus::setOpMode() // reload to be safe. getOpMode(); + Settings->setValueToGroup("StatusBar", "OpMode", idx); } From 1843a5460d7fba276378e9e866a5f0228d056b64 Mon Sep 17 00:00:00 2001 From: Phenom Date: Wed, 3 Feb 2016 14:02:19 +0100 Subject: [PATCH 13/23] Add colored style sheet to OpModeStatus ComboBox. --- .../src/gui/qss/stylesheet/Standard.qss | 20 +++++ .../src/gui/statusbar/OpModeStatus.cpp | 83 ++++++++++++++++--- .../src/gui/statusbar/OpModeStatus.h | 23 ++++- retroshare-gui/src/qss/blacknight.qss | 20 +++++ retroshare-gui/src/qss/blue.qss | 20 +++++ retroshare-gui/src/qss/groove.qss | 20 +++++ retroshare-gui/src/qss/orangesurfer.qss | 20 +++++ retroshare-gui/src/qss/qdarkstyle.qss | 22 ++++- retroshare-gui/src/qss/qlive.qss | 19 +++++ retroshare-gui/src/qss/redscorpion.qss | 20 +++++ retroshare-gui/src/qss/silver.qss | 20 +++++ retroshare-gui/src/qss/silvergrey.qss | 20 +++++ retroshare-gui/src/qss/uus.qss | 22 ++++- retroshare-gui/src/qss/wx.qss | 20 +++++ retroshare-gui/src/qss/yaba.qss | 20 +++++ retroshare-gui/src/qss/yeah.qss | 20 +++++ 16 files changed, 376 insertions(+), 13 deletions(-) diff --git a/retroshare-gui/src/gui/qss/stylesheet/Standard.qss b/retroshare-gui/src/gui/qss/stylesheet/Standard.qss index 645fb9702..05a9b6e94 100644 --- a/retroshare-gui/src/gui/qss/stylesheet/Standard.qss +++ b/retroshare-gui/src/gui/qss/stylesheet/Standard.qss @@ -661,3 +661,23 @@ IdEditDialog QLabel#info_label background: #FFFFD7; background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2); } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp b/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp index 260c1a0c9..e7f7eab13 100644 --- a/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp +++ b/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp @@ -15,7 +15,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. ****************************************************************/ @@ -30,13 +30,18 @@ #include OpModeStatus::OpModeStatus(QWidget *parent) - : QComboBox(parent) + : QComboBox(parent) { + onUpdate = false; /* add the options */ addItem(tr("Normal Mode"), RS_OPMODE_FULL); + setItemData(0, opMode_Full_Color, Qt::BackgroundRole); addItem(tr("No Anon D/L"), RS_OPMODE_NOTURTLE); + setItemData(1, opMode_NoTurtle_Color, Qt::BackgroundRole); addItem(tr("Gaming Mode"), RS_OPMODE_GAMING); + setItemData(2, opMode_Gaming_Color, Qt::BackgroundRole); addItem(tr("Low Traffic"), RS_OPMODE_MINIMAL); + setItemData(3, opMode_Minimal_Color, Qt::BackgroundRole); connect(this, SIGNAL(activated( int )), this, SLOT(setOpMode())); @@ -47,7 +52,6 @@ OpModeStatus::OpModeStatus(QWidget *parent) setFocusPolicy(Qt::ClickFocus); } - void OpModeStatus::getOpMode() { int opMode = rsConfig->getOperatingMode(); @@ -56,17 +60,26 @@ void OpModeStatus::getOpMode() default: case RS_OPMODE_FULL: setCurrentIndex(0); - break; + setProperty("opMode", "Full"); + break; case RS_OPMODE_NOTURTLE: setCurrentIndex(1); - break; + setProperty("opMode", "NoTurtle"); + break; case RS_OPMODE_GAMING: setCurrentIndex(2); - break; + setProperty("opMode", "Gaming"); + break; case RS_OPMODE_MINIMAL: setCurrentIndex(3); - break; + setProperty("opMode", "Minimal"); + break; } + onUpdate = true; + style()->unpolish(this); + style()->polish(this); + update(); + onUpdate = false; } void OpModeStatus::setOpMode() @@ -74,9 +87,9 @@ void OpModeStatus::setOpMode() std::cerr << "OpModeStatus::setOpMode()"; std::cerr << std::endl; - int idx = currentIndex(); - QVariant var = itemData(idx); - uint32_t opMode = var.toUInt(); + int idx = currentIndex(); + QVariant var = itemData(idx); + uint32_t opMode = var.toUInt(); rsConfig->setOperatingMode(opMode); @@ -85,4 +98,54 @@ void OpModeStatus::setOpMode() Settings->setValueToGroup("StatusBar", "OpMode", idx); } +QColor OpModeStatus::getOpMode_Full_Color() const +{ + return opMode_Full_Color; +} +void OpModeStatus::setOpMode_Full_Color( QColor c ) +{ + opMode_Full_Color = c; + setItemData(0, opMode_Full_Color, Qt::BackgroundRole); + if (!onUpdate) + getOpMode(); +} + +QColor OpModeStatus::getOpMode_NoTurtle_Color() const +{ + return opMode_NoTurtle_Color; +} + +void OpModeStatus::setOpMode_NoTurtle_Color( QColor c ) +{ + opMode_NoTurtle_Color = c; + setItemData(1, opMode_NoTurtle_Color, Qt::BackgroundRole); + if (!onUpdate) + getOpMode(); +} + +QColor OpModeStatus::getOpMode_Gaming_Color() const +{ + return opMode_Gaming_Color; +} + +void OpModeStatus::setOpMode_Gaming_Color( QColor c ) +{ + opMode_Gaming_Color = c; + setItemData(2, opMode_Gaming_Color, Qt::BackgroundRole); + if (!onUpdate) + getOpMode(); +} + +QColor OpModeStatus::getOpMode_Minimal_Color() const +{ + return opMode_Minimal_Color; +} + +void OpModeStatus::setOpMode_Minimal_Color( QColor c ) +{ + opMode_Minimal_Color = c; + setItemData(3, opMode_Minimal_Color, Qt::BackgroundRole); + if (!onUpdate) + getOpMode(); +} diff --git a/retroshare-gui/src/gui/statusbar/OpModeStatus.h b/retroshare-gui/src/gui/statusbar/OpModeStatus.h index 6e84aea3a..43156be1f 100644 --- a/retroshare-gui/src/gui/statusbar/OpModeStatus.h +++ b/retroshare-gui/src/gui/statusbar/OpModeStatus.h @@ -26,16 +26,37 @@ class OpModeStatus : public QComboBox { Q_OBJECT + Q_PROPERTY(QColor opMode_Full_Color READ getOpMode_Full_Color WRITE setOpMode_Full_Color DESIGNABLE true) + Q_PROPERTY(QColor opMode_NoTurtle_Color READ getOpMode_NoTurtle_Color WRITE setOpMode_NoTurtle_Color DESIGNABLE true) + Q_PROPERTY(QColor opMode_Gaming_Color READ getOpMode_Gaming_Color WRITE setOpMode_Gaming_Color DESIGNABLE true) + Q_PROPERTY(QColor opMode_Minimal_Color READ getOpMode_Minimal_Color WRITE setOpMode_Minimal_Color DESIGNABLE true) public: OpModeStatus(QWidget *parent = 0); + QColor getOpMode_Full_Color() const; + void setOpMode_Full_Color( QColor c ); + + QColor getOpMode_NoTurtle_Color() const; + void setOpMode_NoTurtle_Color( QColor c ); + + QColor getOpMode_Gaming_Color() const; + void setOpMode_Gaming_Color( QColor c ); + + QColor getOpMode_Minimal_Color() const; + void setOpMode_Minimal_Color( QColor c ); + private slots: - void setOpMode(); + void setOpMode(); private: void getOpMode(); + QColor opMode_Full_Color; + QColor opMode_NoTurtle_Color; + QColor opMode_Gaming_Color; + QColor opMode_Minimal_Color; + bool onUpdate; }; #endif diff --git a/retroshare-gui/src/qss/blacknight.qss b/retroshare-gui/src/qss/blacknight.qss index 23dc205ac..4a454c54e 100644 --- a/retroshare-gui/src/qss/blacknight.qss +++ b/retroshare-gui/src/qss/blacknight.qss @@ -272,3 +272,23 @@ QTextBrowser { QTextEdit { color: white; } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #007000; + qproperty-opMode_NoTurtle_Color: #000070; + qproperty-opMode_Gaming_Color: #707000; + qproperty-opMode_Minimal_Color: #700000; +} +OpModeStatus[opMode="Full"] { + background: #007000; +} +OpModeStatus[opMode="NoTurtle"] { + background: #000070; +} +OpModeStatus[opMode="Gaming"] { + background: #707000; +} +OpModeStatus[opMode="Minimal"] { + background: #700000; +} diff --git a/retroshare-gui/src/qss/blue.qss b/retroshare-gui/src/qss/blue.qss index f337f274d..792a1dc4d 100644 --- a/retroshare-gui/src/qss/blue.qss +++ b/retroshare-gui/src/qss/blue.qss @@ -172,3 +172,23 @@ QSplitter#splitter{ border-image: url(qss/blue/blue.png); } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/groove.qss b/retroshare-gui/src/qss/groove.qss index 28662667b..e4e5a6e97 100644 --- a/retroshare-gui/src/qss/groove.qss +++ b/retroshare-gui/src/qss/groove.qss @@ -66,3 +66,23 @@ QTreeWidget::item:selected { /* when user selects item using mouse or keyboard * } Q + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/orangesurfer.qss b/retroshare-gui/src/qss/orangesurfer.qss index 413fc6e5e..a178238b9 100644 --- a/retroshare-gui/src/qss/orangesurfer.qss +++ b/retroshare-gui/src/qss/orangesurfer.qss @@ -205,3 +205,23 @@ QLabel#fromText{ color: blue; } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/qdarkstyle.qss b/retroshare-gui/src/qss/qdarkstyle.qss index bcb04a28f..74ad6abc8 100644 --- a/retroshare-gui/src/qss/qdarkstyle.qss +++ b/retroshare-gui/src/qss/qdarkstyle.qss @@ -1056,4 +1056,24 @@ QToolBox::tab { QStatusBar::item { border: 1px solid #3A3939; border-radius: 3px; - } \ No newline at end of file + } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #007000; + qproperty-opMode_NoTurtle_Color: #000070; + qproperty-opMode_Gaming_Color: #707000; + qproperty-opMode_Minimal_Color: #700000; +} +OpModeStatus[opMode="Full"] { + background: #007000; +} +OpModeStatus[opMode="NoTurtle"] { + background: #000070; +} +OpModeStatus[opMode="Gaming"] { + background: #707000; +} +OpModeStatus[opMode="Minimal"] { + background: #700000; +} diff --git a/retroshare-gui/src/qss/qlive.qss b/retroshare-gui/src/qss/qlive.qss index b5e7a45a8..ca1cbd0ea 100644 --- a/retroshare-gui/src/qss/qlive.qss +++ b/retroshare-gui/src/qss/qlive.qss @@ -116,3 +116,22 @@ QStatusBar{ border-image: url(qss/qlive/qb.png); } +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/redscorpion.qss b/retroshare-gui/src/qss/redscorpion.qss index 0467650c3..014535305 100644 --- a/retroshare-gui/src/qss/redscorpion.qss +++ b/retroshare-gui/src/qss/redscorpion.qss @@ -287,3 +287,23 @@ QLabel#threadTitle{ background: white; color: black; } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/silver.qss b/retroshare-gui/src/qss/silver.qss index 3acc5dc24..ca061984f 100644 --- a/retroshare-gui/src/qss/silver.qss +++ b/retroshare-gui/src/qss/silver.qss @@ -135,3 +135,23 @@ QLabel#fromText{ color: blue; } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/silvergrey.qss b/retroshare-gui/src/qss/silvergrey.qss index 1004d3ebf..e13908b40 100644 --- a/retroshare-gui/src/qss/silvergrey.qss +++ b/retroshare-gui/src/qss/silvergrey.qss @@ -162,3 +162,23 @@ QLabel#fromText{ color: blue; } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/uus.qss b/retroshare-gui/src/qss/uus.qss index 257c40ee3..b452e65e1 100644 --- a/retroshare-gui/src/qss/uus.qss +++ b/retroshare-gui/src/qss/uus.qss @@ -300,4 +300,24 @@ QStatusBar { background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #BDDF7D, stop: 1 #49881F); -} \ No newline at end of file +} + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/wx.qss b/retroshare-gui/src/qss/wx.qss index e115b04dd..c836e61b8 100644 --- a/retroshare-gui/src/qss/wx.qss +++ b/retroshare-gui/src/qss/wx.qss @@ -85,3 +85,23 @@ QLabel#fromText{ color: blue; } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/yaba.qss b/retroshare-gui/src/qss/yaba.qss index 02cabb029..dd8f4877d 100644 --- a/retroshare-gui/src/qss/yaba.qss +++ b/retroshare-gui/src/qss/yaba.qss @@ -205,3 +205,23 @@ QToolBar#chattoolBar{ border-image: url(qss/yaba/yaba.png); } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} diff --git a/retroshare-gui/src/qss/yeah.qss b/retroshare-gui/src/qss/yeah.qss index 23dd3c839..9c7925660 100644 --- a/retroshare-gui/src/qss/yeah.qss +++ b/retroshare-gui/src/qss/yeah.qss @@ -168,3 +168,23 @@ QLabel#fromText{ color: blue; } + +/* OpModeStatus need to be at end to overload other values*/ +OpModeStatus { + qproperty-opMode_Full_Color: #CCFFCC; + qproperty-opMode_NoTurtle_Color: #CCCCFF; + qproperty-opMode_Gaming_Color: #FFFFCC; + qproperty-opMode_Minimal_Color: #FFCCCC; +} +OpModeStatus[opMode="Full"] { + background: #CCFFCC; +} +OpModeStatus[opMode="NoTurtle"] { + background: #CCCCFF; +} +OpModeStatus[opMode="Gaming"] { + background: #FFFFCC; +} +OpModeStatus[opMode="Minimal"] { + background: #FFCCCC; +} From d9e512da8b72fb8a5faadabb8cd96742b505c063 Mon Sep 17 00:00:00 2001 From: csoler Date: Wed, 3 Feb 2016 18:58:28 -0500 Subject: [PATCH 14/23] fixed update of GroupNetworkStats and proper reset when loadList is called (thx Jo) --- libretroshare/src/gxs/rsgxsnetservice.cc | 57 ++++++++++++++---------- 1 file changed, 33 insertions(+), 24 deletions(-) diff --git a/libretroshare/src/gxs/rsgxsnetservice.cc b/libretroshare/src/gxs/rsgxsnetservice.cc index 182f1be69..ab3230309 100644 --- a/libretroshare/src/gxs/rsgxsnetservice.cc +++ b/libretroshare/src/gxs/rsgxsnetservice.cc @@ -231,8 +231,8 @@ #define TRANSAC_TIMEOUT 2000 // In seconds. Has been increased to avoid epidemic transaction cancelling due to overloaded outqueues. #define SECURITY_DELAY_TO_FORCE_CLIENT_REUPDATE 3600 // force re-update if there happens to be a large delay between our server side TS and the client side TS of friends #define REJECTED_MESSAGE_RETRY_DELAY 24*3600 // re-try rejected messages every 24hrs. Most of the time this is because the peer's reputation has changed. -#define GROUP_STATS_UPDATE_DELAY 1800 // update unsubscribed group statistics every 30 mins -#define GROUP_STATS_UPDATE_NB_PEERS 2 // update unsubscribed group statistics every 30 mins +#define GROUP_STATS_UPDATE_DELAY 240 // update unsubscribed group statistics every 3 mins +#define GROUP_STATS_UPDATE_NB_PEERS 2 // number of peers to which the group stats are asked #define MAX_ALLOWED_GXS_MESSAGE_SIZE 199000 // 200,000 bytes including signature and headers // Debug system to allow to print only for some IDs (group, Peer, etc) @@ -1400,31 +1400,33 @@ private: bool RsGxsNetService::loadList(std::list &load) { - RS_STACK_MUTEX(mNxsMutex) ; + RS_STACK_MUTEX(mNxsMutex) ; - // The delete is done in StoreHere, if necessary + // The delete is done in StoreHere, if necessary + + std::for_each(load.begin(), load.end(), StoreHere(mClientGrpUpdateMap, mClientMsgUpdateMap, mServerMsgUpdateMap, mGrpServerUpdateItem)); + + // We reset group statistics here. This is the best place since we know at this point which are all unsubscribed groups. - std::for_each(load.begin(), load.end(), StoreHere(mClientGrpUpdateMap, mClientMsgUpdateMap, mServerMsgUpdateMap, mGrpServerUpdateItem)); - time_t now = time(NULL); - - for(ClientMsgMap::iterator it = mClientMsgUpdateMap.begin();it!=mClientMsgUpdateMap.end();++it) - for(std::map::const_iterator it2(it->second->msgUpdateInfos.begin());it2!=it->second->msgUpdateInfos.end();++it2) - { - RsGroupNetworkStatsRecord& gnsr = mGroupNetworkStats[it2->first] ; + time_t now = time(NULL); + + for(std::map::iterator it(mGroupNetworkStats.begin());it!=mGroupNetworkStats.end();++it) + { + // At each reload, we reset the count of visible messages. It will be rapidely restored to its real value from friends. - // At each reload, divide the last count by 2. This gradually flushes old information away. + it->second.max_visible_count = 0; // std::max(it2->second.message_count,gnsr.max_visible_count) ; + + // the update time stamp is randomised so as not to ask all friends at once about group statistics. + + it->second.update_TS = now - GROUP_STATS_UPDATE_DELAY + (RSRandom::random_u32()%(GROUP_STATS_UPDATE_DELAY/10)) ; - gnsr.max_visible_count = std::max(it2->second.message_count,gnsr.max_visible_count/2) ; - gnsr.update_TS = now - GROUP_STATS_UPDATE_DELAY + (RSRandom::random_u32()%(GROUP_STATS_UPDATE_DELAY/10)) ; + // Similarly, we remove all suppliers. + // Actual suppliers will come back automatically. - // Similarly, we remove some of the suppliers randomly. If they are - // actual suppliers, they will come back automatically. If they are - // not, they will be forgotten. + it->second.suppliers.clear() ; + } - if(RSRandom::random_f32() > 0.2) - gnsr.suppliers.insert(it->first) ; - } - return true; + return true; } #include @@ -3736,13 +3738,20 @@ bool RsGxsNetService::locked_CanReceiveUpdate(const RsNxsSyncMsg *item) } void RsGxsNetService::handleRecvSyncMessage(RsNxsSyncMsg* item) { - if (!item) - return; + if (!item) + return; - RS_STACK_MUTEX(mNxsMutex) ; + RS_STACK_MUTEX(mNxsMutex) ; const RsPeerId& peer = item->PeerId(); + // Insert the PeerId in suppliers list for this grpId +#ifdef NXS_NET_DEBUG_6 + GXSNETDEBUG_PG(item->PeerId(),item->grpId) << "RsGxsNetService::handleRecvSyncMessage(): Inserting PeerId " << item->PeerId() << " in suppliers list for group " << item->grpId << std::endl; +#endif + RsGroupNetworkStatsRecord& rec(mGroupNetworkStats[item->grpId]) ; // this creates it if needed + rec.suppliers.insert(peer) ; + #ifdef NXS_NET_DEBUG_0 GXSNETDEBUG_PG(item->PeerId(),item->grpId) << "handleRecvSyncMsg(): Received last update TS of group " << item->grpId << ", for peer " << peer << ", TS = " << time(NULL) - item->updateTS << " secs ago." ; #endif From c6bb23aff74f92bc351594544224a89dfcd8e333 Mon Sep 17 00:00:00 2001 From: csoler Date: Wed, 3 Feb 2016 21:20:16 -0500 Subject: [PATCH 15/23] updated french text, and improved message in IdDialog --- retroshare-gui/src/gui/Identity/IdDialog.ui | 19 +----- retroshare-gui/src/lang/retroshare_fr.qm | Bin 506274 -> 513250 bytes retroshare-gui/src/lang/retroshare_fr.ts | 64 ++++++++++++++++---- 3 files changed, 54 insertions(+), 29 deletions(-) diff --git a/retroshare-gui/src/gui/Identity/IdDialog.ui b/retroshare-gui/src/gui/Identity/IdDialog.ui index 185655063..302dd98eb 100644 --- a/retroshare-gui/src/gui/Identity/IdDialog.ui +++ b/retroshare-gui/src/gui/Identity/IdDialog.ui @@ -7,7 +7,7 @@ 0 0 745 - 634 + 640 @@ -513,22 +513,9 @@ <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:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> diff --git a/retroshare-gui/src/lang/retroshare_fr.qm b/retroshare-gui/src/lang/retroshare_fr.qm index 4de39586067b5369ef3b6f6481255ee2c706fc57..3dc9be365cd8b61967c4e558fdeb8cf1ae510871 100644 GIT binary patch delta 29384 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

F#<8HxQb5m-Vry$10$wwSty@1G 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 DBg3%- diff --git a/retroshare-gui/src/lang/retroshare_fr.ts b/retroshare-gui/src/lang/retroshare_fr.ts index b0849dc1b..bd1b02cf7 100644 --- a/retroshare-gui/src/lang/retroshare_fr.ts +++ b/retroshare-gui/src/lang/retroshare_fr.ts @@ -1542,7 +1542,7 @@ Double cliquer sur le salon pour y accéder et discuter. Everyone - + Tout le monde Contacts @@ -1550,7 +1550,7 @@ Double cliquer sur le salon pour y accéder et discuter. Nobody - + Personne Accept encrypted distant chat from @@ -8231,15 +8231,15 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - + <html><head/><body><p>Moyenne des opinions exprimées par les noeuds voisins,</p><p>positif=ok. Zero=neutrel.</p></body></html> Your opinion: - + Votre opinion Neighbor nodes: - + Noeuds voisins <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -8263,27 +8263,47 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Votre opinion d'une identité influe sur sa visibilité dans l'application,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">et sa capacité à être partagée avec les noeuds voisins. Un score final est calculé a partir de votre propre opinion et de la ,oyenne des opinions des noeuds voisins:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = votre_opinion * a + moyenne_des_amis * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> Negative - + Negative Neutral - + Neutre Positive - + Positive <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> - + <html><head/><body><p>Score de réputation, prenant en compte votre propre avis et celui des noeuds voisins'.</p><p>Négatif=mauvais; positif=ok. Si le score est trop bas,</p><p>l'identité est bannie, et sera progressivement éliminée des forums; chaînes, etc.</p></body></html> Overall: - + Global +50 Known PGP @@ -8303,7 +8323,7 @@ p, li { white-space: pre-wrap; } Banned - + Banni @@ -8627,7 +8647,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> @@ -8729,6 +8749,24 @@ p, li { white-space: pre-wrap; } Thanks, <br> Remerciements, <br> + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Votre opinion sur une identité influe sur la propagation des messages signés par cette identité. Votre propre opinion est partagée avec les noeuds amis et un score de réputation est calculé ainsi: Si votre opinion est neutre le score de réputation est la moyenne des opinions de vos amis. Sinon votre opinion décide du score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Le score de réputation est.utilisé par les forums les chaines et les salons de chat pour bloquer les utilisateurs indésirables Quand la réputation est inférieure à -0.6, lù'identité est bannie.et ses messages ne sont pas propagés Certains forums ont des options anti-spam qui demandent une réputation. Les identités bannies perdent graduellement leur activité et finissent par disparaitre (au bout de 30 jours). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + IdEditDialog From b46e2a9aa2ce58d720ce244da696a3b5305f5f6e Mon Sep 17 00:00:00 2001 From: thunder2 Date: Thu, 4 Feb 2016 12:07:43 +0100 Subject: [PATCH 16/23] Updated english translation --- retroshare-gui/src/lang/retroshare_en.ts | 45 +++++++++--------------- 1 file changed, 16 insertions(+), 29 deletions(-) diff --git a/retroshare-gui/src/lang/retroshare_en.ts b/retroshare-gui/src/lang/retroshare_en.ts index 971eed7fd..b41e1edaa 100644 --- a/retroshare-gui/src/lang/retroshare_en.ts +++ b/retroshare-gui/src/lang/retroshare_en.ts @@ -9309,7 +9309,19 @@ p, li { white-space: pre-wrap; } - + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + + + + Edit identity @@ -9330,7 +9342,7 @@ p, li { white-space: pre-wrap; } - + Owner node ID : @@ -9395,32 +9407,7 @@ p, li { white-space: pre-wrap; } - - <!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:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - - - + Negative @@ -9566,7 +9553,7 @@ p, li { white-space: pre-wrap; } - + From 182f81667477ae60f6133e4ae3199c8b31288b38 Mon Sep 17 00:00:00 2001 From: defnax Date: Thu, 4 Feb 2016 21:30:23 +0100 Subject: [PATCH 17/23] update todo --- TODO.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TODO.txt b/TODO.txt index 254deedfd..f2f829d91 100644 --- a/TODO.txt +++ b/TODO.txt @@ -55,6 +55,8 @@ GXS VOIP H [ ] use proper video encoding. What we have now is decent for video, but sound should be prioritized. Experiments with QtAV seem to work nicely. Finish and integrate! + M [ ] Implement Voice for Video Chat + M [ ] Improve Voice and Video Quality M [ ] Video Quality/Resolution Settings (High, Medium, Low) HD, HQ, SD ) M [ ] Video Device: WebCam(s) or Desktop Selection M [ ] Audio Input Device Selection (Microphone) From 562e783c3f048e8d3cc7880723e6ca21cb06770b Mon Sep 17 00:00:00 2001 From: csoler Date: Thu, 4 Feb 2016 20:31:04 -0500 Subject: [PATCH 18/23] fixed date format in changelog --- build_scripts/Debian+Ubuntu/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_scripts/Debian+Ubuntu/changelog b/build_scripts/Debian+Ubuntu/changelog index bb33a0c11..a264565d1 100644 --- a/build_scripts/Debian+Ubuntu/changelog +++ b/build_scripts/Debian+Ubuntu/changelog @@ -57,7 +57,7 @@ retroshare06 (0.6.0-1.XXXXXX~YYYYYY) YYYYYY; urgency=low 8296fa9 csoler Sat, 16 Jan 2016 11:30:15 -0500 added checkbox to toggle logscale in statistics 63b88ec defnax Sat, 16 Jan 2016 14:50:12 +0100 correct sorting for "Reputation" in People, patch by Eugene Tooms - -- Cyril Soler Mon, 01 Fev 2016 20:00:00 +0100 + -- Cyril Soler Mon, 01 Feb 2016 20:00:00 +0100 retroshare06 (0.6.0-1.20160115.a34f66aa~trusty) trusty; urgency=low From ccf96a35c3b15153b9908cd25720f76cba4f6889 Mon Sep 17 00:00:00 2001 From: thunder2 Date: Fri, 5 Feb 2016 20:04:46 +0100 Subject: [PATCH 19/23] Updated languages from Transifex --- plugins/VOIP/lang/VOIP_es.qm | Bin 41317 -> 41317 bytes plugins/VOIP/lang/VOIP_es.ts | 2 +- plugins/VOIP/lang/VOIP_it.qm | Bin 37038 -> 39335 bytes plugins/VOIP/lang/VOIP_it.ts | 38 +- retroshare-gui/src/lang/retroshare_af.ts | 3376 ++-- retroshare-gui/src/lang/retroshare_ar.ts | 3546 ++-- retroshare-gui/src/lang/retroshare_bg.qm | Bin 6238 -> 18306 bytes retroshare-gui/src/lang/retroshare_bg.ts | 3724 ++-- retroshare-gui/src/lang/retroshare_ca_ES.qm | Bin 499707 -> 580208 bytes retroshare-gui/src/lang/retroshare_ca_ES.ts | 3939 ++-- retroshare-gui/src/lang/retroshare_cs.qm | Bin 204022 -> 270472 bytes retroshare-gui/src/lang/retroshare_cs.ts | 4438 +++-- retroshare-gui/src/lang/retroshare_cy.ts | 3376 ++-- retroshare-gui/src/lang/retroshare_da.qm | Bin 6365 -> 6250 bytes retroshare-gui/src/lang/retroshare_da.ts | 3384 ++-- retroshare-gui/src/lang/retroshare_de.qm | Bin 558248 -> 474663 bytes retroshare-gui/src/lang/retroshare_de.ts | 3527 ++-- retroshare-gui/src/lang/retroshare_el.qm | Bin 347821 -> 325100 bytes retroshare-gui/src/lang/retroshare_el.ts | 4247 +++-- retroshare-gui/src/lang/retroshare_es.qm | Bin 562922 -> 613892 bytes retroshare-gui/src/lang/retroshare_es.ts | 3698 ++-- retroshare-gui/src/lang/retroshare_fi.qm | Bin 417996 -> 351811 bytes retroshare-gui/src/lang/retroshare_fi.ts | 3496 ++-- retroshare-gui/src/lang/retroshare_fr.qm | Bin 513250 -> 531894 bytes retroshare-gui/src/lang/retroshare_fr.ts | 17111 ++++++++++-------- retroshare-gui/src/lang/retroshare_hu.qm | Bin 364979 -> 316536 bytes retroshare-gui/src/lang/retroshare_hu.ts | 3480 ++-- retroshare-gui/src/lang/retroshare_it.qm | Bin 348587 -> 497770 bytes retroshare-gui/src/lang/retroshare_it.ts | 4622 +++-- retroshare-gui/src/lang/retroshare_ja_JP.qm | Bin 34949 -> 34672 bytes retroshare-gui/src/lang/retroshare_ja_JP.ts | 3398 ++-- retroshare-gui/src/lang/retroshare_ko.qm | Bin 44648 -> 43978 bytes retroshare-gui/src/lang/retroshare_ko.ts | 3398 ++-- retroshare-gui/src/lang/retroshare_nl.qm | Bin 448705 -> 386303 bytes retroshare-gui/src/lang/retroshare_nl.ts | 3530 ++-- retroshare-gui/src/lang/retroshare_pl.qm | Bin 138466 -> 136179 bytes retroshare-gui/src/lang/retroshare_pl.ts | 3409 ++-- retroshare-gui/src/lang/retroshare_pt.qm | Bin 3343 -> 3277 bytes retroshare-gui/src/lang/retroshare_pt.ts | 3376 ++-- retroshare-gui/src/lang/retroshare_ru.qm | Bin 509817 -> 543541 bytes retroshare-gui/src/lang/retroshare_ru.ts | 3685 ++-- retroshare-gui/src/lang/retroshare_sl.qm | Bin 6849 -> 6549 bytes retroshare-gui/src/lang/retroshare_sl.ts | 3398 ++-- retroshare-gui/src/lang/retroshare_sr.qm | Bin 17659 -> 17542 bytes retroshare-gui/src/lang/retroshare_sr.ts | 3384 ++-- retroshare-gui/src/lang/retroshare_sv.qm | Bin 391592 -> 351141 bytes retroshare-gui/src/lang/retroshare_sv.ts | 3644 ++-- retroshare-gui/src/lang/retroshare_tr.qm | Bin 371938 -> 346257 bytes retroshare-gui/src/lang/retroshare_tr.ts | 3734 ++-- retroshare-gui/src/lang/retroshare_zh_CN.qm | Bin 286354 -> 243416 bytes retroshare-gui/src/lang/retroshare_zh_CN.ts | 3480 ++-- retroshare-gui/src/lang/retroshare_zh_TW.qm | Bin 12082 -> 11972 bytes retroshare-gui/src/lang/retroshare_zh_TW.ts | 3376 ++-- 53 files changed, 65202 insertions(+), 42614 deletions(-) diff --git a/plugins/VOIP/lang/VOIP_es.qm b/plugins/VOIP/lang/VOIP_es.qm index cbfe84ee05f7163240e124736decb5a85b3a0789..62c6cdc22dc60da0059103746984fc1dec1cbaef 100644 GIT binary patch delta 26 icmaEQi0SDerVV8ixQiH48Il %1 inviting you to start a video conversation. do you want Accept or Decline the invitation? - %1 le está invitando a iniciar una conversación de vídeo. ¿Quiere aceptar o declinar la invitación? + %1 le está invitando a iniciar una conversación de vídeo. ¿Quiere aceptar o rechazar la invitación? diff --git a/plugins/VOIP/lang/VOIP_it.qm b/plugins/VOIP/lang/VOIP_it.qm index 09ded6fac57e34ee3133d8dfc5940601367497bb..14c686001cc45b6c4e25f2ce9d9dc54226d9ed5d 100644 GIT binary patch delta 1977 zcmcgsTWB0r82)xQ$tE$gn@gL-ByLV~X@tn;LK~teX_8t@n|Nv3K%tF2?#?D7o0%{> zyW0j#mC$NyvX@LMQX^PwEfOoS5g&XIDd>x}615-|i!b)UE20mDLhFBK;v`WKiXg+; zGjsO8ec%6`|LxQ6b4%{bhWl>-dp`ym4#7PY1L~KN+kY0Ac@Mcu-_rSQd!HS%_qk6| ze9t^!%GrnRt~kGt0_L)~DqRKwNqqNy9*}-5d!VB*bJ^|r=_LyEL-y6p?wLsTqmHWd zPS2KWy?}hfv*XEYz_A{W@mmp)37L{>Q*B%I2SD~_&f$535;W%=J%16HUbgqym(7P= z9i`cY+?$=l03OVX9sCTK{oFk2Vvpo~A88|>cf2ks2T&KiHJfUI7R6id{}Fg`*xT^M z6@Z=bCO>%>sJre>k5I*_z1|Dex9IzI@1?~6AqkjQT$5Fq!h)&RCg9|*g0G|JfSN#| z|MxGcv~A`AclJohzG*VOUG(&ZO9Zc2^3P2Ijn7E6({BOIXQYmc{gm>8wDWoLt!tH@ zYoHXRMbfEXUIFgiD9!)+1i>1SzDl&vUg<062Z2M2zVc&rRTPptqo z9s3*Gn4%^WLs3WAVJ*%Kjl~SE8;mm^4=WlAX=-Oe)??gIG&RV=nq`*cs=>NLA$i|$f^*$}$q{~dzk}M{x zVZoXu++ffq>}p!x)?i)#7?CChg%}&FL&Hhsge>V+V@X+ONyQkoW0{*XgZ>&4&g#su zM0r1z%o6Jn6V#q`DV~d3(La9W5xi!B;T9I^Z1cB3`+(}+$N2CE_leL{2T!h{) zLU;a4=zdD2lO#q-7!&k}8_`3*0`IDVH}-HfoK(VutWS+-`j|D9M1n?T*aqs~0 delta 354 zcmZ3!nQ7fZrU@dN2@DLO#~2t?Dj1lWiy0V{FEX%hegNeEhtNGSQ2O^oUrF{`yyqAg zdz%rp~PspPC7Ey=FGK=gh#6`h(dm{vHEEo6}@dMn&<; zIVB7XJqKA@*B)YE=v08vJ?)cA8O^wQcvyd1#4#{1*i7Ebs9?a($jidOkhg(dMp2%D zK|hmSYq28AW;<)^nWFep7^?@tH1pevt!lk`6zfAM5hraG=}N6y4g-tN9ohni(gbWp-xj)!i(_qS85e-89w7JQEL0W}NhFa>C@W$qG{< jCqJ1|H2L7vfXSko(v#;+^P229-3rY9H$!;xf|=|9-@0+q diff --git a/plugins/VOIP/lang/VOIP_it.ts b/plugins/VOIP/lang/VOIP_it.ts index 55fb580d3..945ae7522 100644 --- a/plugins/VOIP/lang/VOIP_it.ts +++ b/plugins/VOIP/lang/VOIP_it.ts @@ -508,7 +508,7 @@ Mute - + Muto @@ -518,7 +518,7 @@ Start Video Call - + Inizia una Video Chiamata @@ -548,7 +548,7 @@ Outgoing Call stopped. - + Chiamata in uscita terminata. @@ -568,48 +568,48 @@ Shut camera off - + Spegni webcam/videocamera You're now sending video... - + Invio video in corso... Activate camera - + Attiva webcam/videocamera Video call stopped - + Video chiamata terminata %1 inviting you to start a video conversation. do you want Accept or Decline the invitation? - + %1 vuole iniziare una conversazione video con te. Accetti o Rifiuti l'invito? Accept Video Call - + Accetta Video Chiamata %1 inviting you to start a audio conversation. do you want Accept or Decline the invitation? - + %1 vuole iniziare una conversazione audio con te. Accetti o Rifiuti l'invito? Accept Call - + Accetta Chiamata Activate audio - + Attiva audio @@ -635,7 +635,7 @@ Answer with video - + Rispondi con video @@ -653,12 +653,12 @@ Bandwidth Information - + Informazioni Larghezza Banda Audio or Video Data - + Informazioni Audio o Video @@ -668,17 +668,17 @@ Invitation - + Invito Audio Call - + Audio Chiamata Video Call - + Video Chiamata @@ -744,7 +744,7 @@ calling - + in chiamata \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_af.ts b/retroshare-gui/src/lang/retroshare_af.ts index fb3391afe..95224fcc6 100644 --- a/retroshare-gui/src/lang/retroshare_af.ts +++ b/retroshare-gui/src/lang/retroshare_af.ts @@ -1,8 +1,8 @@ - + AWidget - + version @@ -21,12 +21,17 @@ - + About - + + Copy Info + + + + close @@ -478,7 +483,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language @@ -518,24 +523,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -571,24 +580,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -618,8 +639,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -723,7 +749,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar @@ -731,7 +757,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -739,7 +765,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -747,13 +773,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage - + Show Settings @@ -808,7 +834,7 @@ p, li { white-space: pre-wrap; } - + Since: @@ -818,6 +844,31 @@ p, li { white-space: pre-wrap; } + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -881,7 +932,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -896,6 +947,49 @@ p, li { white-space: pre-wrap; } + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -924,14 +1018,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -945,17 +1031,32 @@ p, li { white-space: pre-wrap; } - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -970,7 +1071,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 @@ -980,13 +1081,13 @@ p, li { white-space: pre-wrap; } - + Lobby chat - + Lobby management @@ -1018,7 +1119,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1033,12 +1134,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1084,7 +1185,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1123,18 +1224,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name - + Count @@ -1155,23 +1256,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private @@ -1180,13 +1281,18 @@ p, li { white-space: pre-wrap; } Public + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1196,27 +1302,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1231,7 +1347,7 @@ p, li { white-space: pre-wrap; } - + Lobby Name: @@ -1250,6 +1366,11 @@ p, li { white-space: pre-wrap; } Type: + + + Security: + + Peers: @@ -1260,19 +1381,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1281,23 +1403,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1307,22 +1424,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1375,7 +1512,7 @@ Double click lobbies to enter and chat. - + Quick Message @@ -1384,12 +1521,37 @@ Double click lobbies to enter and chat. ChatPage - + General - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings @@ -1414,7 +1576,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1528,7 +1695,7 @@ Double click lobbies to enter and chat. - + Incoming @@ -1572,6 +1739,16 @@ Double click lobbies to enter and chat. System message + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1663,7 +1840,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1686,7 +1863,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat @@ -1735,17 +1912,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close - + Send - + Bold @@ -1760,12 +1937,12 @@ Double click lobbies to enter and chat. - + Attach a Picture - + Strike @@ -1816,12 +1993,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - + Do you really want to physically delete the history? @@ -1846,7 +2048,7 @@ Double click lobbies to enter and chat. - + appears to be Offline. @@ -1871,7 +2073,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -1893,7 +2095,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1908,12 +2110,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1923,7 +2125,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1934,7 +2136,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1969,12 +2171,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1984,7 +2186,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2142,7 +2344,12 @@ Double click lobbies to enter and chat. - + + Node info + + + + Peer Address @@ -2229,12 +2436,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2270,6 +2472,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2325,7 +2532,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2358,17 +2565,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2378,18 +2575,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2399,13 +2585,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2426,11 +2607,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2511,6 +2697,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2536,7 +2762,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2550,61 +2776,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: - + - + Options - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2624,7 +2891,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2680,12 +2947,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed - + Cannot get peer details of PGP key %1 @@ -2720,12 +2987,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation - + Ultimate @@ -2751,7 +3019,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2766,7 +3034,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2864,13 +3132,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2880,12 +3157,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2905,17 +3187,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2928,7 +3205,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2938,8 +3215,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2949,8 +3226,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2960,7 +3237,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2970,17 +3247,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3837,7 +4114,7 @@ p, li { white-space: pre-wrap; } - + Forum @@ -3847,7 +4124,7 @@ p, li { white-space: pre-wrap; } - + Attach File @@ -3877,12 +4154,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3920,12 +4197,12 @@ p, li { white-space: pre-wrap; } - + Send - + Forum Message @@ -3936,7 +4213,7 @@ Do you want to reject this message? - + Post as @@ -3971,7 +4248,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3985,7 +4262,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3995,12 +4287,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4159,7 +4461,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4181,7 +4488,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4279,7 +4586,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4309,7 +4616,7 @@ Do you want to reject this message? - + Name @@ -4354,7 +4661,7 @@ Do you want to reject this message? - + Bucket @@ -4380,17 +4687,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4425,7 +4732,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4630,7 +4952,7 @@ Do you want to reject this message? - + RELAY END @@ -4664,19 +4986,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4686,13 +5013,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4762,12 +5091,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4900,7 +5250,7 @@ you plug it in. ExprParamElement - + to @@ -5005,7 +5355,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5180,7 +5530,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5256,89 +5606,39 @@ you plug it in. FriendList - - - Status - - - - - - + Last Contact - - - Avatar - - - - + Hide Offline Friends - - State + + export friendlist - Sort by State + export your friendlist including groups - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name + + import friendlist - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + import your friendlist including groups + - Set Root Decorated + Show State @@ -5348,7 +5648,7 @@ you plug it in. - + Group @@ -5389,7 +5689,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5419,40 +5729,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5462,7 +5835,7 @@ you plug it in. - + Display @@ -5472,12 +5845,7 @@ you plug it in. - - Sort by - - - - + Node @@ -5487,17 +5855,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5545,30 +5913,35 @@ you plug it in. - - All + + Sort by state - None - - - - Name - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5662,12 +6035,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5678,12 +6056,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5696,7 +6069,7 @@ you plug it in. - + Name @@ -5748,7 +6121,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5763,7 +6136,7 @@ anonymous, you can use a fake email. - + Port @@ -5807,28 +6180,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5850,7 +6218,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5875,12 +6243,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5896,12 +6269,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5918,7 +6296,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6028,7 +6411,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6036,12 +6424,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6057,21 +6445,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6221,23 +6594,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6251,8 +6619,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6261,35 +6641,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6298,7 +6656,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6391,82 +6764,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6646,7 +7041,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -6666,7 +7061,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6680,13 +7075,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6699,7 +7099,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6797,7 +7197,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6808,17 +7208,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels @@ -6833,13 +7238,29 @@ p, li { white-space: pre-wrap; } - + + Select channel download directory + + + + Disable Auto-Download - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7180,7 +7601,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download @@ -7200,7 +7621,7 @@ p, li { white-space: pre-wrap; } - + Feeds @@ -7210,7 +7631,7 @@ p, li { white-space: pre-wrap; } - + Subscribers @@ -7368,7 +7789,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7500,12 +7921,12 @@ before you can comment - + Start new Thread for Selected Forum - + Search forums @@ -7526,7 +7947,7 @@ before you can comment - + Title @@ -7539,13 +7960,18 @@ before you can comment - + Author - - + + Save image + + + + + Loading @@ -7575,7 +8001,7 @@ before you can comment - + Search Title @@ -7600,17 +8026,27 @@ before you can comment - + No name - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7648,7 +8084,7 @@ before you can comment - + Hide @@ -7658,7 +8094,38 @@ before you can comment - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7678,29 +8145,55 @@ before you can comment - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare - + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7725,7 +8218,7 @@ before you can comment - + Forum name @@ -7740,7 +8233,7 @@ before you can comment - + Description @@ -7750,12 +8243,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7771,7 +8264,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums @@ -7801,11 +8299,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7828,13 +8321,13 @@ before you can comment GxsGroupDialog - - + + Name - + Add Icon @@ -7849,7 +8342,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7859,36 +8352,36 @@ before you can comment - - + + Description - + Message Distribution - + Public - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7918,7 +8411,7 @@ before you can comment - + PGP Required @@ -7934,12 +8427,12 @@ before you can comment - + Comments - + Allow Comments @@ -7949,33 +8442,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7985,12 +8518,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8063,7 +8596,7 @@ before you can comment - + Unsubscribe @@ -8073,12 +8606,12 @@ before you can comment - + Open in new tab - + Show Details @@ -8103,12 +8636,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8116,7 +8649,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8129,7 +8662,7 @@ before you can comment GxsIdDetails - + Loading @@ -8144,8 +8677,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8160,7 +8700,7 @@ before you can comment - + Identity&nbsp;name @@ -8175,7 +8715,7 @@ before you can comment - + [Unknown] @@ -8193,6 +8733,49 @@ before you can comment + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8388,28 +8971,7 @@ before you can comment - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8456,7 +9018,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8498,7 +9081,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8533,78 +9116,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8643,37 +9236,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search - + Unknown real name @@ -8683,72 +9297,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8769,42 +9340,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8814,7 +9385,57 @@ p, li { white-space: pre-wrap; } - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8824,12 +9445,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8845,7 +9471,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8860,7 +9486,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8870,15 +9531,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8899,7 +9580,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8914,7 +9600,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8924,17 +9610,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8944,7 +9620,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8959,29 +9635,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8991,7 +9655,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9034,8 +9698,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9043,7 +9707,7 @@ p, li { white-space: pre-wrap; } - + @@ -9053,13 +9717,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9079,7 +9743,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9134,7 +9798,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9202,7 +9866,7 @@ p, li { white-space: pre-wrap; } - + Copy @@ -9232,16 +9896,35 @@ p, li { white-space: pre-wrap; } + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9251,7 +9934,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9300,7 +9983,7 @@ p, li { white-space: pre-wrap; } - + Options @@ -9334,12 +10017,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9373,7 +10056,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9423,7 +10111,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9493,7 +10181,7 @@ p, li { white-space: pre-wrap; } - + Add @@ -9518,7 +10206,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9527,38 +10215,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9639,7 +10306,7 @@ p, li { white-space: pre-wrap; } - + Subject: @@ -9650,12 +10317,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9665,7 +10342,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9735,7 +10412,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9760,47 +10437,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9826,12 +10478,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9842,7 +10494,7 @@ Do you want to save message to draft box? - + Add to "To" @@ -9862,12 +10514,7 @@ Do you want to save message to draft box? - - Friend Details - - - - + Original Message @@ -9877,19 +10524,21 @@ Do you want to save message to draft box? - + + To - + + Cc - + Sent @@ -9931,12 +10580,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown @@ -10046,7 +10696,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... @@ -10093,12 +10748,7 @@ Do you want to save message ? - - Show: - - - - + Close @@ -10108,32 +10758,57 @@ Do you want to save message ? - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10156,7 +10831,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10171,7 +10866,7 @@ Do you want to save message ? - + Tags @@ -10211,7 +10906,7 @@ Do you want to save message ? - + Edit Tag @@ -10221,22 +10916,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10517,7 +11202,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10584,24 +11269,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10613,14 +11298,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10689,7 +11374,7 @@ Do you want to save message ? - + Reply to All @@ -10707,12 +11392,12 @@ Do you want to save message ? - + From - + Date @@ -10740,12 +11425,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10800,7 +11485,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10865,14 +11555,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10892,7 +11582,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10901,18 +11596,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10922,15 +11617,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10953,7 +11643,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link @@ -10987,7 +11692,7 @@ Do you want to save message ? - + Expand @@ -11030,7 +11735,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11074,26 +11779,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11207,7 +11892,7 @@ Do you want to save message ? - + Deny friend @@ -11265,7 +11950,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11331,7 +12016,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11346,7 +12031,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11366,12 +12051,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11401,7 +12086,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11470,7 +12155,7 @@ Reported error: NewsFeed - + News Feed @@ -11489,18 +12174,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11509,6 +12189,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11652,7 +12337,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11676,11 +12366,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11730,7 +12415,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11770,7 +12455,7 @@ Reported error: - + Test @@ -11785,13 +12470,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11840,24 +12525,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11881,12 +12548,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11921,33 +12598,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11958,6 +12653,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -12012,7 +12712,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12186,12 +12886,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12543,7 +13243,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12604,18 +13304,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12624,27 +13324,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12654,22 +13363,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12677,13 +13371,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12753,12 +13448,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12768,12 +13468,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12854,7 +13549,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12878,11 +13578,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13137,7 +13832,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13481,7 +14176,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13491,7 +14187,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13518,7 +14214,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13684,7 +14385,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13704,7 +14405,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13735,7 +14436,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13769,11 +14470,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13788,7 +14484,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13838,7 +14534,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13848,7 +14544,7 @@ Reported error is: - + enabled @@ -13858,12 +14554,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13878,42 +14574,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13932,6 +14635,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13943,6 +14652,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13952,7 +14671,7 @@ Reported error is: - + <!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; } @@ -13974,21 +14693,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14055,13 +14776,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14079,7 +14801,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14104,7 +14826,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14203,7 +14945,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14239,7 +14981,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14270,7 +15012,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14292,7 +15034,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14401,7 +15143,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14426,7 +15168,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14762,7 +15504,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14779,7 +15521,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14824,17 +15566,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14862,33 +15604,10 @@ Reducing image to %1x%2 pixels? - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15069,12 +15788,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download @@ -15143,7 +15862,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15163,7 +15882,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15406,12 +16125,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15426,7 +16155,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15446,13 +16175,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address - + External Address @@ -15462,28 +16191,28 @@ Reducing image to %1x%2 pixels? - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15506,13 +16235,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15522,23 +16251,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15548,17 +16266,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15568,90 +16334,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status - - + + Origin - - + + Reason - - + + Comment - + IPs - + IP whitelist - + Manual input @@ -15676,12 +16447,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15704,32 +16581,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15759,99 +16637,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15884,7 +16683,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15899,13 +16698,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16169,7 +16968,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -16194,7 +16993,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16210,7 +17009,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16233,7 +17032,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16259,11 +17058,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16272,6 +17072,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16332,7 +17137,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16574,12 +17379,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16595,18 +17400,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16617,6 +17422,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16626,7 +17436,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16636,7 +17446,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16646,7 +17456,7 @@ This choice can be reverted in settings. - + UDP @@ -16660,13 +17470,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16875,7 +17695,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16924,7 +17744,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17057,16 +17877,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17262,25 +18084,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17305,7 +18127,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17331,39 +18158,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay - - + + Waiting - + Downloading - + Complete - + Queued @@ -17397,7 +18224,7 @@ Try to be patient! - + Transferring @@ -17407,7 +18234,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17465,7 +18292,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17571,7 +18398,7 @@ Try to be patient! - + Columns @@ -17581,7 +18408,7 @@ Try to be patient! - + Path i.e: Where file is saved @@ -17597,12 +18424,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17612,7 +18434,7 @@ Try to be patient! - + Create Collection... @@ -17627,7 +18449,7 @@ Try to be patient! - + Collection @@ -17637,17 +18459,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17683,7 +18505,7 @@ Try to be patient! - + Friends Directories @@ -17726,7 +18548,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17789,7 +18611,7 @@ Try to be patient! - + Age in seconds @@ -17804,7 +18626,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17813,16 +18645,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18021,10 +18848,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18035,11 +18872,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18229,7 +19061,7 @@ Try to be patient! - + My Groups @@ -18249,7 +19081,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_ar.ts b/retroshare-gui/src/lang/retroshare_ar.ts index 003400e85..d7e5a9c54 100644 --- a/retroshare-gui/src/lang/retroshare_ar.ts +++ b/retroshare-gui/src/lang/retroshare_ar.ts @@ -1,15 +1,15 @@ - + AWidget - + version - + الإصدار RetroShare version - + إصدار RetroShare @@ -21,12 +21,17 @@ حول ريتروشير - + About حول - + + Copy Info + + + + close إنهاء @@ -56,7 +61,7 @@ Add Comment - + أضف تعليق @@ -152,7 +157,7 @@ Animals - + الحيوانات @@ -167,7 +172,7 @@ Flowers - + الأزهار @@ -197,7 +202,7 @@ Work - + العمل @@ -227,12 +232,12 @@ Share Options - + خيارات المشاركة Policy: - + السياسة: @@ -242,7 +247,7 @@ Comments: - + التعليقات: @@ -272,7 +277,7 @@ Send Original Images - + أرسل الصور الأصلية @@ -311,7 +316,7 @@ p, li { white-space: pre-wrap; } Add Photos - + أضف صور @@ -395,7 +400,7 @@ p, li { white-space: pre-wrap; } Share Options - + خيارات المشاركة @@ -424,17 +429,17 @@ p, li { white-space: pre-wrap; } Add Photo - + أضف صورة Edit Photo - + تعديل صورة Delete Photo - + حذف صورة @@ -478,19 +483,19 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language اللغة Changes to language will only take effect after restarting RetroShare! - + التغييرات على اللغة ستؤثر فقط بعد إعادة تشغيل RetroShare! Choose the language used in RetroShare - + إختر اللغة المستعملة على RetroShare @@ -515,27 +520,31 @@ p, li { white-space: pre-wrap; } Tool Bar - + شريط الأدوات - - + + On Tool Bar - + على شريط الأدوات - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -571,27 +580,39 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - - Status Bar + + + Icon Size = 64x64 + + + + Icon Size = 128x128 + + + + + Status Bar + شريط الحالة + Remove surplus text in status bar. @@ -618,8 +639,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -646,7 +672,7 @@ p, li { white-space: pre-wrap; } Circles - + الدوائر @@ -666,7 +692,7 @@ p, li { white-space: pre-wrap; } Photos - + الصور @@ -723,7 +749,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar إنقر لتغيير صورتك الرمزية @@ -731,7 +757,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -739,7 +765,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -747,13 +773,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage عرض الحزمة المستخدم من ريتروشير - + Show Settings إظهار الإعدادات @@ -808,7 +834,7 @@ p, li { white-space: pre-wrap; } إلغي - + Since: منذ: @@ -818,6 +844,31 @@ p, li { white-space: pre-wrap; } إخفاء الإعدادات + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -881,7 +932,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -896,6 +947,49 @@ p, li { white-space: pre-wrap; } من + + BwStatsWidget + + + Form + + + + + Friend: + صديق: + + + + Type: + النوع: + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -924,14 +1018,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -945,32 +1031,47 @@ p, li { white-space: pre-wrap; } تغيير اللقلب - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) Invite friends - + دعوة أصدقاء Select friends to invite: - + إختر أصدقاء لدعوتهم: - + Welcome to lobby %1 @@ -980,13 +1081,13 @@ p, li { white-space: pre-wrap; } الموضوع: %1 - + Lobby chat - + Lobby management @@ -1018,7 +1119,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1033,12 +1134,12 @@ p, li { white-space: pre-wrap; } ثواني - + Start private chat - + إبدأ الدردشة الخاصة - + Decryption failed. @@ -1084,7 +1185,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1123,18 +1224,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name اسم - + Count @@ -1155,23 +1256,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby إنشاء تجمع دردشة - + [No topic provided] [لم يتم ايراد مضوع] - + Selected lobby info - + Private خاص @@ -1180,13 +1281,18 @@ p, li { white-space: pre-wrap; } Public عام + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1196,42 +1302,52 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed + مشترك + + + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - + + Create a non anonymous identity and enter this lobby + + + + Columns أعمدة Yes - + نعم No - + لا - + Lobby Name: @@ -1243,13 +1359,18 @@ p, li { white-space: pre-wrap; } Topic: - + الموضوع: Type: النوع: + + + Security: + + Peers: @@ -1260,19 +1381,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1281,23 +1403,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1307,22 +1424,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1333,7 +1470,7 @@ Double click lobbies to enter and chat. column - + عمود @@ -1375,7 +1512,7 @@ Double click lobbies to enter and chat. إلغي - + Quick Message رسالة مختصرة @@ -1384,12 +1521,37 @@ Double click lobbies to enter and chat. ChatPage - + General عا - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings إعدادات الدردشة @@ -1414,7 +1576,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1528,7 +1695,7 @@ Double click lobbies to enter and chat. دردشة خاصة - + Incoming الوارد @@ -1572,6 +1739,16 @@ Double click lobbies to enter and chat. System message رسالة نظام + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1595,7 +1772,7 @@ Double click lobbies to enter and chat. Saved messages (0 = unlimited): - + الرسائل المسجلة (0 = غير محدود) @@ -1663,14 +1840,14 @@ Double click lobbies to enter and chat. - + Private chat invite from Name : - + الإسم : @@ -1686,7 +1863,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat نمط قياسي لمجموعة الدردشة @@ -1735,17 +1912,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close إغلاق - + Send إرسال - + Bold غامق @@ -1760,12 +1937,12 @@ Double click lobbies to enter and chat. مائل - + Attach a Picture إرفاق صورة - + Strike @@ -1816,12 +1993,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... يـكتب... - + Do you really want to physically delete the history? @@ -1846,7 +2048,7 @@ Double click lobbies to enter and chat. ملف نصي (txt.*);;جميع الملفات (*) - + appears to be Offline. @@ -1871,7 +2073,7 @@ Double click lobbies to enter and chat. إنه مشغول و قد لا يرد - + Find Case Sensitively @@ -1893,7 +2095,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1908,22 +2110,22 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color Attach a File - + إرفاق ملف - + WARNING: Could take a long time on big history. @@ -1934,7 +2136,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1969,12 +2171,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1984,9 +2186,9 @@ Double click lobbies to enter and chat. - + Warning: - + تحذير: @@ -2007,7 +2209,7 @@ Double click lobbies to enter and chat. Showing details: - + إظهار التفاصيل: @@ -2060,7 +2262,7 @@ Double click lobbies to enter and chat. Friends of Friends - + أصدقاء الأصدقاء @@ -2110,7 +2312,7 @@ Double click lobbies to enter and chat. Friends Of Friends - + أصدقاء الأصدقاء @@ -2131,7 +2333,7 @@ Double click lobbies to enter and chat. Circles - + الدوائر @@ -2142,7 +2344,12 @@ Double click lobbies to enter and chat. التفاصيل - + + Node info + + + + Peer Address @@ -2206,12 +2413,12 @@ Double click lobbies to enter and chat. Encryption - + تشفير Not connected - + غير متصل @@ -2229,19 +2436,14 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : Status : - + الحالة : @@ -2251,7 +2453,7 @@ Double click lobbies to enter and chat. Retroshare version : - + إصدار Retroshare : @@ -2261,7 +2463,7 @@ Double click lobbies to enter and chat. PGP key : - + مفتاح PGP : @@ -2270,6 +2472,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2281,7 +2488,7 @@ Double click lobbies to enter and chat. Hidden Address - + عنوان مخفي @@ -2325,7 +2532,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2355,20 +2562,10 @@ Double click lobbies to enter and chat. Add a new Friend - + إضافة صديق جديد - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2378,18 +2575,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2399,13 +2585,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures إدراج تواقيع @@ -2426,11 +2607,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2511,9 +2697,49 @@ Double click lobbies to enter and chat. - Invite Friends by Email + RetroShare is better with Friends + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + + Invite Friends by Email + دعوة الأصدقاء بالبريد الإلكتروني + Enter your friends' email addresses (separate each one with a semicolon) @@ -2536,10 +2762,10 @@ Double click lobbies to enter and chat. - + Friend request - + طلب صداقة @@ -2550,61 +2776,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: الاسم: - - + + Email: + البريد الإلكتروني: + + + + Node: - - + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: الموقع: - + - + Options خيارات - - - Add friend to group: + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: - - + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + + Add friend to group: + أضف صديق إلى مجموعة: + + + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2621,10 +2888,10 @@ Double click lobbies to enter and chat. Details about your friend: - + تفاصيل حول صديقك: - + Key validity: @@ -2680,12 +2947,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed فشل تحميل الشهادة - + Cannot get peer details of PGP key %1 @@ -2720,12 +2987,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation دعوة ريتروشير - + Ultimate @@ -2751,7 +3019,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2766,7 +3034,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2845,7 +3113,7 @@ Double click lobbies to enter and chat. Please choose a filename - + يرجى إختيار إسم الملف @@ -2864,13 +3132,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2880,12 +3157,17 @@ Double click lobbies to enter and chat. - - Message: + + The text below is your Retroshare certificate. You have to provide it to your friend - + + Message: + رسالة: + + + Recommend friends @@ -2905,17 +3187,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2928,7 +3205,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2938,8 +3215,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2949,8 +3226,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2960,7 +3237,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2970,17 +3247,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3010,7 +3287,7 @@ even if you don't make friends. Network - + شبكة @@ -3270,7 +3547,7 @@ even if you don't make friends. Connected - + متصل @@ -3369,7 +3646,7 @@ even if you don't make friends. We Cannot find your Friend. - + لا نستطيع العثور على صديقك. @@ -3607,7 +3884,7 @@ p, li { white-space: pre-wrap; } Remove - + حذف @@ -3837,7 +4114,7 @@ p, li { white-space: pre-wrap; } - + Forum منتدى @@ -3847,7 +4124,7 @@ p, li { white-space: pre-wrap; } الموضوع - + Attach File إرفاق ملف @@ -3877,12 +4154,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3920,12 +4197,12 @@ p, li { white-space: pre-wrap; } - + Send إرسال - + Forum Message @@ -3936,7 +4213,7 @@ Do you want to reject this message? - + Post as @@ -3971,8 +4248,8 @@ Do you want to reject this message? - Security policy: - سياسة أمنية: + Visibility: + @@ -3985,7 +4262,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3995,12 +4287,22 @@ Do you want to reject this message? الأصدقاء المدعوين - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4159,7 +4461,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4181,7 +4488,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4279,7 +4586,7 @@ Do you want to reject this message? DhtWindow - + Net Status حالة الشبكة @@ -4309,7 +4616,7 @@ Do you want to reject this message? - + Name اسم @@ -4354,7 +4661,7 @@ Do you want to reject this message? - + Bucket @@ -4380,17 +4687,17 @@ Do you want to reject this message? - + Last Sent آخر إرسال - + Last Recv آخر استقبال - + Relay Mode نمط الدارة @@ -4417,7 +4724,7 @@ Do you want to reject this message? Age - + العمر @@ -4425,7 +4732,22 @@ Do you want to reject this message? عرض الحزمة - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4612,7 +4934,7 @@ Do you want to reject this message? Connected - + متصل @@ -4630,7 +4952,7 @@ Do you want to reject this message? مجهول - + RELAY END @@ -4638,7 +4960,7 @@ Do you want to reject this message? Yourself - + نفسك @@ -4664,19 +4986,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4686,13 +5013,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4762,12 +5091,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4900,7 +5250,7 @@ you plug it in. ExprParamElement - + to @@ -5005,7 +5355,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5180,7 +5530,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories مجلدات الأصدقاء @@ -5197,7 +5547,7 @@ you plug it in. Age - + العمر @@ -5256,89 +5606,39 @@ you plug it in. FriendList - - - Status - الحالة - - - - - + Last Contact آخر اتصال - - - Avatar - صورة رمزية - - - + Hide Offline Friends إخفاء الأصدقاء غير المتصلين - - State - الحالة - - - - Sort by State - الترتيب وفق الحالة - - - - Hide State - إخفاء الحالة - - - - - Sort Descending Order - ترتيب تنازلي - - - - - Sort Ascending Order - ترتيب تصاعدي - - - - Show Avatar Column - إظهار عمود الصورة الرمزية - - - - Name - اسم - - - - Sort by Name - التريب وفق الاسم - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + + export friendlist - Set Root Decorated + export your friendlist including groups + + + + + import friendlist + + + + + import your friendlist including groups + + + + + + Show State @@ -5348,7 +5648,7 @@ you plug it in. إظهار المجموعات - + Group المجموعة @@ -5389,7 +5689,17 @@ you plug it in. أضف إلى المجموعة - + + Search + + + + + Sort by state + + + + Move to group إنقل إلى المجموعة @@ -5419,40 +5729,103 @@ you plug it in. - - + Available متاح - + Do you want to remove this Friend? هل تريد إزالة هذا الصديق؟ - - Columns - أعمدة + + + Done! + - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5462,7 +5835,7 @@ you plug it in. - + Display عرض @@ -5472,12 +5845,7 @@ you plug it in. - - Sort by - - - - + Node @@ -5487,17 +5855,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5545,30 +5913,35 @@ you plug it in. - - All + + Sort by state - None - - - - Name اسم - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5662,12 +6035,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network شبكة @@ -5678,12 +6056,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5696,7 +6069,7 @@ you plug it in. إنشاء ملف شخصي جديد - + Name اسم @@ -5748,7 +6121,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5763,7 +6136,7 @@ anonymous, you can use a fake email. - + Port منفذ @@ -5807,28 +6180,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5850,7 +6218,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5875,12 +6243,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5896,12 +6269,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5918,7 +6296,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6028,7 +6411,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6036,12 +6424,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6057,21 +6445,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6221,23 +6594,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - الاتصال بالأصدقاء - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6251,9 +6619,21 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6261,35 +6641,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6298,7 +6656,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + الاتصال بالأصدقاء + + + + Advanced: Open Firewall Port + متقدم: فتح منفذ ضمن الجدار الناري + + + + Further Help and Support + مساعدة و دعم إضافيين + + + Open RS Website @@ -6391,82 +6764,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer نظير مجهول + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - الوجهة - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - إرسال - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6646,7 +7041,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title عنوان @@ -6666,7 +7061,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name التريب وفق الاسم @@ -6680,13 +7075,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post الترتيب وفق آخر مساهمة + + + Sort by Posts + + Display عرض - + You have admin rights @@ -6699,7 +7099,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and و @@ -6797,7 +7197,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels قنوات @@ -6808,17 +7208,22 @@ p, li { white-space: pre-wrap; } إنشاء قناة - + Enable Auto-Download تفعيل التحميل التقائي - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels القنوات الشترك بها @@ -6833,13 +7238,29 @@ p, li { white-space: pre-wrap; } قنوات أخرى - + + Select channel download directory + + + + Disable Auto-Download تعطيل التحميل التلقائي - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7180,7 +7601,7 @@ p, li { white-space: pre-wrap; } لم يتم اختيار أية قناة - + Disable Auto-Download تعطيل التحميل التلقائي @@ -7200,7 +7621,7 @@ p, li { white-space: pre-wrap; } - + Feeds @@ -7210,7 +7631,7 @@ p, li { white-space: pre-wrap; } ملفات - + Subscribers @@ -7368,7 +7789,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7500,12 +7921,12 @@ before you can comment من - + Start new Thread for Selected Forum - + Search forums @@ -7526,7 +7947,7 @@ before you can comment - + Title عنوان @@ -7539,13 +7960,18 @@ before you can comment - + Author المؤلف - - + + Save image + + + + + Loading جاري التحميل @@ -7575,7 +8001,7 @@ before you can comment - + Search Title @@ -7600,17 +8026,27 @@ before you can comment - + No name - + Reply رد + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7648,7 +8084,7 @@ before you can comment نسخ رابط ريتروشير - + Hide إخفاء @@ -7658,7 +8094,38 @@ before you can comment توسيع - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous مجهول @@ -7678,29 +8145,55 @@ before you can comment [ ... رسالة مفقودة ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare ريتروشير - + No Forum Selected! لم يتم اختيار أي منتدى! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message الرسالة الأصلية @@ -7725,7 +8218,7 @@ before you can comment - + Forum name @@ -7740,7 +8233,7 @@ before you can comment - + Description الوصف @@ -7750,12 +8243,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7771,7 +8264,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums منتديات @@ -7801,11 +8299,6 @@ before you can comment Other Forums منتديات أخرى - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7828,13 +8321,13 @@ before you can comment GxsGroupDialog - - + + Name اسم - + Add Icon @@ -7849,7 +8342,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7859,36 +8352,36 @@ before you can comment شارك المفتاح مع - - + + Description الوصف - + Message Distribution - + Public عام - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7918,7 +8411,7 @@ before you can comment - + PGP Required @@ -7934,12 +8427,12 @@ before you can comment - + Comments تعليقات - + Allow Comments @@ -7949,33 +8442,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name يرجى إضافة اسم - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7985,12 +8518,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8063,7 +8596,7 @@ before you can comment معاينة الطباعة - + Unsubscribe إلغاء الاشتراك @@ -8073,12 +8606,12 @@ before you can comment اشتراك - + Open in new tab - + Show Details @@ -8103,12 +8636,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8116,7 +8649,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8129,7 +8662,7 @@ before you can comment GxsIdDetails - + Loading جاري التحميل @@ -8144,8 +8677,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8160,7 +8700,7 @@ before you can comment - + Identity&nbsp;name @@ -8175,7 +8715,7 @@ before you can comment - + [Unknown] @@ -8193,6 +8733,49 @@ before you can comment + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8388,28 +8971,7 @@ before you can comment حول - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8456,7 +9018,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8498,7 +9081,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8533,78 +9116,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8643,37 +9236,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search بحث - + Unknown real name @@ -8683,72 +9297,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8769,42 +9340,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8814,7 +9385,57 @@ p, li { white-space: pre-wrap; } النوع: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8824,12 +9445,17 @@ p, li { white-space: pre-wrap; } مجهول - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8845,7 +9471,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8860,7 +9486,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8870,15 +9531,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8899,7 +9580,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8914,7 +9600,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8924,17 +9610,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - أعمدة - - - + Distant chat refused with this person. @@ -8944,7 +9620,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8959,29 +9635,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8991,7 +9655,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9034,8 +9698,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9043,7 +9707,7 @@ p, li { white-space: pre-wrap; } - + @@ -9053,13 +9717,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9079,7 +9743,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9134,7 +9798,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9202,7 +9866,7 @@ p, li { white-space: pre-wrap; } - + Copy @@ -9232,16 +9896,35 @@ p, li { white-space: pre-wrap; } إرسال + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9251,7 +9934,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9300,7 +9983,7 @@ p, li { white-space: pre-wrap; } - + Options خيارات @@ -9334,12 +10017,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9373,7 +10056,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9423,7 +10111,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9493,7 +10181,7 @@ p, li { white-space: pre-wrap; } - + Add إضافة @@ -9518,7 +10206,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9527,38 +10215,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose أكتب - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9639,7 +10306,7 @@ p, li { white-space: pre-wrap; } تسطير - + Subject: الموضوع: @@ -9650,12 +10317,22 @@ p, li { white-space: pre-wrap; } - + Tags وسوم - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9665,7 +10342,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9735,7 +10412,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9760,47 +10437,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9826,12 +10478,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9842,7 +10494,7 @@ Do you want to save message to draft box? لصق رابط ريتروشير - + Add to "To" @@ -9862,12 +10514,7 @@ Do you want to save message to draft box? - - Friend Details - تفاصيل الصديق - - - + Original Message الرسالة الأصلية @@ -9877,19 +10524,21 @@ Do you want to save message to draft box? من - + + To إلى - + + Cc - + Sent إرسال @@ -9931,12 +10580,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown مجهول @@ -10046,7 +10696,12 @@ Do you want to save message to draft box? تنسيق - + + Details + + + + Open File... فتح ملف... @@ -10094,12 +10749,7 @@ Do you want to save message ? إضافة ملف إضافي - - Show: - - - - + Close إغلاق @@ -10109,32 +10759,57 @@ Do you want to save message ? من: - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10157,7 +10832,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10172,7 +10867,7 @@ Do you want to save message ? افتح الرسائل في - + Tags وسوم @@ -10212,7 +10907,7 @@ Do you want to save message ? نافذة جديدة - + Edit Tag تعديل وسم @@ -10222,22 +10917,12 @@ Do you want to save message ? رسالة - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10518,7 +11203,7 @@ Do you want to save message ? MessagesDialog - + New Message رسالة جديدة @@ -10585,24 +11270,24 @@ Do you want to save message ? - + Tags وسوم - - - + + + Inbox الوارد - - + + Outbox الصادر @@ -10614,14 +11299,14 @@ Do you want to save message ? - + Sent إرسال - + Trash @@ -10690,7 +11375,7 @@ Do you want to save message ? - + Reply to All @@ -10708,12 +11393,12 @@ Do you want to save message ? - + From من - + Date التاريخ @@ -10741,12 +11426,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date إنقر للترتيب وفق التاريخ @@ -10801,7 +11486,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10866,14 +11556,14 @@ Do you want to save message ? - - + + Drafts مسودات - + 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 gray star beside any message. @@ -10893,7 +11583,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10902,18 +11597,18 @@ Do you want to save message ? - + Messages رسائل - + Click to sort by signature - + This message was signed and the signature checks @@ -10923,15 +11618,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10954,7 +11644,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link لصق رابط ريتروشير @@ -10988,7 +11693,7 @@ Do you want to save message ? - + Expand توسيع @@ -11031,7 +11736,7 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown حالة الشبكة مجهولة @@ -11075,26 +11780,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - موافق | مخدم ريتروشير - - - - Internet connection - اتصال انترنت - - - - No internet connection - لا يوجد اتصال بالانترنت - - - - No local network - لا يوجد شبكة محلية - NetworkDialog @@ -11208,7 +11893,7 @@ Do you want to save message ? - + Deny friend رفض صديق @@ -11266,7 +11951,7 @@ For security, your keyring was previously backed-up to file - + Personal signature توقيع شخصي @@ -11332,7 +12017,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11347,7 +12032,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11367,12 +12052,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11402,7 +12087,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11471,7 +12156,7 @@ Reported error: NewsFeed - + News Feed @@ -11490,18 +12175,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11510,6 +12190,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11653,7 +12338,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left أعلى لليسار @@ -11677,11 +12367,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11731,7 +12416,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11771,7 +12456,7 @@ Reported error: - + Test @@ -11786,13 +12471,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11841,24 +12526,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11882,12 +12549,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11922,33 +12599,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11959,6 +12654,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures إدراج تواقيع @@ -12013,7 +12713,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12187,12 +12887,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 أصدقاء: 0/0 - + Online Friends/Total Friends أصدقاء متصلين/كل الأصدقاء @@ -12290,7 +12990,7 @@ p, li { white-space: pre-wrap; } Add Comment - + أضف تعليق @@ -12544,7 +13244,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12605,18 +13305,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12625,27 +13325,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12655,22 +13364,7 @@ p, li { white-space: pre-wrap; } الحالة مجهولة. - - Title unavailable - - - - - Description unavailable - الوصف غير متاح - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12678,13 +13372,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12754,12 +13449,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12769,12 +13469,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12855,7 +13550,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12879,11 +13579,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13138,7 +13833,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13482,7 +14177,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13492,7 +14188,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13519,7 +14215,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13685,7 +14386,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend رفض صديق @@ -13705,7 +14406,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13736,7 +14437,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13770,11 +14471,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13789,7 +14485,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13839,7 +14535,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13849,7 +14545,7 @@ Reported error is: - + enabled @@ -13859,12 +14555,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13879,42 +14575,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13933,6 +14636,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13944,6 +14653,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13953,7 +14672,7 @@ Reported error is: - + <!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; } @@ -13975,21 +14694,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14056,13 +14777,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14080,7 +14802,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14105,7 +14827,27 @@ p, li { white-space: pre-wrap; } مشاركة تلقائية للمجلدات الواردة (مستحسن) - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14204,7 +14946,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 كيلوبايت @@ -14240,7 +14982,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14271,7 +15013,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14293,7 +15035,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14363,7 +15105,7 @@ p, li { white-space: pre-wrap; } Friends of Friends - + أصدقاء الأصدقاء @@ -14402,7 +15144,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14427,7 +15169,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14763,7 +15505,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14780,7 +15522,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14825,17 +15567,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14863,33 +15605,10 @@ Reducing image to %1x%2 pixels? - - SFListDelegate - - - B - بايت - - - - KB - كيلوبايت - - - - MB - ميغابايت - - - - GB - غيغابايت - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -14992,7 +15711,7 @@ Reducing image to %1x%2 pixels? Age - + العمر @@ -15070,12 +15789,12 @@ Reducing image to %1x%2 pixels? - + File Name اسم الملف - + Download تحميل @@ -15144,7 +15863,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15164,7 +15883,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15407,12 +16126,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15427,7 +16156,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15447,13 +16176,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address عنوان محلي - + External Address عنوان خارجي @@ -15463,28 +16192,28 @@ Reducing image to %1x%2 pixels? نظام اسماء نطاقات ديناميكي - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15507,13 +16236,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15523,23 +16252,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15549,17 +16267,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15569,90 +16335,95 @@ HiddenServicePort 9191 127.0.0.1:9191 مسح - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test - + Network شبكة - + IP Filters - + IP blacklist - + IP range - - - + + + Status الحالة - - + + Origin - - + + Reason - - + + Comment تعليق - + IPs - + IP whitelist - + Manual input @@ -15677,12 +16448,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15705,32 +16582,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15760,99 +16638,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15885,7 +16684,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15900,13 +16699,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16170,7 +16969,7 @@ Select the Friends with which you want to Share your Channel. تحميل - + Copy retroshare Links to Clipboard @@ -16195,7 +16994,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16211,7 +17010,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16234,7 +17033,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16260,11 +17059,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16273,6 +17073,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16333,7 +17138,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16575,12 +17380,12 @@ This choice can be reverted in settings. - + Connected - + متصل - + Unreachable @@ -16596,18 +17401,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16618,6 +17423,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16627,7 +17437,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16637,7 +17447,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16647,7 +17457,7 @@ This choice can be reverted in settings. - + UDP @@ -16661,13 +17471,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16682,7 +17502,7 @@ This choice can be reverted in settings. Message: - + رسالة: @@ -16860,7 +17680,7 @@ p, li { white-space: pre-wrap; } Subscribed - + مشترك @@ -16876,7 +17696,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16891,7 +17711,7 @@ p, li { white-space: pre-wrap; } Work - + العمل @@ -16925,7 +17745,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17058,16 +17878,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17263,25 +18085,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17306,7 +18128,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17332,39 +18159,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay - - + + Waiting - + Downloading - + Complete - + Queued @@ -17398,7 +18225,7 @@ Try to be patient! - + Transferring @@ -17408,7 +18235,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17466,7 +18293,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17572,7 +18399,7 @@ Try to be patient! - + Columns أعمدة @@ -17582,7 +18409,7 @@ Try to be patient! - + Path i.e: Where file is saved المسار @@ -17598,12 +18425,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17613,7 +18435,7 @@ Try to be patient! - + Create Collection... @@ -17628,7 +18450,7 @@ Try to be patient! - + Collection @@ -17638,17 +18460,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17684,7 +18506,7 @@ Try to be patient! - + Friends Directories مجلدات الأصدقاء @@ -17701,7 +18523,7 @@ Try to be patient! Age - + العمر @@ -17727,7 +18549,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17790,7 +18612,7 @@ Try to be patient! - + Age in seconds @@ -17805,7 +18627,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer نظير مجهول @@ -17814,16 +18646,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -17941,12 +18768,12 @@ Try to be patient! Yes - + نعم No - + لا @@ -18022,10 +18849,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18036,11 +18873,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18083,7 +18915,7 @@ Try to be patient! Work - + العمل @@ -18098,7 +18930,7 @@ Try to be patient! Share Options - + خيارات المشاركة @@ -18230,7 +19062,7 @@ Try to be patient! بحث - + My Groups @@ -18250,7 +19082,7 @@ Try to be patient! - + Subscribe to Group @@ -18507,7 +19339,7 @@ Try to be patient! Yourself - + نفسك diff --git a/retroshare-gui/src/lang/retroshare_bg.qm b/retroshare-gui/src/lang/retroshare_bg.qm index b437a3561fa5fdfa51684fd12cf4147f020283b6..061d3694b82b5ffde8dc586340d0af975c3903b9 100644 GIT binary patch literal 18306 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 ZcAHc3holx}hUPaXki-4(>+W5<{tpEcFb4nt delta 1272 zcmY+@UrbYH6aetka=+Vum)qOhUTdK$tukuC35KFT6+|eNFk}2fwlNi^1wj-oH3a{p zQ4)iSaob6m(Pd z-85;7kn#lSSO(A>1dtYjvF&dFVVo3ifsnk|2Vm(0;b}2|RV7^_uxJRt(5gE~8k3|D z)O|v-VNzVI`=##xq}f7RR+7>kQWhYYNu>S=tf`LQ>@dk>QrtqS^MSQZ0+`N`<}y-^ z0^2#l_lrn14eZQa0N{nqYLiI&1z^MN{DQq;%H+uBt2DHf@|*$KyGMg)?jUIC%5PgQOvOgBH?r zQf?vbi*z58>LJoOM7nx}(ITF}a-OtJlF~Ze0b!~ypMOL5S>wKie3T1FS1G$V&A%sB z#x9+_1CTWSKnwN{Y1&3wM@i)r>1-igX|dU$0XV0{gJKqd@h>uKjI>sf*|ntdAL&S& z1|NJ4;2JUCd!54zdTJdyy9lD-bXg|`6MR;Ewtl&Rcc@bGjcw+QYL+%MUFMZ`O5Z+- z0ob>YiYMFs>=jS!CC$4#05lC9ay}lFy!cpJg@1;9SSH`a-xUw8wZ~CZ5PRJoe5UkY zyXvSm;7_W8z0N#rauwlHEr~N)DK^Xr;a1IKvqs__u{}E)J9-kR6y|DdW1=+?n1Dcy#&x7W!wE#a0s8|v3Z{JEr)-`dN} z>tj4>d+9P93oXwyDptM*kK27{si@3E&#jz;drRkD6T=$~v#(&dO64{C@!u*thN?&K tlhp^XP7Ppt&84?#cCAU_XvBxxYqiW2{-~WmP4;7J + AWidget - + version - + версия RetroShare version - + RetroShare версия @@ -18,37 +18,42 @@ About RetroShare - + За RetroShare - + About + За + + + + Copy Info - + close - + затвори Max score: %1 - + Макс резултат: %1 Score: %1 - + Резултат: %1 Level: %1 - + Ниво: %1 Have fun ;-) - + Забавлявайте се ;-) @@ -56,7 +61,7 @@ Add Comment - + Добави коментар @@ -64,22 +69,22 @@ File type(extension): - + Тип файл(extension): Use default command - + Използвайте команда по подразбиране Command - + Команда RetroShare - + RetroShare @@ -222,7 +227,7 @@ Description: - + Описание: @@ -390,7 +395,7 @@ p, li { white-space: pre-wrap; } Description: - + Описание: @@ -447,7 +452,7 @@ p, li { white-space: pre-wrap; } Form - + Формуляр @@ -478,7 +483,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language @@ -518,24 +523,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -571,24 +580,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -618,8 +639,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -630,7 +656,7 @@ p, li { white-space: pre-wrap; } RetroShare - + RetroShare @@ -707,7 +733,7 @@ p, li { white-space: pre-wrap; } Remove - + Премахване на @@ -723,7 +749,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar @@ -731,7 +757,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -739,7 +765,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -747,13 +773,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage - + Show Settings Настройки @@ -808,7 +834,7 @@ p, li { white-space: pre-wrap; } Отмяна - + Since: @@ -818,6 +844,31 @@ p, li { white-space: pre-wrap; } + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -881,7 +932,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -893,6 +944,49 @@ p, li { white-space: pre-wrap; } Form + Формуляр + + + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale @@ -924,14 +1018,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -945,17 +1031,32 @@ p, li { white-space: pre-wrap; } - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -970,7 +1071,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 @@ -980,13 +1081,13 @@ p, li { white-space: pre-wrap; } - + Lobby chat - + Lobby management @@ -1018,7 +1119,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1033,12 +1134,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1084,7 +1185,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1123,18 +1224,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name Име - + Count @@ -1155,23 +1256,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private @@ -1180,13 +1281,18 @@ p, li { white-space: pre-wrap; } Public + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1196,27 +1302,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1231,7 +1347,7 @@ p, li { white-space: pre-wrap; } - + Lobby Name: @@ -1250,6 +1366,11 @@ p, li { white-space: pre-wrap; } Type: + + + Security: + + Peers: @@ -1260,19 +1381,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1281,23 +1403,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1307,22 +1424,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1341,7 +1478,7 @@ Double click lobbies to enter and chat. Remove Item - + Премахни елемент @@ -1375,7 +1512,7 @@ Double click lobbies to enter and chat. Отмяна - + Quick Message @@ -1384,12 +1521,37 @@ Double click lobbies to enter and chat. ChatPage - + General - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings @@ -1414,7 +1576,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1519,7 +1686,7 @@ Double click lobbies to enter and chat. Description: - + Описание: @@ -1528,7 +1695,7 @@ Double click lobbies to enter and chat. - + Incoming @@ -1572,6 +1739,16 @@ Double click lobbies to enter and chat. System message + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1663,7 +1840,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1686,7 +1863,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat @@ -1735,17 +1912,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close - + Send - + Bold @@ -1760,12 +1937,12 @@ Double click lobbies to enter and chat. - + Attach a Picture - + Strike @@ -1816,12 +1993,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - + Do you really want to physically delete the history? @@ -1846,7 +2048,7 @@ Double click lobbies to enter and chat. - + appears to be Offline. @@ -1871,7 +2073,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -1893,7 +2095,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1908,12 +2110,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1923,7 +2125,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1934,7 +2136,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1969,12 +2171,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1984,7 +2186,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2142,7 +2344,12 @@ Double click lobbies to enter and chat. - + + Node info + + + + Peer Address @@ -2184,7 +2391,7 @@ Double click lobbies to enter and chat. RetroShare - + RetroShare @@ -2229,12 +2436,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2270,6 +2472,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2325,7 +2532,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2358,17 +2565,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2378,18 +2575,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2399,13 +2585,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2426,11 +2607,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2511,6 +2697,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2536,7 +2762,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2550,61 +2776,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: Име: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: - + - + Options Настройки - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2624,7 +2891,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2680,12 +2947,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed - + Cannot get peer details of PGP key %1 @@ -2720,12 +2987,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation - + Ultimate @@ -2751,7 +3019,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2766,7 +3034,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2864,13 +3132,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2880,12 +3157,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2905,17 +3187,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2928,7 +3205,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2938,8 +3215,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2949,8 +3226,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2960,7 +3237,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2970,17 +3247,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3549,7 +3826,7 @@ p, li { white-space: pre-wrap; } Type - + Тип @@ -3557,7 +3834,7 @@ p, li { white-space: pre-wrap; } RetroShare - + RetroShare @@ -3789,7 +4066,7 @@ p, li { white-space: pre-wrap; } RetroShare - + RetroShare @@ -3837,9 +4114,9 @@ p, li { white-space: pre-wrap; } - + Forum - + Форум @@ -3847,7 +4124,7 @@ p, li { white-space: pre-wrap; } - + Attach File @@ -3877,12 +4154,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3891,7 +4168,7 @@ p, li { white-space: pre-wrap; } RetroShare - + RetroShare @@ -3920,12 +4197,12 @@ p, li { white-space: pre-wrap; } - + Send - + Forum Message @@ -3936,7 +4213,7 @@ Do you want to reject this message? - + Post as @@ -3971,7 +4248,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3985,7 +4262,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3995,12 +4287,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4075,7 +4377,7 @@ Do you want to reject this message? RetroShare - + RetroShare @@ -4159,7 +4461,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4181,7 +4488,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4258,7 +4565,7 @@ Do you want to reject this message? Copy link to clipboard - + Копирай връзката в клипборда @@ -4279,7 +4586,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4309,7 +4616,7 @@ Do you want to reject this message? - + Name Име @@ -4354,7 +4661,7 @@ Do you want to reject this message? - + Bucket @@ -4380,17 +4687,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4402,7 +4709,7 @@ Do you want to reject this message? Proxy - + Прокси @@ -4425,7 +4732,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4627,10 +4949,10 @@ Do you want to reject this message? Unknown - + Неизвестен - + RELAY END @@ -4664,19 +4986,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4686,13 +5013,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4762,12 +5091,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4900,7 +5250,7 @@ you plug it in. ExprParamElement - + to @@ -5005,7 +5355,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5180,7 +5530,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5220,12 +5570,12 @@ you plug it in. Misc - + Разни Set message to read on activate - + Поставям съобщение, за да прочетете на активиране @@ -5235,7 +5585,7 @@ you plug it in. Forum - + Форум @@ -5256,89 +5606,39 @@ you plug it in. FriendList - - - Status - Статус - - - - - + Last Contact - - - Avatar - - - - + Hide Offline Friends - - State - Статус - - - - Sort by State - - - - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name - Име - - - - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + + export friendlist - Set Root Decorated + export your friendlist including groups + + + + + import friendlist + + + + + import your friendlist including groups + + + + + + Show State @@ -5348,7 +5648,7 @@ you plug it in. - + Group @@ -5389,7 +5689,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5419,40 +5729,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5462,7 +5835,7 @@ you plug it in. - + Display @@ -5472,12 +5845,7 @@ you plug it in. - - Sort by - - - - + Node @@ -5487,17 +5855,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5545,30 +5913,35 @@ you plug it in. - - All + + Sort by state - None - Без - - - Name Име - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5662,12 +6035,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5678,12 +6056,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5696,7 +6069,7 @@ you plug it in. - + Name Име @@ -5720,7 +6093,7 @@ anonymous, you can use a fake email. Password - + Парола @@ -5748,7 +6121,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5763,7 +6136,7 @@ anonymous, you can use a fake email. - + Port @@ -5807,28 +6180,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5850,7 +6218,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5875,12 +6243,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5896,12 +6269,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5918,7 +6296,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6028,7 +6411,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6036,12 +6424,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6057,21 +6445,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6108,7 +6481,7 @@ Fill in your PGP password when asked, to sign your new key. Misc - + Разни @@ -6221,23 +6594,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6251,8 +6619,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6261,35 +6641,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6298,7 +6656,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6391,82 +6764,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - Цел - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6587,7 +6982,7 @@ p, li { white-space: pre-wrap; } Form - + Формуляр @@ -6646,14 +7041,14 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title - + Заглавие Search Title - + Търсене в заглавието @@ -6666,7 +7061,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6680,13 +7075,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6699,7 +7099,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6736,7 +7136,7 @@ p, li { white-space: pre-wrap; } Date - + Дата @@ -6797,7 +7197,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6808,17 +7208,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels @@ -6833,13 +7238,29 @@ p, li { white-space: pre-wrap; } - + + Select channel download directory + + + + Disable Auto-Download - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -6848,7 +7269,7 @@ p, li { white-space: pre-wrap; } Form - + Формуляр @@ -6901,7 +7322,7 @@ p, li { white-space: pre-wrap; } Form - + Формуляр @@ -6916,7 +7337,7 @@ p, li { white-space: pre-wrap; } Title - + Заглавие @@ -6983,12 +7404,12 @@ p, li { white-space: pre-wrap; } Expand - + Разширяване Remove Item - + Премахни елемент @@ -7008,7 +7429,7 @@ p, li { white-space: pre-wrap; } Hide - + Скрий @@ -7049,17 +7470,17 @@ p, li { white-space: pre-wrap; } Expand - + Разширяване Set as read and remove item - + Задай като четене и премахване на елемент Remove Item - + Премахни елемент @@ -7079,12 +7500,12 @@ p, li { white-space: pre-wrap; } Hide - + Скрий New - + Нов @@ -7147,12 +7568,12 @@ p, li { white-space: pre-wrap; } Title - + Заглавие Search Title - + Търсене в заглавието @@ -7180,7 +7601,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download @@ -7200,9 +7621,9 @@ p, li { white-space: pre-wrap; } - + Feeds - + Информационни канали @@ -7210,14 +7631,14 @@ p, li { white-space: pre-wrap; } - + Subscribers Description: - + Описание: @@ -7246,7 +7667,7 @@ p, li { white-space: pre-wrap; } Form - + Формуляр @@ -7256,7 +7677,7 @@ p, li { white-space: pre-wrap; } New - + Нов @@ -7281,12 +7702,12 @@ p, li { white-space: pre-wrap; } Author - + Автор Date - + Дата @@ -7368,14 +7789,14 @@ before you can comment GxsForumGroupDialog - + Create New Forum Forum - + Форум @@ -7414,12 +7835,12 @@ before you can comment Expand - + Разширяване Remove Item - + Премахни елемент @@ -7439,7 +7860,7 @@ before you can comment Hide - + Скрий @@ -7459,17 +7880,17 @@ before you can comment Expand - + Разширяване Set as read and remove item - + Задай като четене и премахване на елемент Remove Item - + Премахни елемент @@ -7489,7 +7910,7 @@ before you can comment Hide - + Скрий @@ -7497,17 +7918,17 @@ before you can comment Form - + Формуляр - + Start new Thread for Selected Forum - + Search forums - + Търсене Форуми @@ -7526,26 +7947,31 @@ before you can comment - + Title - + Заглавие Date - + Дата - + Author + Автор + + + + Save image - - + + Loading @@ -7575,19 +8001,19 @@ before you can comment - + Search Title - + Търсене в заглавието Search Date - + Дата на търсенето Search Author - + Търсене на автор @@ -7600,17 +8026,27 @@ before you can comment - + No name - + Няма име - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7628,7 +8064,7 @@ before you can comment Mark as read - + Маркирай като прочетени @@ -7640,7 +8076,7 @@ before you can comment Mark as unread - + Маркирай като непрочетено @@ -7648,17 +8084,48 @@ before you can comment - + Hide - + Скрий Expand + Разширяване + + + + This message was obtained from %1 - + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7678,29 +8145,55 @@ before you can comment - - - - RetroShare + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + + + RetroShare + RetroShare + + + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7725,7 +8218,7 @@ before you can comment - + Forum name @@ -7740,7 +8233,7 @@ before you can comment - + Description @@ -7750,12 +8243,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7771,7 +8264,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums @@ -7801,11 +8299,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7828,13 +8321,13 @@ before you can comment GxsGroupDialog - - + + Name Име - + Add Icon @@ -7849,7 +8342,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7859,36 +8352,36 @@ before you can comment - - + + Description - + Message Distribution - + Public - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7918,7 +8411,7 @@ before you can comment - + PGP Required @@ -7934,12 +8427,12 @@ before you can comment - + Comments - + Allow Comments @@ -7949,33 +8442,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7985,12 +8518,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8027,12 +8560,12 @@ before you can comment Type - + Тип Author - + Автор @@ -8063,7 +8596,7 @@ before you can comment - + Unsubscribe @@ -8073,12 +8606,12 @@ before you can comment - + Open in new tab - + Отваряне в нов раздел - + Show Details @@ -8095,7 +8628,7 @@ before you can comment Mark all as read - + Маркирай всички като прочетени @@ -8103,12 +8636,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8116,7 +8649,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8129,7 +8662,7 @@ before you can comment GxsIdDetails - + Loading @@ -8144,8 +8677,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8160,7 +8700,7 @@ before you can comment - + Identity&nbsp;name @@ -8175,7 +8715,7 @@ before you can comment - + [Unknown] @@ -8190,6 +8730,49 @@ before you can comment No name + Няма име + + + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer @@ -8385,31 +8968,10 @@ before you can comment About - + За - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8456,7 +9018,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8498,7 +9081,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8533,78 +9116,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8643,37 +9236,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search - + Unknown real name @@ -8683,72 +9297,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8769,42 +9340,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8814,7 +9385,57 @@ p, li { white-space: pre-wrap; } - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8824,12 +9445,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8845,7 +9471,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8860,7 +9486,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8870,15 +9531,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8899,7 +9580,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8914,7 +9600,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8924,17 +9610,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8944,7 +9620,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8959,29 +9635,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8991,7 +9655,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9034,8 +9698,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9043,7 +9707,7 @@ p, li { white-space: pre-wrap; } - + @@ -9053,13 +9717,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9079,14 +9743,14 @@ p, li { white-space: pre-wrap; } - + Create New Identity Type - + Тип @@ -9134,7 +9798,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9202,14 +9866,14 @@ p, li { white-space: pre-wrap; } - + Copy Копиране Remove - + Премахване на @@ -9232,16 +9896,35 @@ p, li { white-space: pre-wrap; } + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9251,7 +9934,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9300,7 +9983,7 @@ p, li { white-space: pre-wrap; } - + Options Настройки @@ -9314,7 +9997,7 @@ p, li { white-space: pre-wrap; } About - + За @@ -9334,12 +10017,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9373,7 +10056,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9410,7 +10098,7 @@ p, li { white-space: pre-wrap; } RetroShare - + RetroShare @@ -9423,7 +10111,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9455,7 +10143,7 @@ p, li { white-space: pre-wrap; } Hide - + Скрий @@ -9493,7 +10181,7 @@ p, li { white-space: pre-wrap; } - + Add Добавяне @@ -9518,7 +10206,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9527,38 +10215,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9639,7 +10306,7 @@ p, li { white-space: pre-wrap; } - + Subject: @@ -9650,12 +10317,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9665,7 +10342,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9735,7 +10412,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9760,47 +10437,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9826,12 +10478,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9842,7 +10494,7 @@ Do you want to save message to draft box? - + Add to "To" @@ -9862,12 +10514,7 @@ Do you want to save message to draft box? - - Friend Details - - - - + Original Message @@ -9877,19 +10524,21 @@ Do you want to save message to draft box? - + + To - + + Cc - + Sent @@ -9918,7 +10567,7 @@ Do you want to save message to draft box? RetroShare - + RetroShare @@ -9931,14 +10580,15 @@ Do you want to save message to draft box? - + + Bcc - + Unknown - + Неизвестен @@ -10046,7 +10696,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... @@ -10093,12 +10748,7 @@ Do you want to save message ? - - Show: - - - - + Close @@ -10108,32 +10758,57 @@ Do you want to save message ? От: - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10156,14 +10831,34 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Set message to read on activate - + Поставям съобщение, за да прочетете на активиране @@ -10171,7 +10866,7 @@ Do you want to save message ? - + Tags @@ -10188,7 +10883,7 @@ Do you want to save message ? Edit - + Редактиране @@ -10211,7 +10906,7 @@ Do you want to save message ? - + Edit Tag @@ -10221,22 +10916,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10517,7 +11202,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10584,24 +11269,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10613,14 +11298,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10689,7 +11374,7 @@ Do you want to save message ? - + Reply to All @@ -10707,15 +11392,15 @@ Do you want to save message ? - + From - + Date - + Дата @@ -10740,12 +11425,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10777,7 +11462,7 @@ Do you want to save message ? Search Date - + Дата на търсенето @@ -10800,7 +11485,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10822,12 +11512,12 @@ Do you want to save message ? Mark as read - + Маркирай като прочетени Mark as unread - + Маркирай като непрочетено @@ -10837,7 +11527,7 @@ Do you want to save message ? Edit - + Редактиране @@ -10865,14 +11555,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10892,7 +11582,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10901,18 +11596,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10922,15 +11617,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10953,7 +11643,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link @@ -10987,14 +11692,14 @@ Do you want to save message ? - + Expand - + Разширяване Remove Item - + Премахни елемент @@ -11019,7 +11724,7 @@ Do you want to save message ? Hide - + Скрий @@ -11030,7 +11735,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11074,26 +11779,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11207,7 +11892,7 @@ Do you want to save message ? - + Deny friend @@ -11252,7 +11937,7 @@ For security, your keyring was previously backed-up to file Unknown error - + Неизвестна грешка :( @@ -11265,7 +11950,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11297,7 +11982,7 @@ For security, your keyring was previously backed-up to file Unknown - + Неизвестен @@ -11312,7 +11997,7 @@ For security, your keyring was previously backed-up to file Never - + Никога @@ -11331,7 +12016,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11346,7 +12031,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11366,12 +12051,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11401,7 +12086,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11470,7 +12155,7 @@ Reported error: NewsFeed - + News Feed @@ -11489,18 +12174,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11509,6 +12189,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11551,7 +12236,7 @@ Reported error: Test - + Тест @@ -11652,7 +12337,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11676,11 +12366,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11699,7 +12384,7 @@ Reported error: Feed - + Емисия @@ -11730,7 +12415,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11770,9 +12455,9 @@ Reported error: - + Test - + Тест @@ -11785,13 +12470,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11840,24 +12525,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11881,19 +12548,29 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset Unknown - + Неизвестен @@ -11921,33 +12598,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11958,6 +12653,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -11971,7 +12671,7 @@ p, li { white-space: pre-wrap; } RetroShare - + RetroShare @@ -12012,7 +12712,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12068,7 +12768,7 @@ p, li { white-space: pre-wrap; } Unknown - + Неизвестен @@ -12087,12 +12787,12 @@ p, li { white-space: pre-wrap; } Expand - + Разширяване Remove Item - + Премахни елемент @@ -12175,7 +12875,7 @@ p, li { white-space: pre-wrap; } Hide - + Скрий @@ -12186,12 +12886,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12231,7 +12931,7 @@ p, li { white-space: pre-wrap; } Form - + Формуляр @@ -12289,7 +12989,7 @@ p, li { white-space: pre-wrap; } Add Comment - + Добави коментар @@ -12302,7 +13002,7 @@ p, li { white-space: pre-wrap; } Form - + Формуляр @@ -12342,7 +13042,7 @@ p, li { white-space: pre-wrap; } Form - + Формуляр @@ -12455,7 +13155,7 @@ requesting to edit it! Remove - + Премахване на @@ -12512,7 +13212,7 @@ p, li { white-space: pre-wrap; } About - + За @@ -12543,7 +13243,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12604,18 +13304,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12624,27 +13324,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12654,22 +13363,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12677,13 +13371,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12753,12 +13448,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12768,12 +13468,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12798,7 +13493,7 @@ malicious behavior of crafted plugins. RetroShare - + RetroShare @@ -12833,7 +13528,7 @@ malicious behavior of crafted plugins. Title - + Заглавие @@ -12854,7 +13549,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12878,11 +13578,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -12933,12 +13628,12 @@ malicious behavior of crafted plugins. Expand - + Разширяване Remove Item - + Премахни елемент @@ -12958,7 +13653,7 @@ malicious behavior of crafted plugins. Hide - + Скрий @@ -13002,12 +13697,12 @@ malicious behavior of crafted plugins. Set as read and remove item - + Задай като четене и премахване на елемент New - + Нов @@ -13017,7 +13712,7 @@ malicious behavior of crafted plugins. Remove Item - + Премахни елемент @@ -13035,7 +13730,7 @@ malicious behavior of crafted plugins. Form - + Формуляр @@ -13045,7 +13740,7 @@ malicious behavior of crafted plugins. New - + Нов @@ -13085,12 +13780,12 @@ malicious behavior of crafted plugins. Next - + Следващ RetroShare - + RetroShare @@ -13100,7 +13795,7 @@ malicious behavior of crafted plugins. Previous - + Предишна @@ -13137,7 +13832,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13382,7 +14077,7 @@ p, li { white-space: pre-wrap; } RetroShare - + RetroShare @@ -13467,7 +14162,7 @@ p, li { white-space: pre-wrap; } Date - + Дата @@ -13481,7 +14176,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13491,7 +14187,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13518,7 +14214,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13590,7 +14291,7 @@ and open the Make Friend Wizard. Forum not found - + Форума не е намерен @@ -13684,7 +14385,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13704,7 +14405,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13717,7 +14418,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace RetroShare - + RetroShare @@ -13735,7 +14436,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13769,11 +14470,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13788,7 +14484,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13838,7 +14534,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13848,7 +14544,7 @@ Reported error is: - + enabled @@ -13858,12 +14554,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13878,42 +14574,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13932,6 +14635,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13943,6 +14652,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13952,7 +14671,7 @@ Reported error is: - + <!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; } @@ -13974,21 +14693,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14055,13 +14776,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14079,7 +14801,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14096,7 +14818,7 @@ p, li { white-space: pre-wrap; } Remove - + Премахване на @@ -14104,7 +14826,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14203,7 +14945,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14223,7 +14965,7 @@ p, li { white-space: pre-wrap; } Form - + Формуляр @@ -14239,7 +14981,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14270,7 +15012,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14292,7 +15034,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14401,7 +15143,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14426,7 +15168,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14456,7 +15198,7 @@ p, li { white-space: pre-wrap; } Unknown - + Неизвестен @@ -14762,7 +15504,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14779,7 +15521,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14824,17 +15566,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14862,33 +15604,10 @@ Reducing image to %1x%2 pixels? - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -14986,7 +15705,7 @@ Reducing image to %1x%2 pixels? Type - + Тип @@ -15069,12 +15788,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download @@ -15119,7 +15838,7 @@ Reducing image to %1x%2 pixels? Remove - + Премахване на @@ -15130,7 +15849,7 @@ Reducing image to %1x%2 pixels? Folder - + Папка @@ -15143,7 +15862,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15163,7 +15882,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15179,12 +15898,12 @@ Reducing image to %1x%2 pixels? Expand - + Разширяване Remove Item - + Премахни елемент @@ -15216,7 +15935,7 @@ Reducing image to %1x%2 pixels? Hide - + Скрий @@ -15286,12 +16005,12 @@ Reducing image to %1x%2 pixels? Expand - + Разширяване Remove Item - + Премахни елемент @@ -15370,7 +16089,7 @@ Reducing image to %1x%2 pixels? Hide - + Скрий @@ -15406,12 +16125,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15426,7 +16155,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15446,13 +16175,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address - + External Address @@ -15462,28 +16191,28 @@ Reducing image to %1x%2 pixels? - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15506,13 +16235,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15522,23 +16251,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15548,17 +16266,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15568,90 +16334,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - - Test + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> - + + Test + Тест + + + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status Статус - - + + Origin - - + + Reason - - + + Comment - + IPs - + IP whitelist - + Manual input @@ -15676,12 +16447,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15694,7 +16571,7 @@ HiddenServicePort 9191 127.0.0.1:9191 Remove - + Премахване на @@ -15704,32 +16581,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15759,99 +16637,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15884,7 +16683,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15899,13 +16698,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16041,7 +16840,7 @@ Select the Friends with which you want to Share your Channel. Remove - + Премахване на @@ -16057,7 +16856,7 @@ Select the Friends with which you want to Share your Channel. Edit - + Редактиране @@ -16169,7 +16968,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -16194,7 +16993,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16210,7 +17009,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16233,7 +17032,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16259,11 +17058,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16272,6 +17072,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16332,7 +17137,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16352,7 +17157,7 @@ Select the Friends with which you want to Share your Channel. RetroShare - + RetroShare @@ -16465,7 +17270,7 @@ This choice can be reverted in settings. About - + За @@ -16574,12 +17379,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16595,18 +17400,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16617,6 +17422,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16626,7 +17436,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16636,7 +17446,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16646,7 +17456,7 @@ This choice can be reverted in settings. - + UDP @@ -16660,13 +17470,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16875,7 +17695,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16924,7 +17744,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17057,16 +17877,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17262,25 +18084,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17305,7 +18127,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17331,39 +18158,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay - - + + Waiting - + Downloading - + Изтегляне - + Complete - + Queued @@ -17380,7 +18207,7 @@ p, li { white-space: pre-wrap; } Unknown - + Неизвестен @@ -17397,7 +18224,7 @@ Try to be patient! - + Transferring @@ -17407,14 +18234,14 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? RetroShare - + RetroShare @@ -17465,7 +18292,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17571,7 +18398,7 @@ Try to be patient! - + Columns @@ -17581,7 +18408,7 @@ Try to be patient! - + Path i.e: Where file is saved Пътека @@ -17597,12 +18424,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17612,7 +18434,7 @@ Try to be patient! - + Create Collection... @@ -17627,7 +18449,7 @@ Try to be patient! - + Collection @@ -17637,17 +18459,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17683,7 +18505,7 @@ Try to be patient! - + Friends Directories @@ -17726,7 +18548,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17789,7 +18611,7 @@ Try to be patient! - + Age in seconds @@ -17804,7 +18626,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17813,16 +18645,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -17988,7 +18815,7 @@ Try to be patient! Form - + Формуляр @@ -18021,10 +18848,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18035,11 +18872,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18092,7 +18924,7 @@ Try to be patient! Description: - + Описание: @@ -18211,7 +19043,7 @@ Try to be patient! Edit - + Редактиране @@ -18229,7 +19061,7 @@ Try to be patient! - + My Groups @@ -18249,7 +19081,7 @@ Try to be patient! - + Subscribe to Group @@ -18471,7 +19303,7 @@ Try to be patient! New - + Нов @@ -18559,7 +19391,7 @@ Try to be patient! Unknown Unknown (size) - + Неизвестен @@ -18600,7 +19432,7 @@ Try to be patient! Unknown - + Неизвестен diff --git a/retroshare-gui/src/lang/retroshare_ca_ES.qm b/retroshare-gui/src/lang/retroshare_ca_ES.qm index 45514264a4ec796980b723ba69bbd460cee77866..a4a0f03fb7d48ef306fad174d281943be571abd7 100644 GIT binary patch delta 87924 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 + AWidget - + version versió @@ -21,12 +21,17 @@ Sobre RetroShare - + About Sobre - + + Copy Info + Informació de la copia + + + close tancar @@ -494,7 +499,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Llengua @@ -534,24 +539,28 @@ p, li { white-space: pre-wrap; } Barra d'eines - - + + On Tool Bar A la barra d'eines - - + On List Item A la llista d'elements - + Where do you want to have the buttons for menu? On vols tindre els botons pel menú? - + + On List Ite&m + A la llista d'ele&ments + + + Where do you want to have the buttons for the page? On vols tindre els botons per la pàgina? @@ -587,24 +596,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 Mida icona = 8x8 - - + + Icon Size = 16x16 Mida icona = 16x16 - - + + Icon Size = 24x24 Mida icona = 24x24 - + + + Icon Size = 64x64 + Mida Icona = 64x64 + + + + + Icon Size = 128x128 + Mida Icona = 128x128 + + + Status Bar Barra d'estat @@ -634,8 +655,13 @@ p, li { white-space: pre-wrap; } Mostra l'àrea de notificació a la barra d'estat - - + + Disable SysTray ToolTip + Deshabilitar consells sobre l'àrea de notificació + + + + Icon Size = 32x32 Mida icona = 32x32 @@ -696,7 +722,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Cancel Download - Cancel·lar baixada + Cancel·lar descarrega @@ -740,7 +766,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem AvatarWidget - + Click to change your avatar Feu clic per canviar l'avatar @@ -748,7 +774,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem BWGraphSource - + KB/s KB/s @@ -756,7 +782,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem BWListDelegate - + N/A N/A @@ -764,13 +790,13 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem BandwidthGraph - + RetroShare Bandwidth Usage Ús d'ampla de banda del RetroShare - + Show Settings Mostra la configuració @@ -825,7 +851,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Cancel·la - + Since: Des de: @@ -835,6 +861,31 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Amagar opcions + + BandwidthStatsWidget + + + + Sum + Suma + + + + + All + Tot + + + + KB/s + KiB/s + + + + Count + Comptador + + BwCtrlWindow @@ -898,7 +949,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Recepció permesa - + TOTALS TOTALS @@ -913,6 +964,49 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Formulari + + BwStatsWidget + + + Form + Formulari + + + + Friend: + Amic: + + + + Type: + Tipus: + + + + Up + Amunt + + + + Down + Avall + + + + Service: + Servei: + + + + Unit: + Unitat: + + + + Log scale + Escala logaritmica + + ChannelPage @@ -941,14 +1035,6 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Obrir cada canal en una nova pestanya - - ChatDialog - - - Talking to - Parlant amb - - ChatLobbyDialog @@ -962,17 +1048,32 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Canviar sobrenom - + Mute participant Silencia participant - + + Send Message + Enviar missatge + + + + Sort by Name + Ordenar per nom + + + + Sort by Activity + Ordenar per activitat + + + Invite friends to this lobby Invitar amics a aquesta sala - + Leave this lobby (Unsubscribe) Abandonar la sala (Dessubscriure's) @@ -987,7 +1088,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Seleccionar els amics a invitar: - + Welcome to lobby %1 Benvinguts a la sala de xat %1 @@ -997,13 +1098,13 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Tema: %1 - + Lobby chat Sala de xat - + Lobby management @@ -1035,7 +1136,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Voleu cancel·lar la subscripció a aquesta sala de xat? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Clic amb el botó dret per silenciar participants<br/>feu doble clic per adreçar-t'hi directament<br/> @@ -1050,12 +1151,12 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem segons - + Start private chat Inicia xat privat - + Decryption failed. Ha fallat la desencriptació. @@ -1101,7 +1202,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem ChatLobbyUserNotify - + Chat Lobbies Sales de xat @@ -1140,18 +1241,18 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem ChatLobbyWidget - + Chat lobbies Sales de xat - - + + Name Nom - + Count Comte @@ -1172,23 +1273,23 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem - + Create chat lobby Crear sala de xat - + [No topic provided] [No s'ha proporcionat cap assumpte] - + Selected lobby info Informació de la sala seleccionada - + Private Privat @@ -1197,13 +1298,18 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Public Públic + + + Anonymous IDs accepted + IDs anònimes acceptades + You're not subscribed to this lobby; Double click-it to enter and chat. No estàs subscrit a aquesta sala; Fes doble clic per entrar-hi i xatejar. - + Remove Auto Subscribe Eliminar auto-subscripció @@ -1213,27 +1319,37 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Afegir auto-subscripció - + %1 invites you to chat lobby named %2 %1 t'invita a una sala de xat anomenada %2 - + Search Chat lobbies Cercar sales de xat - + Search Name Cercar nom - + Subscribed Subscrit - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Sales de xat</h1> <p>Les sales de xat són sales distribuïdes que funcionen molt semblant a les de IRC. Et permeten parlar anònimament amb moltíssima gent sense haver-los de fer amics.</p> <p>Una sala de xat pot ser pública (els teus amics la veuen ) o privades (els teus amics no poden veure-la si no els invites amb <img src=":/images/add_24x24.png" width=%2/>). Un cop has sigut invitat a una sala privada podràs veure quan els teus amics la estan usant.</p> <p>La llista de l'esquerra mostra sales de xat en que participen els teus amics. Pots o bé <ul> <li>Fer clic dret per crear una sala de xat nova</li> <li>Fer doble clic per entrar a una sala, xatejar, i que els teus amics ho vegin</li> </ul> Nota: Per a que les sales de xat funcionin correctament el teu ordinador a d'anar a l'hora. Comprova-ho! </p> + + + + Create a non anonymous identity and enter this lobby + Crea una identitat no anònima i entra a aquesta sala + + + Columns Columnes @@ -1248,7 +1364,7 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem No - + Lobby Name: Nom de la sala: @@ -1267,6 +1383,11 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem Type: Tipus: + + + Security: + Seguretat: + Peers: @@ -1277,12 +1398,13 @@ Però recorda: Totes les dades generades aquí *SERAN* perdudes quan actualitzem + TextLabel EtiquetaText - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1291,7 +1413,7 @@ Selecciona entre les sales de la esquerra per mostrar-ne els detalls. Fes doble clic a les sales per entrar-hi i xatejar. - + Private Subscribed Lobbies Sales privades subscrites @@ -1300,23 +1422,18 @@ Fes doble clic a les sales per entrar-hi i xatejar. Public Subscribed Lobbies Sales públiques subscrites - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Sales de xat</h1> <p>Les sales de xat són sales distribuïdes que funcionen molt semblant a les de IRC. Et permeten parlar anònimament amb moltíssima gent sense haver-los de fer amics.</p> <p>Una sala de xat pot ser pública (els teus amics la veuen ) o privades (els teus amics no poden veure-la si no els invites amb <img src=":/images/add_24x24.png" width=12/>). Un cop has sigut invitat a una sala privada podràs veure quan els teus amics la estan usant.</p> <p>La llista de l'esquerra mostra sales de xat en que participen els teus amics. Pots o bé <ul> <li>Fer clic dret per crear una sala de xat nova</li> <li>Fer doble clic per entrar a una sala, xatejar, i que els teus amics ho vegin</li> </ul> Nota: Per a que les sales de xat funcionin correctament el teu ordinador a d'anar a l'hora. Comprova-ho! </p> - Chat Lobbies Sales de xat - + Leave this lobby Abandonar aquesta sala - + Enter this lobby Entrar en aquesta sala @@ -1326,22 +1443,42 @@ Fes doble clic a les sales per entrar-hi i xatejar. Entrar en aquesta sala com... - + + Default identity is anonymous + La identitat per defecte és anònima + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + No pots accedir a aquesta sala amb la teva identitat per defecte perquè la identitat és anònima i la sala ho prohibeix. + + + + No anonymous IDs + Ids anònims prohibits + + + + You will need to create a non anonymous identity in order to join this chat lobby. + Hauràs de crear un identitat no anònima per tal d'accedir a aquesta sala de xat. + + + You will need to create an identity in order to join chat lobbies. Necessites crear una identitat abans de poder entrar en sales de xat. - + Choose an identity for this lobby: Escull una identitat per aquesta sala: - + Create an identity and enter this lobby Crea una identitat i entra a aquesta sala - + Show @@ -1394,7 +1531,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Cancel·la - + Quick Message Missatge ràpid @@ -1403,12 +1540,37 @@ Fes doble clic a les sales per entrar-hi i xatejar. ChatPage - + General General - + + Distant Chat + Xat distant + + + + Everyone + Tothom + + + + Contacts + Contactes + + + + Nobody + Ningú + + + + Accept encrypted distant chat from + Acceptar xats distants encriptats de + + + Chat Settings Configuració xat @@ -1433,7 +1595,12 @@ Fes doble clic a les sales per entrar-hi i xatejar. Activa mida de lletra personalitzat - + + Minimum font size + Mida de lletra mínima + + + Enable bold Activa negreta @@ -1547,7 +1714,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Xat privat - + Incoming Entrants @@ -1591,6 +1758,16 @@ Fes doble clic a les sales per entrar-hi i xatejar. System message Missatge de sistema + + + UserName + NomUsuari + + + + /me is sending a message with /me + /me està enviant un missatge amb /me + Chat @@ -1682,7 +1859,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Mostra la barra per defecte - + Private chat invite from Invitació a xat privat de @@ -1705,7 +1882,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. ChatStyle - + Standard style for group chat Estil estàndard per al xat en grup @@ -1754,17 +1931,17 @@ Fes doble clic a les sales per entrar-hi i xatejar. ChatWidget - + Close Tancar - + Send Enviar - + Bold Negreta @@ -1779,12 +1956,12 @@ Fes doble clic a les sales per entrar-hi i xatejar. Cursiva - + Attach a Picture Adjunta una imatge - + Strike Vaga @@ -1835,12 +2012,37 @@ Fes doble clic a les sales per entrar-hi i xatejar. Restablir tipografia per defecte - + + Quote + Cita + + + + Quotes the selected text + Cita el text seleccionat + + + + Drop Placemark + Treure punt + + + + Insert horizontal rule + Inserir regla horitzontal + + + + Save image + Desar imatge + + + is typing... està escrivint... - + Do you really want to physically delete the history? Segur que vols eliminar físicament l'historial? @@ -1865,7 +2067,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Arxiu de text (*.txt );;Tots els arxius (*) - + appears to be Offline. sembla que està fora de línia. @@ -1890,7 +2092,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. està ocupat i pot no respondre - + Find Case Sensitively Cercar diferenciant majúscules i minúscules @@ -1912,7 +2114,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. No deixis de colorejar fins trobar X elements (Necessita més UCP) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Trobar anterior </b><br/><i>Ctrl+Shift+G</i> @@ -1927,12 +2129,12 @@ Fes doble clic a les sales per entrar-hi i xatejar. <b>Trobar </b><br/><i>Ctrl+F</i> - + (Status) (Estat) - + Set text font & color Estableix tipus de lletra i color @@ -1942,7 +2144,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Adjunta un arxiu - + WARNING: Could take a long time on big history. ATENCIÓ: Pot trigar molta estona en un registre històric gros. @@ -1953,7 +2155,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Marca el text seleccionat</b><br><i>Ctrl+M</i> @@ -1988,12 +2190,12 @@ Fes doble clic a les sales per entrar-hi i xatejar. Casella de cerca - + Type a message here Escriu un missatge aquí - + Don't stop to color after No t'aturis a colorejar després de @@ -2003,7 +2205,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. elements trobats (necessita més UCP) - + Warning: Avís: @@ -2161,7 +2363,12 @@ Fes doble clic a les sales per entrar-hi i xatejar. Detalls - + + Node info + Informació de node + + + Peer Address Adreça del contacte @@ -2248,12 +2455,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Detalls del node de RetroShare - - Location info - Informació d'ubicació - - - + Node name : Nom del node : @@ -2289,6 +2491,11 @@ Fes doble clic a les sales per entrar-hi i xatejar. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + <html><head/><body><p>Aquesta opció et permet descarregar automàticament un arxiu recomanat en un missatge que provingui d'aquest node. Això es pot utilitzar per exemple per enviar arxius entre els teus nodes.</p></body></html> + + + Auto-download recommended files from this node Descarregar automàticament els arxius recomanats d'aquest node @@ -2300,7 +2507,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Hidden Address - Adressa oculta + Adreça oculta @@ -2321,12 +2528,12 @@ Fes doble clic a les sales per entrar-hi i xatejar. an <b>onion address</b> and <b>port</b> - una <b>adressa onion</b> i <b>port</b> + una <b>adreça onion</b> i <b>port</b> an <b>IP address</b> and <b>port</b> - una <b>adressa IP</b> i <b>port</b> + una <b>adreça IP</b> i <b>port</b> @@ -2344,7 +2551,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Obligatori que estugui a la llista blanca - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> <html><head/><body><p>Aquesta és la ID del node <span style=" font-weight:600;">OpenSSL</span> certifcat, signat pels a sobre llistats <span style=" font-weight:600;">clau</span> PGP. </p></body></html> @@ -2377,17 +2584,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Afegir un nou amic - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Aquest assistent ajudarà a connectar-te als teus amics de la xarxa RetroShare.<br>Hi ha disponibles els següent mètodes: - - - - &Enter the certificate manually - &Introdueix certificat manualment - - - + &You get a certificate file from your friend &El teu amic et proporciona un arxiu de certificat @@ -2397,19 +2594,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. &Fes-te amic dels amics seleccionats dels teus amics - - &Enter RetroShare ID manually - &Introdueix l'Id de RetroShare manualment - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Envia una invitació per correu electrònic -(Rebrà un correu electrònic amb instruccions sobre com descarregar el RetroShare) - - - + Text certificate Certificat en text @@ -2419,13 +2604,8 @@ Fes doble clic a les sales per entrar-hi i xatejar. Utilitza text representatiu dels certificats PGP. - - The text below is your PGP certificate. You have to provide it to your friend - El text inferior es el teu certificat PGP. L'has de proporcionar al teu amic - - - - + + Include signatures Inclou les signatures @@ -2446,11 +2626,16 @@ Fes doble clic a les sales per entrar-hi i xatejar. - Please, paste your friends PGP certificate into the box below - Si us plau, enganxa el certificat PGP dels teus amics a la caixa inferior + Please, paste your friend's Retroshare certificate into the box below + Si us plau, enganxa el certificat de Retroshare dels teus amics a la caixa inferior - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + <html><head/><body><p>Aquesta casella espera el certificat de Retroshare del teu amic. AVÍS: no és el mateix que la clau PGP del teu amic. No enganxis la clau PGP del teu amic aquí (Ni tan sols part d'ella). No funcionarà.</p></body></html> + + + Certificate files Arxiu de certificat @@ -2531,6 +2716,46 @@ Fes doble clic a les sales per entrar-hi i xatejar. + RetroShare is better with Friends + RetroShare és millor amb Amics + + + + Invite your Friends from other Networks to RetroShare. + Invita els teus Amics d'altres Xarxes al RetroShare. + + + + GMail + GMail + + + + Yahoo + Yahoo + + + + Outlook + Outlook + + + + AOL + AOL + + + + Yandex + Yandex + + + + Email + Correu electrònic + + + Invite Friends by Email Convidar amics per correu electrònic @@ -2556,7 +2781,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. - + Friend request Petició d'amic @@ -2570,61 +2795,103 @@ Fes doble clic a les sales per entrar-hi i xatejar. - + Peer details Detalls del contacte - - + + Name: Nom: - - + + Email: Correu electrònic: - - + + Node: + Node: + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Si us plau, tingues en compte que RetroShare necessitarà una quantitat excessiva d'ample de banda, memòria i CPU si afegeixes masses amics. Pots afegir tants amics com vulguis, però més de 40 serà probablement excessiu. + + + Location: Ubicació: - + - + Options Opcions - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Aquest assistent t'ajudarà a connectar amb el(s) teu(s) amic(s) de la xarxa RetroShare.<br>Escull com t'agradaria afegir un amic: + + + + Enter the certificate manually + Introdueix el certificat manualment + + + + Enter RetroShare ID manually + Introdueix la Id de RetroShare manualment + + + + &Send an Invitation by Web Mail Providers + &Envia una Invitació utilitzant web mail + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + &Envia una invitació per correu electrònic +(El teu amic rebrà un correu electrònic amb instruccions sobre com descarregar el RetroShare) + + + + Recommend many friends to each other + Recomanar molts amics els uns als altres + + + + Add friend to group: Afegir amic al grup: - - + + Authenticate friend (Sign PGP Key) Autentica amic (Signa clau PGP) - - + + Add as friend to connect with Afegir com amic amb qui connectar - - + + To accept the Friend Request, click the Finish button. Per acceptar la petició de l'amic, clica al botó acabar. - + Sorry, some error appeared Ho sentim, ha aparegut algun error @@ -2644,7 +2911,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. Detalls sobre el teu amic: - + Key validity: Validesa de la clau: @@ -2700,12 +2967,12 @@ Fes doble clic a les sales per entrar-hi i xatejar. - + Certificate Load Failed Càrrega de certificat fallida - + Cannot get peer details of PGP key %1 No es poden aconseguir els detalls del contacte de la clau PGP %1 @@ -2740,12 +3007,13 @@ Fes doble clic a les sales per entrar-hi i xatejar. Id contacte - + + RetroShare Invitation Invitació al RetroShare - + Ultimate Definitiu @@ -2771,7 +3039,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. - + You have a friend request from Tens una petició d'amic de @@ -2786,7 +3054,7 @@ Fes doble clic a les sales per entrar-hi i xatejar. El contacte %1 no està disponible a la teva xarxa - + Use new certificate format (safer, more robust) Utilitza el format nou de certificat (més robust i segur) @@ -2884,13 +3152,22 @@ Fes doble clic a les sales per entrar-hi i xatejar. *** Cap *** - + Use as direct source, when available Utilitza com a font directa quan estigui disponible - - + + IP-Addr: + Adreça IP: + + + + IP-Address + Adreça IP: + + + Recommend many friends to each others Recomanar molts amics els uns als altres @@ -2900,12 +3177,17 @@ Fes doble clic a les sales per entrar-hi i xatejar. Recomanacions de l'amic - + + The text below is your Retroshare certificate. You have to provide it to your friend + El text a sota és el teu certificat de Retroshare. L'has de proporcionar al teu amic + + + Message: Missatge: - + Recommend friends Recomanar amics @@ -2925,17 +3207,12 @@ Fes doble clic a les sales per entrar-hi i xatejar. Si us plau, selecciona almenys un amic com a destinatari. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Si us plau, tingues en compte que RetroShare necessitarà una quantitat excessiva d'ample de banda, memòria i CPU si afegeixes masses amics. Pots afegir tants amics com vulguis, però més de 40 sigui probablement excessiu. - - - + Add key to keyring Afegeix clau al clauer - + This key is already in your keyring Aquesta claus ja és al clauer @@ -2951,7 +3228,7 @@ missatges distants a aquest contacte encara que no sigueu amics. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. El certificat té un nombre de versió erroni. Recorda que les xarxes v0.6 i v0.5 són incompatibles. @@ -2961,8 +3238,8 @@ encara que no sigueu amics. Id. de node invàlid. - - + + Auto-download recommended files Descarregar automàticament els arxius recomanats @@ -2972,8 +3249,8 @@ encara que no sigueu amics. Pot utilitzar-se com a font directa - - + + Require whitelist clearance to connect Obligatori que estigui a la llista blanca per connectar @@ -2983,7 +3260,7 @@ encara que no sigueu amics. Afegir la IP a la llista blanca - + No IP in this certificate! Aquest certificat no té IP! @@ -2993,17 +3270,17 @@ encara que no sigueu amics. <p>Aquest certificat no té IP. Només podràs utilitzar descobriment i DHT per trobar-lo. Com que és necessari que estigui a la llista blanca d'IPs el contacte provocarà un avís a la pestanya de Novetats. Des d'allí podràs afegir la IP a la llista blanca.</p> - + Added with certificate from %1 Afegit amb el certificat de %1 - + Paste Cert of your friend from Clipboard Enganxa el certificat del teu amic des del porta-retalls - + Certificate Load Failed:can't read from file %1 Carrega de certificat fallada: no es pot llegir de l'arxiu %1 @@ -3874,7 +4151,7 @@ p, li { white-space: pre-wrap; } Publica missatge al fòrum - + Forum Fòrum @@ -3884,7 +4161,7 @@ p, li { white-space: pre-wrap; } Assumpte - + Attach File Adjuntar arxiu @@ -3914,12 +4191,12 @@ p, li { white-space: pre-wrap; } Començar nova conversa - + No Forum Sense fòrum - + In Reply to En resposta a @@ -3957,12 +4234,12 @@ p, li { white-space: pre-wrap; } Segur que vols generar %1 missatges? - + Send Enviar - + Forum Message Missatge del fòrum @@ -3974,7 +4251,7 @@ Do you want to reject this message? Vols descartar aquest missatge? - + Post as Publica com @@ -4009,8 +4286,8 @@ Vols descartar aquest missatge? - Security policy: - Política de seguretat: + Visibility: + Visibilitat: @@ -4023,7 +4300,22 @@ Vols descartar aquest missatge? Privat (Funciona només per invitació) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + <html><head/><body><p>Si marques aquí només ids signades amb PGP podran ser utilitzades per accedir i parlar a la sala. Aquesta limitació evita l'spam anònim donat que esdevé possible que, com a mínim algunes de les persones de la sala, puguin localitzar el node de l'spammer.</p></body></html> + + + + require PGP-signed identities + requereix identitats signades amb PGP + + + + Security: + Seguretat: + + + Select the Friends with which you want to group chat. Escull els amics amb qui vols fer un xat en grup. @@ -4033,12 +4325,22 @@ Vols descartar aquest missatge? Amics convidats - + + Put a sensible lobby name here + Escriu un nom adient per la sala + + + + Set a descriptive topic here + Estableix un tema descriptiu aquí + + + Contacts: Contactes: - + Identity to use: Identitat a utilitzar: @@ -4197,7 +4499,12 @@ Vols descartar aquest missatge? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>Retroshare utilitza el DHT de Bittorrent com a repetidor per les connexions. No emmagatzema la teva IP al DHT. ⇥⇥⇥⇥ En lloc d'això el DHT és utilitzat pels teus contactes per contactar amb tu mentre es processen peticions DHT estàndard. ⇥⇥⇥⇥⇥⇥⇥⇥⇥⇥⇥⇥L'indicador d'estat es tornarà verd tan aviat com el Retroshare obtingui una resposta per DHT d'un dels teus amics.</p> + + + DHT Off DHT desactivat @@ -4219,8 +4526,8 @@ Vols descartar aquest missatge? - DHT Error - Error DHT + No peer found in DHT + Cap contacte trobar al DHT @@ -4317,7 +4624,7 @@ Vols descartar aquest missatge? DhtWindow - + Net Status Estat de la xarxa @@ -4347,7 +4654,7 @@ Vols descartar aquest missatge? Adreça del contacte - + Name Nom @@ -4392,7 +4699,7 @@ Vols descartar aquest missatge? RsId - + Bucket Cub @@ -4418,17 +4725,17 @@ Vols descartar aquest missatge? - + Last Sent Últims enviats - + Last Recv Últims Rebuts - + Relay Mode Mode de repetició @@ -4463,7 +4770,22 @@ Vols descartar aquest missatge? Ample de banda - + + IP + IP + + + + Search IP + Cercar IP + + + + Copy %1 to clipboard + Copiar %1 al porta-retalls + + + Unknown NetState EstatXarxa desconegut @@ -4668,7 +4990,7 @@ Vols descartar aquest missatge? Desconegut - + RELAY END FINAL REPETIDOR @@ -4702,19 +5024,24 @@ Vols descartar aquest missatge? - + %1 secs ago fa %1 seg - + %1B/s %1B/s - + + Relays + Repetidors + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4724,13 +5051,15 @@ Vols descartar aquest missatge? mai - + + + DHT DHT - + Net Status: Estat de la xarxa: @@ -4800,12 +5129,33 @@ Vols descartar aquest missatge? Repetidor: - + + Filter: + Filtre: + + + + Search Network + Cerca a la xarxa + + + + + Peers + Veï + + + + Relay + Repetidor + + + DHT Graph Gràfic DHT - + Proxy VIA VIA servidor intermediari @@ -4942,7 +5292,7 @@ seus arxius quan el tornis a endollar. ExprParamElement - + to @@ -5047,7 +5397,7 @@ seus arxius quan el tornis a endollar. FileTransferInfoWidget - + Chunk map Mapa de fragments @@ -5222,7 +5572,7 @@ seus arxius quan el tornis a endollar. FlatStyle_RDM - + Friends Directories Directoris dels amics @@ -5298,90 +5648,40 @@ seus arxius quan el tornis a endollar. FriendList - - - Status - Estat - - - - - + Last Contact Últim missatge - - - Avatar - Avatar - - - + Hide Offline Friends Amagar amics fora de línia - - State - Estat + + export friendlist + exportar llista d'amics - Sort by State - Ordena per estat + export your friendlist including groups + exportar la teva llista d'amics, incloent els grups - - Hide State - Oculta estat - - - - - Sort Descending Order - Ordena en ordre descendent - - - - - Sort Ascending Order - Ordena en ordre ascendent - - - - Show Avatar Column - Mostra columna "Avatar" - - - - Name - Nom + + import friendlist + importar llista d'amics - Sort by Name - Ordena per nom - - - - Sort by last contact - Ordena per l'últim contacte - - - - Show Last Contact Column - Mostra la columna "últim contacte" - - - - Set root is Decorated - Establir que l'arrel és decorada + import your friendlist including groups + importar la teva llista d'amics, incloent els grups + - Set Root Decorated - Establir arrel com decorada + Show State + Mostrar Estat @@ -5390,7 +5690,7 @@ seus arxius quan el tornis a endollar. Mostra grups - + Group Grup @@ -5431,7 +5731,17 @@ seus arxius quan el tornis a endollar. Afegir al grup - + + Search + Cerca + + + + Sort by state + Ordena per estat + + + Move to group Moure al grup @@ -5461,40 +5771,110 @@ seus arxius quan el tornis a endollar. Contreure tot - - + Available Disponible - + Do you want to remove this Friend? Voleu suprimir aquest amic? - - Columns - Columnes + + + Done! + Fet! - - - + + Your friendlist is stored at: + + La teva llista d'amics s'ha guardat a: + + + + + +(keep in mind that the file is unencrypted!) + +(tingues en compte que la llista no està encriptada) + + + + + Your friendlist was imported from: + + La teva llista d'amics s'ha importat de: + + + + + Done - but errors happened! + Fet - però amb errors! + + + + +at least one peer was not added + +com a mínim un dels contactes no s'ha afegit + + + + +at least one peer was not added to a group + +com a mínim un dels contactes no s'ha afegit a un grup + + + + Select file for importing yoour friendlist from + Escull l'arxiu d'on importaràs la teva llista d'amics + + + + Select a file for exporting your friendlist to + Escull un arxiu per exportar-hi la teva llista d'amics + + + + XML File (*.xml);;All Files (*) + Arxiu XML (*.xml);;Tots els arxius (*) + + + + + + Error + Error + + + + Failed to get a file! + No s'ha pogut obtenir un arxiu! + + + + File is not writeable! + + L'arxiu no es pot escriure! + + + + + File is not readable! + + L'arxiu no es pot llegir! + + + + IP IP - - Sort by IP - Ordena per IP - - - - Show IP Column - Ordena per columna d'IP - - - + Attempt to connect Intent de connexió @@ -5504,7 +5884,7 @@ seus arxius quan el tornis a endollar. Crear nou grup - + Display Mostra @@ -5514,12 +5894,7 @@ seus arxius quan el tornis a endollar. Enganxa enllaç certificat - - Sort by - Ordenat per - - - + Node Node @@ -5529,17 +5904,17 @@ seus arxius quan el tornis a endollar. Treure node de l'amic - + Do you want to remove this node? Voleu suprimir aquest node? - + Friend nodes Nodes de l'amic - + Send message to whole group Enviar un missatge a tot el grup @@ -5587,30 +5962,35 @@ seus arxius quan el tornis a endollar. Cercar: - - All - Tot + + Sort by state + Ordena per estat - None - Cap - - - Name Nom - + Search Friends Busca als amics + + + Mark all + Marcar tots/es + + + + Mark none + Marcar cap + FriendsDialog - + Edit status message Editar missatge d'estat @@ -5704,12 +6084,17 @@ seus arxius quan el tornis a endollar. Clauer - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Xarxa</h1> <p>La pestanya Xarxa mostra els nodes RertoShare dels teus amics: Els nodes de RetroShare veïns amb que estàs.connectat. </p> <p>Pots agrupar els nodes en grups per millorar el control de l'accés a les dades, per permetre només a alguns nodes veure alguns arxius.</p> <p>A la dreta, trobaràs 3 útils pestanyes: <ul> <li>Difusió envia missatges a tots els nodes connectats a la vegada</li><li>El gràfic de xarxa propera mostra la xarxa al teu voltant, basant-se en la informació de descobriment</li> <li>Anell de claus conté les claus que tens, principalment les reenviades pels nodes dels teus amics cap a tu</li> </ul> </p> + + + Retroshare broadcast chat: messages are sent to all connected friends. Xat de difusió del RetroShare: Els missatges són enviats a tots els amics connectats. - + Network Xarxa @@ -5720,12 +6105,7 @@ seus arxius quan el tornis a endollar. Gràfic de xarxa - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Xarxa</h1> ⇥⇥ <p>La pestanya Xarxa mostra els nodes RertoShare dels teus amics: Els nodes de RetroShare veïns amb que estàs.connectat.⇥⇥ </p> ⇥⇥ <p>Pots agrupar els nodes en grups per millorar el control de l'accés a les dades, per permetre⇥⇥ només a alguns nodes veure alguns arxius.</p> ⇥⇥ <p>A la dreta, trobaràs 3 útils pestanyes: ⇥⇥ <ul>⇥ ⇥⇥ ⇥⇥<li>Difusió envia missatges a tots els nodes connectats a la vegada</li> ⇥⇥ ⇥⇥<li>El gràfic de xarxa propera mostra la xarxa al teu voltant, basant-se en la informació de descobriment</li> ⇥⇥ ⇥⇥<li>Anell de claus conté les claus que tens, principalment les reenviades pels nodes dels teus amics cap a tu</li> ⇥⇥ </ul> </p> ⇥⇥ - - - + Set your status message here. Estableix aquí el teu missatge d'estat. @@ -5738,7 +6118,7 @@ seus arxius quan el tornis a endollar. Crear perfil nou - + Name Nom @@ -5792,7 +6172,7 @@ per continuar sent anònim, pots utilitzar un correu electrònic fals.Contrasenya (marca) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/><body><p align="justify">Abans de continuar, mou el ratolí una mica per ajudar al RetroShare a captar tanta aleatorietat com sigui possible. Omplir la barra de progrés fins el 20% és necessari, fins al 100% recomanat.</p></body></html> @@ -5807,7 +6187,7 @@ per continuar sent anònim, pots utilitzar un correu electrònic fals.Les contrasenyes no coincideixen - + Port Port @@ -5851,29 +6231,24 @@ per continuar sent anònim, pots utilitzar un correu electrònic fals.Node ocult invàlid - - Please enter a valid address of the form: 31769173498.onion:7800 - Si us plau, introdueix una adreça del tipus: 31769173498.onion:7800 - - - + Node field is required with a minimum of 3 characters El camp node és necessari amb un mínim de 3 caràcters - + Failed to generate your new certificate, maybe PGP password is wrong! Ha fallat la generació del teu nou certificat, potser la contrasenya PGP sigui incorrecta! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" Pots crear un perfil nou amb aquest formulari. També pots utilitzar una identitat ja existent. Només has de desactivar l'opció "Crear una identitat nova" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. Pots crear i fer funcionar els nodes de RetroShare en diferents ordinadors utilitzant el mateix perfil. Per fer-ho simplement selecciona el perfil, importa'l a un altre ordinador i crea un node nou amb ell. @@ -5895,7 +6270,7 @@ També pots utilitzar una identitat ja existent. Només has de desactivar l&apos - + Create a new profile Crear un nou perfil @@ -5920,12 +6295,17 @@ També pots utilitzar una identitat ja existent. Només has de desactivar l&apos Crear un node ocult - + Use profile Utilitza el perfil - + + hidden address + adreça oculta + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. El teu perfil està associat a un parell de clau PGP. RetroShare ara mateix ignora les claus DSA. @@ -5941,12 +6321,17 @@ També pots utilitzar una identitat ja existent. Només has de desactivar l&apos <html><head/><body><p>Aquest és el teu port de connexió.</p><p>Qualsevol valor entre 1024 i 65535 </p><p>serà vàlid. Podràs canviar-ho més tard.</p></body></html> - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + <html><head/><body><p>Pot ser una adreça Tor Onion del tipus: xa76giaf6ifda7ri63i263.onion <br/>o una adreça I2P del tipus: [52 caràcters].b32.i2p </p><p>Per tal d'obtindre'n una has de configurar o Tor o I2P per crear un nou servei ocult/servidor túnel. Si no en tens cap encara, pot igualment continuar i crear-lo més tard a les opcions del RetroShare a &gt;Server-&gt;Panell de configuració de servei ocult.</p></body></html> + + + PGP key length Longitud de clau PGP - + Create new profile @@ -5963,7 +6348,12 @@ També pots utilitzar una identitat ja existent. Només has de desactivar l&apos Clica per crear el teu node i/o perfil - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + [Requerit] Adreça Tor/I2P - Exemples: xa76giaf6ifda7ri63i263.onion (obtinguts per tu de Tor) + + + [Required] This password protects your private PGP key. [Requerit] Aquesta contrasenya protegeix la teva clau PGP privada. @@ -6079,7 +6469,12 @@ i utilitzar el botó d'importació per carregar-lo El teu perfil s'ha importat amb èxit: - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + Si us plau, introdueix una adreça del tipus: 31769173498.onion:7800 o [52 caràcters].b32.i2p + + + PGP key pair generation failure @@ -6087,12 +6482,12 @@ i utilitzar el botó d'importació per carregar-lo - + Profile generation failure Generació de perfil fallat - + Missing PGP certificate Falta certificat PGP @@ -6109,21 +6504,6 @@ Introdueix la teva contrasenya PGP quan t'ho pregunti per signar la teva no You can create a new profile with this form. Pots crear un nou perfil amb aquest formulari. - - - Tor address - Adreça Tor - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - <html><head/><body><p>Això és una adreça Tor Onion del formulari: xa76giaf6ifda7ri63i263.onion </p><p>Per aconseguir-ne una has de configurar Tor per crear un nou servei ocult. Si no en tens un encara, pots continuar i fer-lo després al panell de configuració del servidor de Tor.</p></body></html> - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - [Requerit] Exemples: xa76giaf6ifda7ri63i263.onion (obtinguts per tu de Tor) - GeneralPage @@ -6282,29 +6662,24 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">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"> 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:12pt;">Quan els teus amics t'envien la seva invitació, clica per obrir la finestra d'afegir amics.</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:12pt;">Quan els teus amics t'envien la seva invitació, clica per obrir la finestra Afegir amics..</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: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-size:12pt;">Talla i enganxa l'ID de certificat dels teus amics a la finestra i afegeix-los com amics.</span></p></body></html> +<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:12pt;">Enganxa el &quot;Certificat ID&quot; dels teus amics a la finestra i afegeix-los com amics.</span></p></body></html> - - Connect To Friends - Connectar-se als amics - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6317,24 +6692,48 @@ 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: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"> -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:12pt;">Estigueu en línia els dos a la vegada i el RetroShare us connectarà automàticament!</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:12pt;">Estigues en línia a la vegada que els teus amics i el Retroshare automàticament us connectarà!</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: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-size:12pt;">El teu client ha de trobar la xarxa de RetroShare abans de poder fer connexions.</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:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">El teu client necessita trobar la xarxa Retroshare abans de poder fer les connexions.</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:12pt;">Això pot trigar entre 5-30 minuts la primera vegada que engegues el 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: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-size:12pt;">L'indicador de DHT (A la barra d'estat) es posa en verd quan pot fer connexions.</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:12pt;">L'indicador de DHT (A la barra d'estat) es tornarà Verda quan pugui realitzar connexions.</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: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-size:12pt;">Al cap d'un parell de minuts, l'indicador NAT (També a la barra d'estat) canviarà a groc o verd.</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:12pt;">Si continua vermell llavors tens un tallafocs problemàtic i el RetroShare té problemes per connectar-se a través d'ell.</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:12pt;">Al cap d'un parell de minuts, l'indicador de NAT (També a la barra d'estat) canviarà a Groc o Verd.</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:12pt;">Si continua Vermell, tens un Tallafocs Dolentot que el Retroshare té problemes per travessar.</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: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-size:12pt;">Busca a la secció "Més ajuda" per consells sobre com connectar-se.</span></p></body></html> +<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:12pt;">Busca a la secció d'Ajuda Extra per més consells sobre connectar-se.</span></p></body></html> - - Advanced: Open Firewall Port - Avançat: Obrir port del tallafocs + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-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"> +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:12pt;">Pots millorar el rendiment del Retroshare obrint un port extern. </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:12pt;">Això accelerarà les connexions i permetrà que més gent connecti amb tu. </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: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-size:12pt;">La forma més senzilla de fer-ho és activant el UPnP en el teu encaminador o aparell Wifi.</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:12pt;">Com que cada encaminador és diferent hauràs de ser tu qui trobi les instruccions per com fer-ho.</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: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-size:12pt;">Si no saps de que t'estem parlant no hi pensis més, el Retroshare continuarà funcionant.</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: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-size:8pt;"></p></body></html> @@ -6342,47 +6741,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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"> -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:12pt;">Pots millorar el rendiment del RetroShare obrint un port extern. </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:12pt;">Això accelerarà les connexions i permetrà més gent connectar amb tu </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: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-size:12pt;">La forma més senzilla de fer això és activar el UPnP en el teu encaminador o equip sense fils.</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:12pt;">Com que cada encaminador és diferent necessites trobar el model d'encaminador i buscar a Internet les instruccions.</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: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-size:12pt;">Si no saps de que va, tranquil el Retroshare funcionarà igualment.</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: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-size:8pt;"></p></body></html> - - - - Further Help and Support - Més ajuda i suport - - - - <!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: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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6392,21 +6757,36 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Tens problemes començant a utilitzar el RetroShare?</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Tens problemes per iniciar-te amb el 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: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-size:12pt;">1) Busca a la wiki de PMF. És una mica vella, estem intentant posar-la al dia.</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:12pt;">1) Mira la PMF Viqui. És una mica antiga, estem intentant posar-la al dia.</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: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-size:12pt;">2) Mira a fòrums en línia. Fes preguntes i comenta característiques.</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:12pt;">2) Busca en els fòrums en línia. Fes preguntes i parla sobre les possibilitats.</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: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-size:12pt;">3) proba el fòrums interns del RetroShare.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - Es poden començar a utilitzar a la que t'has connectat amb amics.</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:12pt;">3) Prova els fòrums interns de RetroShare </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">⇥- Apareixeran com disponibles quan et connectis amb amics.</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: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-size:12pt;">4) Si encara estàs encallat. Envia'ns un correu electrònic.</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:12pt;">4) Si tot i així estàs encallat. Envia'ns un correu.</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: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-size:12pt;">Disfruta Retrosharejant</span></p></body></html> +<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:12pt;">Disfruta utilitzant el RetroShare</span></p></body></html> - + + Connect To Friends + Connectar-se als amics + + + + Advanced: Open Firewall Port + Avançat: Obrir port del tallafocs + + + + Further Help and Support + Més ajuda i suport + + + Open RS Website Obrir lloc web del RS @@ -6499,82 +6879,104 @@ p, li { white-space: pre-wrap; } Estadístiques d'encaminador - + + GroupBox + Selecció de grup + + + + ID + ID + + + + Identity Name + Nom de la identitat + + + + Destinaton + Destinació + + + + Data status + Estat de les dades + + + + Tunnel status + Estat del túnel + + + + Data size + Mida dades + + + + Data hash + Hash dades + + + + Received + Rebut + + + + Send + Enviat + + + + Branching factor + Factor de ramificació + + + + Details + Detalls + + + Unknown Peer Contacte desconegut + + + Pending packets + Paquets pendents + + + + Unknown + Desconegut + GlobalRouterStatisticsWidget - - Pending packets - Paquets pendents - - - + Managed keys Claus administrades - + Routing matrix ( Matriu d'encaminament ( - - Id - Id + + [Unknown identity] + [Identitat desconeguda] - - Destination - Destinació - - - - Data status - Estat de les dades - - - - Tunnel status - Estat del túnel - - - - Data size - Mida dades - - - - Data hash - Hash dades - - - - Received - Rebut - - - - Send - Enviar - - - + : Service ID = : Id Servei = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Fes clic i arrossega els cercles al voltant i fes zoom amb la roda del ratolí o les tecles '+' i '-' - - GroupChatToaster @@ -6755,7 +7157,7 @@ Nota: No es poden revocar els permisos d'administrador publicats GroupTreeWidget - + Title Títol @@ -6775,7 +7177,7 @@ Nota: No es poden revocar els permisos d'administrador publicatsDescripció de cerca - + Sort by Name Ordena per nom @@ -6789,13 +7191,18 @@ Nota: No es poden revocar els permisos d'administrador publicatsSort by Last Post Ordena per darrer missatge + + + Sort by Posts + Ordenar per publicació + Display Mostra - + You have admin rights Tens drets d'administrador @@ -6808,7 +7215,7 @@ Nota: No es poden revocar els permisos d'administrador publicats GuiExprElement - + and i @@ -6906,7 +7313,7 @@ Nota: No es poden revocar els permisos d'administrador publicats GxsChannelDialog - + Channels Canals @@ -6917,17 +7324,22 @@ Nota: No es poden revocar els permisos d'administrador publicatsCrear canal - + Enable Auto-Download Activa l'auto-descàrrega - + My Channels Els meus canals - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Canals</h1> <p>Canals et permet publicar dades (Ex: pel·lícules, música) que s'escamparan per la xarxa</p> <p>Pots veure els canals als que tens amics subscrits i tu faràs el mateix amb els teus. Això promociona els canals bons dins la xarxa.</p> <p>Només el creador del canal pot publicar en un canal. Els altres contactes a la xarxa només poden llegir el canal, a no ser que el canal sigui privat. No obstant pots compartir els drets de publicació o lectura amb nodes de RetroShare amics.</p> <p>Els canals poden ser anònims o associats a una identitat de RetroShare per tal que els lectors puguin contactar amb tu si volen. Activa "Permetre comentaris" si vols permetre que els usuaris facin comentaris sobre el que publiques.</p>Les entrades publicades s'esborren al cap de %1 mesos. + + + Subscribed Channels Canals subscrits @@ -6942,14 +7354,30 @@ Nota: No es poden revocar els permisos d'administrador publicatsAltres canals - + + Select channel download directory + Seleccionar directori de descarrega del canal + + + Disable Auto-Download Desactivar auto-descàrrega - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Canals</h1> <p>Canals et permet publicar dades (Ex: pel·lícules, música) que s'escamparan per la xarxa</p> <p>Pots veure els canals als que tens amics subscrits i tu faràs el mateix amb els teus. Això promociona els canals bons dins la xarxa.</p> <p>Només el creador del canal pot publicar en un canal. Els altres contactes a la xarxa només poden llegir el canal, a no ser que el canal sigui privat. No obstant pots compartir ⇥ els drets de publicació o lectura amb nodes de RetroShare amics.</p>⇥ <p>Els canals poden ser anònims o associats a una identitat de RetroShare per tal que els lectors puguin contactar amb tu si volen.⇥ Activa "Permetre comentaris" si vols permetre que els usuaris facin comentaris sobre el que publiques.</p>Les entrades publicades s'esborren al cap de %1 mesos. + + Set download directory + Seleccionar directori de descarrega + + + + + [Default directory] + [Directory per defecte] + + + + Specify... + Especifica... @@ -7289,7 +7717,7 @@ Nota: No es poden revocar els permisos d'administrador publicatsNo hi ha canal seleccionat - + Disable Auto-Download Desactivar auto-descàrrega @@ -7309,7 +7737,7 @@ Nota: No es poden revocar els permisos d'administrador publicatsMostra arxius - + Feeds Fonts @@ -7319,7 +7747,7 @@ Nota: No es poden revocar els permisos d'administrador publicatsArxius - + Subscribers Subscriptors @@ -7331,7 +7759,7 @@ Nota: No es poden revocar els permisos d'administrador publicats Posts (at neighbor nodes): - Publica (A nodes veïns): + Publicat (A nodes veïns): @@ -7482,7 +7910,7 @@ abans de poder comentar GxsForumGroupDialog - + Create New Forum Crear nou fòrum @@ -7614,12 +8042,12 @@ abans de poder comentar Formulari - + Start new Thread for Selected Forum Comença nova conversa al fòrum seleccionat - + Search forums Cercar fòrums @@ -7640,7 +8068,7 @@ abans de poder comentar - + Title Títol @@ -7653,13 +8081,18 @@ abans de poder comentar - + Author Autor - - + + Save image + Desar imatge + + + + Loading Carregant @@ -7689,7 +8122,7 @@ abans de poder comentar Següent no llegit - + Search Title Cerca títol @@ -7714,17 +8147,27 @@ abans de poder comentar Cerca contingut - + No name Sense nom - + Reply Resposta + Ban this author + Expulsa aquesta autor + + + + This will block/hide messages from this person, and notify neighbor nodes. + Això bloquejarà/ocultarà els missatges d'aquesta persona i ho notificarà als nodes veïns. + + + Start New Thread Començar nova conversa @@ -7762,7 +8205,7 @@ abans de poder comentar Copia l'enllaç RetroShare - + Hide Amagar @@ -7772,7 +8215,38 @@ abans de poder comentar Ampliar - + + This message was obtained from %1 + Aquest missatge es va obtindre de %1 + + + + [Banned] + [Expulsat] + + + + Anonymous IDs reputation threshold set to 0.4 + El límit de reputació per IDs anònimes està a 0.4 + + + + Message routing info kept for 10 days + La informació d'encaminament de missatges es guarda durant 10 dies. + + + + + Anti-spam + Anti-spam + + + + [ ... Redacted message ... ] + [ ... Missatge modificat ... ] + + + Anonymous Anònim @@ -7792,29 +8266,55 @@ abans de poder comentar [ ... Missatge perdut ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + <p><font color="#ff0000"><b>L'autor d'aquest missatge (amb Id %1) està expulsat.</b> + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + <UL><li><b><font color="#ff0000">Els missatges d'aquest autor no són reenviats. </font></b></li> + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + <li><b><font color="#ff0000">Els missatges d'aquest autor són reemplaçats per aquest text.</font></b></li></ul> + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + <p><b><font color="#ff0000">Pots forçar la visibilitat i reenviament dels missatges establint una opinió diferent per aquella identitat a la pestanya Gent.</font></b></p> + + + + + + + RetroShare RetroShare - + No Forum Selected! Cap fòrum seleccionat! - + + + You cant reply to a non-existant Message No pots respondre a un missatge inexistent + You cant reply to an Anonymous Author No pots respondre a un autor anònim - + Original Message Missatge original @@ -7839,7 +8339,7 @@ abans de poder comentar A %1, %2 va escriure: - + Forum name Nom del fòrum @@ -7851,10 +8351,10 @@ abans de poder comentar Posts (at neighbor nodes) - Publica (A nodes veïns) + Publicat (A nodes veïns) - + Description Descripció @@ -7864,12 +8364,12 @@ abans de poder comentar Per - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + <p>Subscriure's al fòrum buscarà les entrades publicades disponibles dels teus amics subscrits, i farà el fòrum visible a tots els teus altres amics.</p><p>Després podràs des-subscriure't des del menú contextual de la llista de fòrums a l'esquerra.</p> - + Reply with private message Respon amb un missatge privat @@ -7885,7 +8385,12 @@ abans de poder comentar GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Fòrums</h1> ⇥⇥⇥<p>Els fòrums de Retroshare es veuen com fòrums d'Internet, però funcionen de forma descentralitzada</p> ⇥⇥⇥<p>Tu veus els fòrums als que els teus amics estan subscrits i tu fas el mateix amb els teus⇥⇥⇥ pels teus amics. Això promociona automàticament els fòrums interessants a la xarxa.</p> <p>Els missatges a fòrums s'esborren automàticament després de 1% mesos.</p> + + + Forums Fòrums @@ -7915,11 +8420,6 @@ abans de poder comentar Other Forums Altres fòrums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7942,13 +8442,13 @@ abans de poder comentar GxsGroupDialog - - + + Name Nom - + Add Icon Afegir icona @@ -7963,7 +8463,7 @@ abans de poder comentar Compartir clau pública - + check peers you would like to share private publish key with comprovar els contactes amb qui t'agradaria compartir les claus de publicació @@ -7973,36 +8473,36 @@ abans de poder comentar Compartir clau amb - - + + Description Descripció - + Message Distribution Distribució de missatge - + Public Públic - - + + Restricted to Group Restringit al grup - - + + Only For Your Friends Només per als teus amics - + Publish Signatures Publicar signatures @@ -8032,7 +8532,7 @@ abans de poder comentar Signatures personals - + PGP Required PGP requerit @@ -8048,12 +8548,12 @@ abans de poder comentar - + Comments Comentaris - + Allow Comments Permetre comentaris @@ -8063,33 +8563,73 @@ abans de poder comentar Sense comentaris - + + Spam-protection + Protecció-Spam + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + <html><head/><body><p>Això fa que s'incrementi el mínim de reputació pels IDs anònims a 0.4, mentre que es manté a 0.0 per les IDs associades a una clau PGP. Així les IDs anònimes encara poden publicar si la seva reputació local és superior a aquesta puntuació.</p></body></html> + + + + Favor PGP-signed ids + Prefereix IDs signades per PGP + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + Manté registre de les publicacions + + + + Anti spam + Anti spam + + + + PGP-signed ids + IDs signades per PGP + + + + Track of Posts + Registre de Publicacions + + + Contacts: Contactes: - + Please add a Name Si us plau, afegeix un nom - + Load Group Logo Carrega logotip del grup - + Submit Group Changes Publicar canvis al grup - + Failed to Prepare Group MetaData - please Review Fallo al preparar les metadades del Grup - Revisa-les - + Will be used to send feedback S'utilitzarà per enviar resposta @@ -8099,12 +8639,12 @@ abans de poder comentar Propietari: - + Set a descriptive description here Estableix una descripció - + Info Informació @@ -8177,7 +8717,7 @@ abans de poder comentar PreviaImpressió - + Unsubscribe Donar de baixa @@ -8187,12 +8727,12 @@ abans de poder comentar Subscriure's - + Open in new tab Obrir en una pestanya nova - + Show Details Mostra detalls @@ -8217,12 +8757,12 @@ abans de poder comentar Marca tot com no llegit - + AUTHD AUTHD - + Share admin permissions Compartir els permisos d'administrador @@ -8230,7 +8770,7 @@ abans de poder comentar GxsIdChooser - + No Signature Sense signatura @@ -8243,7 +8783,7 @@ abans de poder comentar GxsIdDetails - + Loading Carregant @@ -8258,8 +8798,15 @@ abans de poder comentar Sense signatura - + + + + [Banned] + [Expulsat] + + + Authentication Autenticació @@ -8274,7 +8821,7 @@ abans de poder comentar anònim - + Identity&nbsp;name Identitat&nbsp;nom @@ -8289,7 +8836,7 @@ abans de poder comentar Signat&nbsp;per - + [Unknown] [Desconegut] @@ -8307,6 +8854,49 @@ abans de poder comentar Sense nom + + GxsTunnelsDialog + + + Authenticated tunnels: + Túnels autenticats: + + + + Tunnel ID: %1 + ID túnel: %1 + + + + from: %1 + de: %1 + + + + to: %1 + a: %1 + + + + status: %1 + estat: %1 + + + + total sent: %1 bytes + total enviat: %1 bytes + + + + total recv: %1 bytes + Total rebut: %1 bytes + + + + Unknown Peer + Contacte desconegut + + HashBox @@ -8502,44 +9092,7 @@ abans de poder comentar Sobre - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare és una plataforma descentralitzada</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-weight:600;">segura i privada de comunicacions, de codi obert i multi-plataforma. </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-weight:600;">Permet compartir tot el que vulguis amb seguretat amb amics </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-weight:600;"> utilitzant certificats per autenticar els contactes i OpenSSL per encriptar les comunicacions.</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-weight:600;">RetroShare proporciona compartició d'arxius, xat, missatgeria i canals.</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-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; font-weight:600;">Enllaços externs útils amb més informació:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Pàgina web del RetroShare</span></a></li> -<li style=" font-size:12pt; 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">Wiki del RetroShare</a></li> -<li style=" font-size:12pt; 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">Fòrum del RetroShare</a></li> -<li style=" font-size:12pt; 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">Plana de projecte del RetroShare</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Bloc de l'equip del RetroShare</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net"></a></li></ul></body></html> - - - + Authors Autors @@ -8605,7 +9158,44 @@ p, li { white-space: pre-wrap; } </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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</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 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-weight:600;">RetroShare és una plataforma descentralitzada</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-weight:600;">segura i privada de comunicacions, de codi obert i multi-plataforma. </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-weight:600;">Permet compartir tot el que vulguis amb seguretat amb amics </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-weight:600;"> utilitzant certificats per autenticar els contactes i OpenSSL per encriptar les comunicacions.</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-weight:600;">RetroShare proporciona compartició d'arxius, xat, missatgeria i canals.</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-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; font-weight:600;">Enllaços externs útils amb més informació:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Pàgina web del RetroShare</span></a></li> +<li style=" font-size:12pt; 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">Viqui del RetroShare</a></li> +<li style=" font-size:12pt; 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">Fòrum del RetroShare</a></li> +<li style=" font-size:12pt; 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">Plana de projecte del RetroShare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Bloc de l'equip del RetroShare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Twitter Desenvolupament RetroShare</a></li></ul></body></html> + + + Libraries Biblioteques @@ -8647,7 +9237,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details Detalls de la persona @@ -8682,78 +9272,128 @@ p, li { white-space: pre-wrap; } Id d'identitat: - + + Last used: + Últim utilitzat: + + + Your Avatar Click here to change your avatar El teu avatar - + Reputation Reputació - - Overall - Global + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + <html><head/><body><p>La opinió mitjana dels nodes veïns sobre aquesta identitat. Negativa és dolent,</p><p>positiva és bo. Zero és neutre.</p></body></html> - - Implicit - Implicit - - - - Opinion - Opinió - - - - Peers - Contactes - - - - Edit Reputation - Editar reputació - - - - Tweak Opinion - Retocar opinió - - - - Accept (+100) - Acceptar(+100) + + Your opinion: + La teva opinió: - Positive (+10) - Positiu (+10) + Neighbor nodes: + Nodes veïns: - Negative (-10) - Negatiu (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La teva opinió sobre una identitat controla la visibilitat d'aquesta identitat pel teu cas,</p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">i és compartida entre els teus amics. Una puntuació final es calcula seguns una fórmula que té en compte la teva pròpia opinió i la opinió dels teus amics sobre algú:</p> + +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = opinió_propia * a + opinió_amics * (1-a)</p> + +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">El factor 'a' depèn del tipus d'ID. </p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Ids anònimes: </p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- IDs signades-PGP per claus PGP desconegudes: a=</p> + +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La puntuació global s'utilitza a les sales de xat, fòrums i canals per decidir sobre les accions a prendre per cada identitat específica:</p> + +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Publicacions no guardades ni reenviades </p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Publicacions no mostrades, però si retransmeses</p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> + +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> + +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La puntuació global es calcula de tal manera que no és possible per una sola persona de canviar de forma determinista l'estatus d'algú en el nodes veïns.</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;"><br /></p></body></html> - - Ban (-100) - Fer fora (-100) + + Negative + Negatiu - Custom - Personalitzat + Neutral + Neutre - - Modify - Modificar + + Positive + Positiu - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + <html><head/><body><p>La puntuació de reputació global, calculada amb les teves puntuacions i la dels teus amics.</p><p>Negativa és dolent, positiva és bo. Zero és neutre. Si la puntuació és massa baixa,</p><p>la identitat es marca com dolenta, i es filtrarà als fòrums, sales de xat,</p><p>canals, etc.</p></body></html> + + + + Overall: + Global: + + + Unknown real name Nom real desconegut @@ -8792,37 +9432,58 @@ p, li { white-space: pre-wrap; } Anonymous identity Identitat anònima + + + +50 Known PGP + +50 PGP conegut + + + + +10 UnKnown PGP + +10 PGP desconegut + + + + +5 Anon Id + +5 Id anonima + + + + OK + CORRECTE + + + + Banned + Expulsat + IdDialog - + New ID Nova Id - + + All Tot - + + Reputation Reputació - - - Todo - Pendent - - Search Cerca - + Unknown real name Nom real desconegut @@ -8832,72 +9493,29 @@ p, li { white-space: pre-wrap; } Id anònim - + Create new Identity Crear nova identitat - - Overall - Global + + Persons + Persones - - Implicit - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + - - Opinion - Opinió - - - - Peers - Contactes - - - - Edit reputation - Editar reputació - - - - Tweak Opinion - Retocar opinió - - - - Accept (+100) - Acceptar(+100) - - - - Positive (+10) - Positiu (+10) - - - - Negative (-10) - Negatiu (-10) - - - - Ban (-100) - Fer fora (-100) - - - - Custom - Personalitzat - - - - Modify - Modificar - - - + Edit identity Editar identitat @@ -8918,42 +9536,42 @@ p, li { white-space: pre-wrap; } Començar un xat distant amb aquest contacte - - Identity name - Nom de la identitat - - - + Owner node ID : Id del node propietari: - + Identity name : Nom de la identitat: - + + () + () + + + Identity ID Id d'identitat - + Send message Enviar missatge - + Identity info Informació d'identitat - + Identity ID : Id d'identitat: - + Owner node name : Nom del node propietari: @@ -8963,7 +9581,57 @@ p, li { white-space: pre-wrap; } Tipus: - + + Send Invite + Enviar invitació + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + <html><head/><body><p>La opinió mitjana dels nodes veïns sobre aquesta identitat. Negativa és dolent,</p><p>positiva és bo. Zero és neutre.</p></body></html> + + + + Your opinion: + La teva opinió: + + + + Neighbor nodes: + Nodes veïns: + + + + Negative + Negatiu + + + + Neutral + Neutre + + + + Positive + Positiu + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + <html><head/><body><p>La puntuació de reputació global, calculada amb les teves puntuacions i la dels teus amics.</p><p>Negativa és dolent, positiva és bo. Zero és neutre. Si la puntuació és massa baixa,</p><p>la identitat es marca com dolenta, i es filtrarà als fòrums, sales de xat,</p><p>canals, etc.</p></body></html> + + + + Overall: + Global: + + + + Contacts + Contactes + + + Owned by you Propietat teva @@ -8973,12 +9641,17 @@ p, li { white-space: pre-wrap; } Anònim - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identitats</h1> ⇥⇥⇥<p>En aquesta pestanya pots crear/editar identitats pseudo-anònimes. ⇥⇥⇥</p> ⇥⇥⇥<p>Les identitats s'utilitzen per identificar de forma segura les teves dades: signar les publicacions de canals i fòrums,⇥⇥⇥⇥i rebre resposta utilitzant el sistema intern de correu de RetroShare, publicar comentaris⇥⇥⇥⇥de les entrades dels canals, etc.</p> ⇥⇥⇥<p> ⇥⇥⇥Les identitats poden anar signades pel certificat del teu node. ⇥⇥⇥Les identitats signades generen més confiança però exposen fàcilment l'adreça IP del teu node. ⇥⇥⇥</p> ⇥⇥⇥<p> ⇥⇥⇥Les identitats anònimes et permeten interactuar amb altres usuaris anònimament. No es poden ⇥⇥⇥suplantar, però ningú pot provar qui és el propietari d'una identitat anònima concreta. + + ID + ID - + + Search ID + ID cerca + + + This identity is owned by you Aquesta identitat és propietat teva @@ -8994,7 +9667,7 @@ p, li { white-space: pre-wrap; } Id clau desconeguda - + Identity owned by you, linked to your Retroshare node Identitat propietat teva, enllaçat amb el teu node de RetroShare @@ -9009,7 +9682,42 @@ p, li { white-space: pre-wrap; } Identitat anònima - + + OK + CORRECTE + + + + Banned + Expulsat + + + + Add to Contacts + Afegir a contactes + + + + Remove from Contacts + Eliminar de contactes + + + + Set positive opinion + Opinar positivament + + + + Set neutral opinion + Opinar neutralment + + + + Set negative opinion + Opinar negativament + + + Distant chat cannot work El xat distant no pot funcionar @@ -9019,15 +9727,35 @@ p, li { white-space: pre-wrap; } Codi de l'error - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + Hola,<br> vull ser amic amb tu en el RetroShare.<br> + + + + You have a friend invite + Tens una petició d'amistat + + + + Respond now: + Respondre ara: + + + + Thanks, <br> + Gràcies, <br> + + + + + People Gent - + Your Avatar Click here to change your avatar El teu avatar @@ -9048,7 +9776,12 @@ p, li { white-space: pre-wrap; } Associat a nodes distants - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Identitats</h1> ⇥⇥⇥<p>En aquesta pestanya pots crear/editar identitats pseudo-anònimes. ⇥⇥⇥</p> ⇥⇥⇥<p>Les identitats s'utilitzen per identificar de forma segura les teves dades: signar les publicacions de canals i fòrums,⇥⇥⇥⇥i rebre resposta utilitzant el sistema intern de correu de RetroShare, publicar comentaris⇥⇥⇥⇥de les entrades dels canals, etc.</p> ⇥⇥⇥<p> ⇥⇥⇥Les identitats poden anar signades pel certificat del teu node. ⇥⇥⇥Les identitats signades generen més confiança però exposen fàcilment l'adreça IP del teu node. ⇥⇥⇥</p> ⇥⇥⇥<p> ⇥⇥⇥Les identitats anònimes et permeten interactuar amb altres usuaris anònimament. No es poden ⇥⇥⇥suplantar, però ningú pot provar qui és el propietari d'una identitat anònima concreta. ⇥⇥⇥</p> ⇥⇥⇥ + + + Linked to a friend Retroshare node Associat a un node de RetroShare d'un amic @@ -9063,7 +9796,7 @@ p, li { white-space: pre-wrap; } Associat a un node de RetroShare desconegut - + Chat with this person Xat amb aquesta persona @@ -9073,17 +9806,7 @@ p, li { white-space: pre-wrap; } Xat amb aquesta persona com... - - Send message to this person - Enviar un missatge a aquesta persona - - - - Columns - Columnes - - - + Distant chat refused with this person. Xat distant rebutjat amb aquesta persona. @@ -9093,7 +9816,7 @@ p, li { white-space: pre-wrap; } Últim utilitzat: - + +50 Known PGP +50 PGP conegut @@ -9108,29 +9831,17 @@ p, li { white-space: pre-wrap; } +5 Id anonima - + Do you really want to delete this identity? Estàs segur de voler esborrar aquesta identitat? - + Owned by Propietat de - - - Show - Mostra - - - - - column - columna - - - + Node name: Nom del node: @@ -9140,7 +9851,7 @@ p, li { white-space: pre-wrap; } ID node : - + Really delete? Segur que vols esborrar? @@ -9183,8 +9894,8 @@ p, li { white-space: pre-wrap; } Nova identitat - - + + To be generated A ser generat @@ -9192,7 +9903,7 @@ p, li { white-space: pre-wrap; } - + @@ -9202,13 +9913,13 @@ p, li { white-space: pre-wrap; } N/A - + Edit identity Editar identitat - + Error getting key! Error obtenint clau! @@ -9228,7 +9939,7 @@ p, li { white-space: pre-wrap; } Nom real desconegut - + Create New Identity Crear nova identitat @@ -9254,7 +9965,7 @@ p, li { white-space: pre-wrap; } RM - RM + Treure @@ -9280,10 +9991,10 @@ p, li { white-space: pre-wrap; } You can have one or more identities. They are used when you write in chat lobbies, forums and channel comments. They act as the destination for distant chat and the Retroshare distant mail system. - + Pots tindre una o més identitats. S'utilitzen quan escrius en sales de xat, fòrums i comentes en canals. Funcionen també com a destinataris en xats distants i en el sistema de correu distant de RetroShare. - + The nickname is too short. Please input at least %1 characters. El sobrenom és massa curt. Si us plau, introdueix com a mínim %1 caràcters. @@ -9351,7 +10062,7 @@ p, li { white-space: pre-wrap; } - + Copy Copiar @@ -9381,16 +10092,35 @@ p, li { white-space: pre-wrap; } Enviar + + ImageUtil + + + + Save image + Desar imatge + + + + Cannot save the image, invalid filename + No es pot guardar la imatge, nom de l'arxiu invàlid + + + + Not an image + No és una imatge + + LocalSharedFilesDialog - + Open File Obrir arxiu - + Open Folder Obrir directori @@ -9400,7 +10130,7 @@ p, li { white-space: pre-wrap; } Editar permisos de compartició - + Checking... Comprovant... @@ -9449,7 +10179,7 @@ p, li { white-space: pre-wrap; } - + Options Opcions @@ -9483,12 +10213,12 @@ p, li { white-space: pre-wrap; } Auxiliar d'inici ràpid - + RetroShare %1 a secure decentralized communication platform RetroShare %1 és una plataforma de comunicació segura descentralitzada - + Unfinished Inacabat @@ -9524,7 +10254,12 @@ Si us plau, allibera una mica d'espai i clica Ok. Notificar - + + Open Messenger + Obrir Missatgeria + + + Open Messages Obrir Missatges @@ -9574,7 +10309,7 @@ Si us plau, allibera una mica d'espai i clica Ok. %1 missatges nous - + Down: %1 (kB/s) Baixada: %1 (kB/s) @@ -9644,7 +10379,7 @@ Si us plau, allibera una mica d'espai i clica Ok. Taula de permisos dels serveis - + Add Afegir @@ -9669,7 +10404,7 @@ Si us plau, allibera una mica d'espai i clica Ok. directori s'està acabant (L'actual límit és - + Really quit ? Segur que vols sortir ? @@ -9678,38 +10413,17 @@ Si us plau, allibera una mica d'espai i clica Ok. MessageComposer - + Compose Redacta - - + Contacts Contactes - - >> To - >> A - - - - >> Cc - >> Cc - - - - >> Bcc - >> C/o - - - - >> Recommend - >> Recomana - - - + Paragraph Paràgraf @@ -9790,7 +10504,7 @@ Si us plau, allibera una mica d'espai i clica Ok. Subratllat - + Subject: Assumpte: @@ -9801,12 +10515,22 @@ Si us plau, allibera una mica d'espai i clica Ok. - + Tags Etiquetes - + + Address list: + Llista d'adreces: + + + + Recommend this friend + Recomanar aquest amic + + + Set Text color Estableix color de lletra @@ -9816,7 +10540,7 @@ Si us plau, allibera una mica d'espai i clica Ok. Estableix color de fons de la lletra - + Recommended Files Arxius recomanats @@ -9886,7 +10610,7 @@ Si us plau, allibera una mica d'espai i clica Ok. Afegir citació - + Send To: Enviar a: @@ -9911,47 +10635,22 @@ Si us plau, allibera una mica d'espai i clica Ok. &Justificat - - Bullet List (Disc) - Llista amb simbol (Disc) + + All addresses (mixed) + Totes les adreces (mesclades) - Bullet List (Circle) - Llista amb símbol (Cercle) + All people + Tota la gent - - Bullet List (Square) - Llista amb símbol (Quadrat) + + My contacts + Els meus contactes - - Ordered List (Decimal) - Llista ordenada (Decimal) - - - - Ordered List (Alpha lower) - Llista ordenada (Alfabètic descendent) - - - - Ordered List (Alpha upper) - Llista ordenada (Alfabètic ascendent) - - - - Ordered List (Roman lower - Llista ordenada (Romanic descendent) - - - - Ordered List (Roman upper) - Llista ordenada (Romanic ascendent) - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hola,<br>Et recomano un bon amic meu; pots confiar en ell si confies en mi. <br> @@ -9977,12 +10676,12 @@ Si us plau, allibera una mica d'espai i clica Ok. - + Save Message Desar el missatge - + Message has not been Sent. Do you want to save message to draft box? El missatge no s'ha enviat. @@ -9994,7 +10693,7 @@ Vols desar el missatge a la bústia d'esborranys? Enganxa l'enllaç RetroShare - + Add to "To" Afegir a "A" @@ -10014,12 +10713,7 @@ Vols desar el missatge a la bústia d'esborranys? Afegir com a recomanat - - Friend Details - Detalls de l'amic - - - + Original Message Missatge original @@ -10029,19 +10723,21 @@ Vols desar el missatge a la bústia d'esborranys? Des de - + + To A - + + Cc CC - + Sent Enviat @@ -10083,12 +10779,13 @@ Vols desar el missatge a la bústia d'esborranys? Si us plau, introdueix almenys un destinatari. - + + Bcc C/o - + Unknown Desconegut @@ -10198,7 +10895,12 @@ Vols desar el missatge a la bústia d'esborranys? &Format - + + Details + Detalls + + + Open File... Obrir arxiu... @@ -10246,12 +10948,7 @@ Voleu desar el missatge? Afegir arxiu extra - - Show: - Mostra: - - - + Close Tancar @@ -10261,32 +10958,57 @@ Voleu desar el missatge? De: - - All - Tot - - - + Friend Nodes Nodes de l'amic - - Person Details - Detalls de la persona + + Bullet list (disc) + Llista amb símbol (disc) - - Distant peer identities - Identitats de contactes distants + + Bullet list (circle) + Llista amb símbol (cercle) - + + Bullet list (square) + Llista amb símbol (quadrat) + + + + Ordered list (decimal) + Llista ordenada (decimal) + + + + Ordered list (alpha lower) + Llista ordenada (alfabètic descendent) + + + + Ordered list (alpha upper) + Llista ordenada (alfabètic ascendent) + + + + Ordered list (roman lower) + Llista ordenada (romanic descendent) + + + + Ordered list (roman upper) + Llista ordenada (romanic ascendent) + + + Thanks, <br> Gràcies, <br> - + Distant identity: Identitat distant: @@ -10298,7 +11020,7 @@ Voleu desar el missatge? Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Si us plau, crea una identitat per signar missatges distants o treu els contactes distants de la llista de destinataris. @@ -10309,7 +11031,27 @@ Voleu desar el missatge? MessagePage - + + Everyone + Tothom + + + + Contacts + Contactes + + + + Nobody + Ningú + + + + Accept encrypted distant messages from + Acceptar missatges distants encriptats de + + + Reading Llegint @@ -10324,7 +11066,7 @@ Voleu desar el missatge? Obre missatges a - + Tags Etiquetes @@ -10364,7 +11106,7 @@ Voleu desar el missatge? Una finestra nova - + Edit Tag Editar etiqueta @@ -10374,22 +11116,12 @@ Voleu desar el missatge? Missatge - + Distant messages: Missatges distants: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">L'enllaç inferior permet a la gent a la xarxa enviar-te missatges utilitzant túnels. Per fer-ho necessiten la teva clau PGP pública, que obtindran del sistema de descobriment del RetroShare. </p></body></html> - - - - Accept encrypted distant messages from everyone - Acceptar missatges distants encriptats de tothom - - - + Load embedded images Carrega imatges incrustades @@ -10670,7 +11402,7 @@ Voleu desar el missatge? MessagesDialog - + New Message Missatge nou @@ -10737,24 +11469,24 @@ Voleu desar el missatge? - + Tags Etiquetes - - - + + + Inbox Safata d'entrada - - + + Outbox Safata de sortida @@ -10766,14 +11498,14 @@ Voleu desar el missatge? - + Sent Enviat - + Trash Paperera @@ -10842,7 +11574,7 @@ Voleu desar el missatge? - + Reply to All Respon a tots @@ -10860,12 +11592,12 @@ Voleu desar el missatge? - + From Des de - + Date Data @@ -10893,12 +11625,12 @@ Voleu desar el missatge? - + Click to sort by from Clica per ordenar pel remitent - + Click to sort by date Clica per ordenar per data @@ -10953,7 +11685,12 @@ Voleu desar el missatge? Cerca adjunts - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Missatges</h1> <p>Retroshare té el seu propi sistema de correu electrònic. Pots enviar/rebre correus de/a els nodes dels teus amics.</p> <p>També és possible enviar missatges a identitats d'altra gent utilitzant el sistema de encaminament global. Aquests missatges són sempre encriptats i reenviats per nodes intermediaris fins que arriben al seu destí. </p> <p>Els missatges distants es queden a la teva bustia de sortints fins que no es rep confirmació d'entrega.</p> <p>Generalment s'envien missatges per recomanar arxius a amics enviant els enllaços, recomanar nodes d'amics a altres amics, per millorar la teva xarxa, o respostes a propietaris de canals.</p> + + + Starred Marcat @@ -11018,14 +11755,14 @@ Voleu desar el missatge? Buidar paperera - - + + Drafts Esborranys - + 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 gray star beside any message. No hi ha missatges marcats. Les marques et permeten donar als missatges un estat especial per trobar-los fàcilment. Per marcar un missatge clica a l'estrella gris al costat del missatge. @@ -11045,7 +11782,12 @@ Voleu desar el missatge? Clica per ordenar per destinatari - + + This message goes to a distant person. + Aquest missatge va cap a una persona distant. + + + @@ -11054,18 +11796,18 @@ Voleu desar el missatge? Total: - + Messages Missatges - + Click to sort by signature Clica per ordenar per signatura - + This message was signed and the signature checks Aquest missatge és firmat i la signatura vàlida @@ -11075,14 +11817,9 @@ Voleu desar el missatge? Aquest missatge està signat però la signatura no és vàlida - + This message comes from a distant person. - - - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - + Aquest missatge prové d'una persona distant. @@ -11106,7 +11843,22 @@ Voleu desar el missatge? MimeTextEdit - + + Paste as plain text + Enganxa com a text pla + + + + Spoiler + Spoiler + + + + Select text to hide, then push this button + Selecció el text a ocultar, després prem aquest botó + + + Paste RetroShare Link Enganxar enllaç RetroShare @@ -11140,7 +11892,7 @@ Voleu desar el missatge? - + Expand Ampliar @@ -11183,7 +11935,7 @@ Voleu desar el missatge? <strong>NAT:</strong> - + Network Status Unknown Estat de la xarxa desconegut @@ -11227,26 +11979,6 @@ Voleu desar el missatge? Forwarded Port Port reenviat - - - OK | RetroShare Server - OK | Servidor RetroShare - - - - Internet connection - Connexió a Internet - - - - No internet connection - Sense connexió a Internet - - - - No local network - Sense xarxa local - NetworkDialog @@ -11360,7 +12092,7 @@ Voleu desar el missatge? ID del contacte - + Deny friend Negar l'amic @@ -11423,7 +12155,7 @@ Per seguretat, s'ha fet una copia de seguretat del teu clauer No es pot crear la copia de seguretat. Comprova els permisos en el directori del PGP, espai lliure, etc. - + Personal signature Signatura personal @@ -11490,7 +12222,7 @@ Botó dret i selecciona 'fer amic' per poder connectar-hi.tu mateix - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Inconsistència de dades al clauer. Això és probablement un "bug". Si us plau, contacta amb els desenvolupadors. @@ -11502,69 +12234,71 @@ Botó dret i selecciona 'fer amic' per poder connectar-hi. Trusted keys only - + Només claus de confiança - + Trust level - + Nivell de confiança Do you accept connections signed by this key? - + Acceptes connexions signades amb aquesta clau? Name of the key - + Nom de la clau Certificat ID - + Id del certificat - + Make friend... - + Fer amic... - + Did peer authenticate you - + El contacte m'ha autenticat This column indicates trust level and whether you signed their PGP key - + Aquesta columna indica el nivell de confiança i si tu has signat les claus PGP Did that peer sign your PGP key - + El contacte ha signat la meva clau PGP Since when I use this certificate - + Des de quan utilitzo aquest certificat Search name - + Cercar nom Search peer ID - + Cerca Id contacte - + Key removal has failed. Your keyring remains intact. Reported error: - + Ha fallat esborrar la clau. El teu clauer continua intacte. + +Error reportat: @@ -11629,7 +12363,7 @@ Reported error: NewsFeed - + News Feed Novetats @@ -11648,18 +12382,13 @@ Reported error: This is a test. Això és un test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Novetats</h1> <p>La font de noticies mostra els últims esdeveniments a la xarxa ordenats per hora de recepció. Això et proporciona un resum de l'activitat dels teus amics. Pots triar quins esdeveniments es mostren a <b>Opcions</b>. </p> <p>Els esdeveniments mostrats són: <ul> <li>Intents de connexió (útil per fer amics amb gent nova i controlar qui està intentant connectar-te)</li> <li>Publicacions a canals i fòrums</li> <li>Nous canals i fòrums als que et pots subscriure</li> <li>Missatges privats dels teus amics</li> </ul> </p> - News feed Novetats - + Newest on top El més nou a dalt @@ -11668,6 +12397,11 @@ Reported error: Oldest on top El més vell a dalt + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Novetats</h1> <p>La font de noticies mostra els últims esdeveniments a la xarxa ordenats per hora de recepció. Això et proporciona un resum de l'activitat dels teus amics. Pots triar quins esdeveniments es mostren a <b>Opcions</b>. </p> <p>Els esdeveniments mostrats són: <ul> <li>Intents de connexió (útil per fer amics amb gent nova i controlar qui està intentant connectar-te)</li> <li>Publicacions a canals i fòrums</li> <li>Nous canals i fòrums als que et pots subscriure</li> <li>Missatges privats dels teus amics</li> </ul> </p> + NotifyPage @@ -11743,7 +12477,7 @@ Reported error: Ip security - + Seguretat Ip @@ -11811,7 +12545,13 @@ Reported error: Parpellejar - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + <h1><img width="24" src=":/images/help_64.png">&nbsp;&nbsp;Notificacions</h1> +<p>El RetroShare t'avisarà de que passa a la teva xarxa. En funció del teu ús, pots voler activar o desactivar alguna de les notificacions. Aquesta plana està dissenyada per això.</p> + + + Top Left Superior esquerra @@ -11835,12 +12575,6 @@ Reported error: Notify Notificar - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notificacions</h1> -<p>El RetroShare t'avisarà de que passa a la teva xarxa. En funció del teu ús, pots voler activar o desactivar alguna de les notificacions. Aquesta plana està dissenyada per això.</p> - Disable All Toasters @@ -11864,7 +12598,7 @@ Reported error: Systray - + Àrea de notificació @@ -11874,23 +12608,23 @@ Reported error: Count all unread messages - + Comptar tots els missatges no llegits Count occurences of any of the following texts (separate by newlines): - + Comptar coincidències de qualsevol dels texts següents (un per línia): Count occurences of my current identity - + Comptar quants cops hi ha la meva identitat actual NotifyQt - + PGP key passphrase Contrasenya de clau PGP @@ -11930,7 +12664,7 @@ Reported error: Desant índex de l'arxiu... - + Test Test @@ -11945,20 +12679,20 @@ Reported error: Títol desconegut - - + + Encrypted message Missatge encriptat - + Please enter your PGP password for key Si us plau, introdueix la contrasenya PGP per la clau For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of several minutes was detected with your friends). - + Perquè aquestes sales de xat funcionin l'hora en el teu ordinador ha de ser correcta. Si us plau, comprova que és el cas (És possible que una variació de varis minuts s'hagi detectat respecte els teus amics). @@ -12003,55 +12737,47 @@ Mode joc: 25 %s del tràfic estàndard i PENDENT: missatges emergents reduïts Tràfic baix: 10 %s del tràfic estàndard i PENDENT: posar en pausa totes les transferències d'arxius - - OutQueueStatisticsWidget - - - Outqueue statistics - Estadístiques de la cua de sortida - - - - By priority: - - - - - By service : - - - PGPKeyDialog Dialog - + Diàleg PGP Key info - + Informació clau PGP PGP name : - + Nom PGP : Fingerprint : + Fingerprint : + + + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> - + Trust level: + Nivell de confiança: + + + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> - + Unset - + No establert @@ -12061,7 +12787,7 @@ Tràfic baix: 10 %s del tràfic estàndard i PENDENT: posar en pausa totes les t No trust - + Sense confiança @@ -12081,59 +12807,76 @@ Tràfic baix: 10 %s del tràfic estàndard i PENDENT: posar en pausa totes les t Key signatures : + Signatures de la clau : + + + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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"> -<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;">Signar la clau d'un amic és una forma de demostrar la confiança amb aquest amic, als teus altres amics. A més a més, només els contactes amb claus signades rebran informació sobre els teus altres amics de confiança.</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;">No es pot desfer una signatura, fes-ho només si n'estàs segur.</p></body></html> - - - - Sign this PGP key +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + Sign this PGP key + Signa aquesta clau PGP + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Signa clau PGP - Deny connections + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + Deny connections + Denegar connexions + - Accept connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + Accept connections + Acceptar connexions + ASCII format - + Format ASCII + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Inclou les signatures PGP Key details - + Detalls de la clau PGP @@ -12159,12 +12902,12 @@ p, li { white-space: pre-wrap; } The trust level is a way to express your own trust in this key. It is not used by the software nor shared, but can be useful to you in order to remember good/bad keys. - + El nivell de confiança és una forma d'expressar la teva confiança en aquesta clau. No s'utilitza pel programa ni es comparteix, però et pot ser útil per recordar claus bones/dolentes. Your trust in this peer is ultimate - + La confiança en aquest contacte és màxima. @@ -12182,25 +12925,25 @@ p, li { white-space: pre-wrap; } La confiança en aquest contacte és nula. - + This key has signed your own PGP key - + Aquesta clau ha signat la teva clau PGP <p>This PGP key (ID= - + <p>Aquesta clau PGP (Id= You have chosen to accept connections from Retroshare nodes signed by this key. - + Has escollit acceptar connexions de nodes de Retroshare signats amb aquesta clau. You are currently not allowing connections from Retroshare nodes signed by this key. - + No estàs permetent connexions de nodes de Retroshare signats amb aquesta clau. @@ -12215,17 +12958,17 @@ p, li { white-space: pre-wrap; } You haven't set a trust level for this key. - + No has establert un nivell de confiança per aquesta clau. This is your own PGP key, and it is signed by : - + Aquesta és la teva clau PGP i està signada per : This key is signed by : - + Aquesta clau està signada per : @@ -12356,12 +13099,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 Amics: 0/0 - + Online Friends/Total Friends Amics en línia/Amics en total @@ -12730,7 +13473,7 @@ p, li { white-space: pre-wrap; } la carpeta arrel %1 no existeix, la carrega per defecte ha fallat - + Error: instance '%1'can't create a widget Error: instancia '%1' no pot crear un control @@ -12791,19 +13534,19 @@ p, li { white-space: pre-wrap; } Autoritzar tots els complements - - Loaded plugins - Complements carregats - - - + Plugin look-up directories Directoris on buscar complements - - Hash rejected. Enable it manually and restart, if you need. - Hash rebutjat. Habilita'l manualment i reinicia, si vols. + + Plugin disabled. Click the enable button and restart Retroshare + Complement deshabilitat. Clica el botó d'activació o reinicia el Retroshare + + + + [disabled] + [desactivat] @@ -12811,27 +13554,36 @@ p, li { white-space: pre-wrap; } No s'ha proporcionat número d'API. Si us plau, llegeix el manual de desenvolupament de complements. - + + + + + + [loading problem] + [problema de carrega] + + + No SVN number supplied. Please read plugin development manual. No s'ha proporcionat número d'SVN. Si us plau, llegeix el manual de desenvolupament de complements. - + Loading error. Error carregant. - + Missing symbol. Wrong version? Falten símbols. Versió equivocada? - + No plugin object Sense objecte del complement - + Plugins is loaded. Complement carregat. @@ -12841,22 +13593,7 @@ p, li { white-space: pre-wrap; } Estat desconegut. - - Title unavailable - Títol no disponible - - - - Description unavailable - Descripció no disponible - - - - Unknown version - Versió desconeguda - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12868,15 +13605,16 @@ protegeix de l'acció maliciosa de complements modificats. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + <h1><img width="24" src=":/images/help_64.png">&nbsp;&nbsp;Complements</h1> <p>Els complements es carreguen dels directoris del llistat inferior.</p> <p> Per raons de seguretat, els complements acceptats es carreguen automàticament mentre l'executable principal del Retroshare o els complements no canviïn. En tal cas, l'usuari haurà de confirmar-ho altre cop. Un cop el programa s'ha iniciat, pots habilitar un complement manualment fent clic al botó "Activa" i després reiniciant el Retroshare.</p> <p>Si vols desenvolupar els teus propis complements contacta amb els desenvolupadors i estaran contents d'ajudar-te!</p> + + + Plugins Complements - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Complements</h1> <p>Els complements es carreguen dels directoris del llistat inferior.</p> <p> Per raons de seguretat, els complements acceptats es carreguen automàticament mentre l'executable principal del RetroShare o els complements no canviïn. En tal cas, l'usuari haurà de confirmar-ho altre cop. Un cop el programa s'ha iniciat, pots habilitar un complement manualment fent clic al botó "Activa" i després reiniciant el RetroShare.</p> <p>Si vols desenvolupar els teus propis complements contacta amb els desenvolupadors i estaran contents d'ajudar-te!</p> - PopularityDefs @@ -12944,12 +13682,17 @@ modificats. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + Xat tancat remotament. Si us plau, tanca aquesta finestra. + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. La persona amb qui estaves parlant ha esborrat el túnel segur de xat. Ja pots tancar la finestra de xat. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Tancar aquesta finestra finalitzarà la conversa, notifica-ho al contacte i esborra el túnel encriptat. @@ -12959,12 +13702,7 @@ modificats. Matar el túnel? - - Hash Error. No tunnel. - Error de hash. Sense túnel. - - - + Can't send message, because there is no tunnel. No es pot enviar el missatge perquè no hi ha túnel. @@ -13045,7 +13783,12 @@ modificats. Enviat - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Publicats</h1> <p>El servei de publicats et permet compartir enllaços d'Internet que es distribueixen entre els nodes de Retroshare com si fos un fòrum o ⇥ canal</p> ⇥ <p>Els enllaços poden ser comentats pels usuaris subscrits. També hi ha un sistema de promoció que permet ⇥ destacar enllaços importants.</p> ⇥ <p>No hi ha cap restricció en quins enllaços es comparteixen. Sigues curós al fer clic en ells.</p> <p>Els enllaços publicats s'esborraran al cap de %1 mesos.</p> + + + Create Topic Crear tema @@ -13069,11 +13812,6 @@ modificats. Other Topics Altres temes - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13296,7 +14034,7 @@ modificats. 1-10 - + 1-10 @@ -13328,7 +14066,7 @@ modificats. PrintPreview - + RetroShare Message - Print Preview Missatge del RetroShare - Prèvia d'impressió @@ -13683,7 +14421,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Confirmació @@ -13693,7 +14432,7 @@ p, li { white-space: pre-wrap; } Vols que aquest enllaç el manipuli el teu sistema? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13722,7 +14461,12 @@ clauer PGP i obrir l'assistent de fer amic. Vols processar %1 enllaços? - + + This file already exists. Do you want to open it ? + Aquest arxiu ja existeix. Vols obrir-lo? + + + %1 of %2 RetroShare link processed. %1 de %2 enllaç de RetroShare processat. @@ -13889,7 +14633,7 @@ Els caràcters <b>",|,/,\,&lt;&gt;,*,?</b> es substitui No s'ha pogut processar l'arxiu de col·lecció - + Deny friend Negar l'amic @@ -13909,7 +14653,7 @@ Els caràcters <b>",|,/,\,&lt;&gt;,*,?</b> es substitui Petició d'arxiu cancel·lada - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Aquesta versió de RetroShare utilitza l'OpenPGP-SDK. Com a efecte secundari no utilitza el clauer PGP del sistema, sinó un clauer compartit per totes les instancies de RetroShare. <br><br>No sembla que tinguis aquest clauer, tot i que tens claus PGP als comptes existents de RetroShare, probablement perquè acabes de canviar a aquesta nova versió del programa. @@ -13940,7 +14684,7 @@ Els caràcters <b>",|,/,\,&lt;&gt;,*,?</b> es substitui S'ha produït un error inesperat. Si us plau, informa 'RsInit::InitRetroShare unexpected return code %1'. - + Multiple instances Múltiples instancies @@ -13976,11 +14720,6 @@ Arxiu de bloqueig:\n Tunnel is pending... Túnel pendent... - - - Secured tunnel established. Waiting for ACK... - Túnel segur establert. Esperant confirmació... - Secured tunnel is working. You can talk! @@ -13998,7 +14737,7 @@ L'error reportat és: %2 - + Click to send a private message to %1 (%2). Clica per enviar un missatge privat a %1 (%2). @@ -14048,7 +14787,7 @@ L'error reportat és: Dades reenviades - + You appear to have nodes associated to DSA keys: Sembla que tens nodes associats a claus DSA: @@ -14058,100 +14797,124 @@ L'error reportat és: Les claus DSA encara no són suportades en aquesta versió de RetroShare. Tots aquests nodes no es podran utilitzar. Ho sentim molt. - + enabled - + activat disabled - + desactivat - + Join chat lobby - + Afegeix-te a la sala de xat - + Move IP %1 to whitelist - + Mou la IP %1 a la llista blanca Whitelist entire range %1 - + Inclou a la llista blanca el rang sencer %1 whitelist entire range %1 - + Inclou a la llista blanca el rang sencer %1 - + + %1 seconds ago - + fa %1 segons + %1 minute ago - + fa %1 minut + %1 minutes ago - + fa %1 minuts + %1 hour ago - + fa %1 hora + %1 hours ago - + fa %1 hores + %1 day ago - + fa %1 dia + %1 days ago fa %1 dies - + Subject: - + Assumpte: Participants: - + Participants: Auto Subscribe: - + Auto-subscripció: Id: - + Id: + + + + +Security: no anonymous IDs + +Seguretat: IDs anònimes no This cert is malformed. Error code: - + Aquest certificat està mal format. Codi d'error: The following has not been added to your download list, because you already have it: - + El següent no s'ha afegit a la llista de descarregues perquè ja hi era: + + + + Error + Error + + + + unable to parse XML file! + no s'ha pogut interpretar l'arxiu XML! @@ -14162,7 +14925,7 @@ L'error reportat és: Auxiliar d'inici ràpid - + <!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; } @@ -14200,21 +14963,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > Següent > - - - - + + + + + Exit Sortir - + For best performance, RetroShare needs to know a little about your connection to the internet. Per funcionar millor, RetroShare necessita saber una mica més de com et connectes a Internet. @@ -14281,13 +15046,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back < Enrere - + <!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; } @@ -14312,7 +15078,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Tota la xarxa @@ -14337,7 +15103,27 @@ p, li { white-space: pre-wrap; } Compartir automàticament directori entrant (recomanat) - + + RetroShare Page Display Style + Estil de pàgina del RetroShare + + + + Where do you want to have the buttons for the page? + On vols tindre els botons per la pàgina? + + + + ToolBar View + Vista en barra d'eines + + + + List View + Vista en llista + + + <!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; } @@ -14446,13 +15232,13 @@ p, li { white-space: pre-wrap; } Do you really want to stop sharing this directory ? - + Segur que vols deixar de compartir aquest directori? RSGraphWidget - + %1 KB %1 kB @@ -14488,7 +15274,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Permès per defecte @@ -14519,31 +15305,31 @@ p, li { white-space: pre-wrap; } - Switched Off - Apagat + Globally switched Off + Apagat globalment Service name: - + Nom del servei: Peer name: - + Nom del contacte: Peer Id: - + Id del contacte: RSettingsWin - + Error Saving Configuration on page - + Error desant configuració a la pàgina @@ -14561,7 +15347,7 @@ p, li { white-space: pre-wrap; } <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + <strong>Baixada:</strong> 0.00 (kiB/s) | <strong>Pujada:</strong> 0.00 (kiB/s) @@ -14650,8 +15436,8 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Repetidors</h1> <p>Activant els repetidors permets al teu node de RetroShare actuar com un pont entre usuaris de RetroShare que no poden connectar directament, per exemple per trobar-se darrera d'un tallafocs.</p> <p>Pots escollir funcionar com un repetidor marcant <i>activar connexions de repetidor</i> o simplement beneficiar-te d'altres contactes que actuïn de repetidor marcant <i>utilitza servidors repetidors</i>. Tingues en compte que pots especificar quan ample de banda dediques a fer de repetidor per amics teus, amics dels teus amics o qualsevol de la xarxa RetroShare.</p> <p>En qualsevol cas, un node de RetroShare funcionant com a repetidor no pot veure el tràfic que repeteix, ja que està encriptat i autenticat pels dos nodes interessats.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/images/help_64.png">&nbsp;&nbsp;Repetidors</h1> <p>Activant els repetidors permets al teu node de Retroshare actuar com un pont entre usuaris de Retroshare que no poden connectar directament, per exemple per trobar-se darrera d'un tallafocs.</p> <p>Pots escollir funcionar com un repetidor marcant <i>activar connexions de repetidor</i> o simplement beneficiar-te d'altres contactes que actuïn de repetidor marcant <i>utilitza servidors repetidors</i>. Tingues en compte que pots especificar quan ample de banda dediques a fer de repetidor per amics teus, amics dels teus amics o qualsevol de la xarxa Retroshare.</p> <p>En qualsevol cas, un node de Retroshare funcionant com a repetidor no pot veure el tràfic que repeteix, ja que està encriptat i autenticat pels dos nodes interessats.</p> @@ -14675,7 +15461,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW NOU @@ -14685,22 +15471,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + Adreça IP no marcada IP address is blacklisted - + Adreça IP a la llista negra IP address is not whitelisted - + Adreça IP no a la llista blanca IP address accepted - + Adreça IP acceptada @@ -14718,28 +15504,28 @@ p, li { white-space: pre-wrap; } Remove IP from whitelist - + Treure IP de la llista blanca Add IP to blacklist - + Afegir IP a la llista blanca Remove IP from blacklist - + Treure IP de la llista negra Only IP - + Només IP Entire range - + Rang sencer @@ -15015,7 +15801,7 @@ Si creus que és correcta, treu la línia corresponent de l'arxiu i torna&a RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? La imatge és massa gran per la transmissió. @@ -15027,13 +15813,13 @@ Reduir la imatge a %1x%2 pixels? Invalid format - + Format invàlid Rshare - + Resets ALL stored RetroShare settings. Reinicialitza TOTS les valors de configuració del RetroShare. @@ -15078,34 +15864,34 @@ Reduir la imatge a %1x%2 pixels? Incapaç d'obrir l'arxiu de registre '%1': %2 - + built-in inclòs - + Could not create data directory: %1 No s'ha pogut crear el directori de dades: %1 - + Revision - + Revisió Invalid language code specified: - + El codi d'idioma especificat no és vàlid: Invalid GUI style specified: - + L'estil d'interfície gràfica d'usuari no és vàlid: Invalid log level specified: - + El nivell de verbositat del registre no és vàlid: @@ -15116,33 +15902,10 @@ Reduir la imatge a %1x%2 pixels? Estadístiques RTT - - SFListDelegate - - - B - B - - - - KB - kB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Inserir una paraula clau aquí (com a mínim 3 caràcters de longitud) @@ -15324,12 +16087,12 @@ Reduir la imatge a %1x%2 pixels? Descarregar seleccionats - + File Name Nom d'arxiu - + Download Descarregar @@ -15398,7 +16161,7 @@ Reduir la imatge a %1x%2 pixels? Obrir directori - + Create Collection... Crear col·lecció... @@ -15418,7 +16181,7 @@ Reduir la imatge a %1x%2 pixels? Descarregar d'arxiu de col·lecció... - + Collection Col·lecció @@ -15444,7 +16207,7 @@ Reduir la imatge a %1x%2 pixels? IP address: - + Adreça IP: @@ -15459,7 +16222,7 @@ Reduir la imatge a %1x%2 pixels? Peer Name: - + Nom del contacte: @@ -15476,33 +16239,33 @@ Reduir la imatge a %1x%2 pixels? but reported: - + però reportat: Wrong external ip address reported - + Reportada adreça IP externa incorrecta IP address %1 was added to the whitelist - + L'adreça IP %1 s'ha afegit a la llista blanca <p>This is the external IP your Retroshare node thinks it is using.</p> - + <p>Aquesta és la IP externa que el teu node de Retroshare creu que està utilitzant.</p> <p>This is the IP your friend claims it is connected to. If you just changed IPs, this is a false warning. If not, that means your connection to this friend is forwarded by an intermediate peer, which would be suspicious.</p> - + <p>Aquesta és la IP que el teu amic diu estar connectat. Si just has canviat d'IP això és un fals avís. Si no, significa que la teva connexió amb aquest amic està sent encaminada per un contacte intermig, que seria sospitós.</p> <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> - + <html><head/><body><p>Aquest avís apareix per protegir-te contra atacs de reenviament. En tal cas, l'amic amb qui estàs connectat veurà la IP de l'atacant, no la teva IP externa.</p><p><br/></p><p>No obstant, si acabes de canviar la teva IP per qualsevol motiu (alguns proveïdors forcen el canvi d'IP regularment) aquest avís només t'indica que t'has connectat amb el teu amic abans que el RetroShare hagi notat el canvi d'IP. Res malament en tal cas.</p><p><br/></p><p>Pots evitar fàcilment els falsos avisos afegint a la llista blanca les teves IPs (Ex.:El rang d'IPs del teu proveïdor) o deshabilitant completament aquests avisos a Opcions-&gt;Notificar-&gt;Novetats.</p></body></html> @@ -15655,18 +16418,28 @@ Reduir la imatge a %1x%2 pixels? Missing/Damaged SSL certificate for key - + Certificat SSL perdut/danyat per la clau ServerPage - + Network Configuration Configuració de xarxa - + + Network Mode + Mode de xarxa + + + + Nat + NAT + + + Automatic (UPnP) Automàtic (UPnP) @@ -15681,7 +16454,7 @@ Reduir la imatge a %1x%2 pixels? Port reenviat manualment - + Public: DHT & Discovery Públic: DHT i descobriment @@ -15701,13 +16474,13 @@ Reduir la imatge a %1x%2 pixels? Dark Net: Cap - - + + Local Address Adreça local - + External Address Adreça externa @@ -15717,28 +16490,28 @@ Reduir la imatge a %1x%2 pixels? DNS dinàmic - + Port: Port: - + Local network Xarxa local - + External ip address finder Cercador d'adreça IP externa - + UPnP UPnP - + Known / Previous IPs: Conegudes / IPs previes: @@ -15764,13 +16537,13 @@ d'un tallafocs o una VPN. Permet que el RetroShare pregunti la meva IP a aquests llocs web: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. El rang de ports acceptats va de 10 fins 65535. Normalment els ports per sota 1024 estan reservats pel teu sistema. @@ -15780,24 +16553,12 @@ d'un tallafocs o una VPN. El rang de ports acceptables va de 1024 a 65535. Els ports per sota 1024 estan reservats pel teu sistema. - + Onion Address Adreça Onion - - Expected torrc Port Configuration: - Configuració de port torrc esperada: - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - DirectoriServeiOcult </your/path/to/hidden/directory/service> -PortServeiOcult 9191 127.0.0.1:9191 - - - + Discovery On (recommended) Descobriment activat (Recomanat) @@ -15807,19 +16568,69 @@ PortServeiOcult 9191 127.0.0.1:9191 Descobriment desactivat - + + Hidden - See Config + Ocult - Mira la configuració + + + + I2P Address + Adreça I2P + + + + I2P incoming ok + Entrants I2P correctes + + + + Points at: + Apunta a: + + + + Tor incoming ok + Entrants Tor correctes + + + + incoming ok + Entrants correctes + + + + Proxy seems to work. El repetidor sembla que funciona - - [Hidden mode] - + + I2P proxy is not enabled + El repetidor I2P no està activat - + + You are reachable through the hidden service. + Se't pot contactar a través d'un servei ocult. + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + El repetidor no està activat o està trencat. +Estan tots els serveis funcionant correctament?? +Comprova els teus ports! + + + + [Hidden mode] + [Node ocult] + + + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> - + <html><head/><body><p>Això buida la llista d'adreces conegudes. Això és útil si per alguna rao la teva llista d'adreces conté una adreça invàlida/irrellevant/caducada que vols evitar passar als teus amics com una adreça de contacte.</p></body></html> @@ -15827,90 +16638,95 @@ PortServeiOcult 9191 127.0.0.1:9191 Neteja - + Download limit (KB/s) - + Límit de baixada (KiB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + <html><head/><body><p>Aquest limit de baixada afecta a tota l'aplicació. En algunes ocasions, com quan es transfereixen molts arxius petits a la vegada, l'ample de banda estimat no és fiable i el valor total anunciat pel Retroshare pot excedir aquest límit</p></body></html> - + Upload limit (KB/s) - + Límit de pujada (KiB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> + <html><head/><body><p>El límit de pujada afecta a tota l'aplicació. Un límit de pujada massa baix pot bloquejar eventualment serveis de baixa prioritat (Fòrums, canals). El valor mínim recomanat és de 50 KiB/s. </p></body></html> + + + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> - + Test Test - + Network Xarxa - + IP Filters - + Filtres IP - + IP blacklist - + Llista negra d'IPs - + IP range - + Rang IP - - - + + + Status Estat - - + + Origin Origen - - + + Reason Rao - - + + Comment Comentari - + IPs IPs - + IP whitelist Llista blanca d'IPs - + Manual input Entrada manual @@ -15935,12 +16751,144 @@ PortServeiOcult 9191 127.0.0.1:9191 Afegir a la llista blanca - + + Hidden Service Configuration + Configuració dels serveis ocults + + + + Outgoing Connections + Connexions sortints + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + Repetidor Socks I2P + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + Sortints I2P correctes + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + Opcions per defecte del repetidor Socks Tor: 127.0.0.1:9050. Canvia-ho a la contiguració del torrc i actualitza-ho aquí. + + +Opcions per defecte del repetidor Socks I2P: llegeix http://127.0.0.1:7657/i2ptunnelmgr per establir un túnel client: + +Assistent de túnel -> Túnel client -> SOCKS 4/4a/5 -> introdueix un nom -> deixa 'Outproxies' buit -> introdeix port (recorda'l!) [també hauries d'establir l'accés a 127.0.0.1] -> marca 'Auto Start' -> Acabat! + +Ara introdueix l'adreça (e.g. 127.0.0.1) i el port que has escullit abans pel repetidor I2P. + + +Pots connectar-te a nodes ocults, encara que estiguis en un node estàndard, així que perquè no configurar Tor i/o I2P? + + + + Incoming Service Connections + Connexions de serveis entrants + + + + + Service Address + Adreça del servei + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + <html><head/><body><p>Aquesta és la teva adreça oculta. Hauria de ser semblant a <span style=" font-weight:600;">[algu].onion</span> o <span style=" font-weight:600;">[algu].b32.i2p. </span>Si has configurat un servei ocult amb Tor, l'adreça onion és generada automàticament per Tor. Pots obtindre-la a <span style=" font-weight:600;">/var/lib/tor/[nom servei]/hostname</span>. Per I2P: Configura un túnel al servidor ( http://127.0.0.1:7657/i2ptunnelmgr ) i copia l'adreça base32 quan funcioni (hauria d'acabar amb .b32.i2p)</p></body></html> + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + <html><head/><body><p>Aquesta és l'adreça local a la que el servei ocult apunta en el teu localhost. La majoria de cops, <span style=" font-weight:600;">127.0.0.1</span> és l'opció correcta.</p></body></html> + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + Entrants correctes + + + + Expected Configuration: + Configuració esperada: + + + + Please fill in a service address + Si us plau, escriu una adreça de servei + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + Per rebre connexions, abans has de configurar un servei ocult Tor/I2P. + +Per Tor: Consulta la documentació del torrc per detalls. + +Per I2P: Accedeix a http://127.0.0.1:7657/i2ptunnelmgr per establir un túnel al servidor: + +Assistent de túnel -> Servidor túnel -> Estàndard -> introdueix un nom -> introdueix l'adreça i port que el teu RS esitgui utilitzant (Mira l'adreça local a sobre) -> marca 'Auto Start' -> Fet! + + +Un cop fet, enganxa l'adreça Onion/I2P (Base32) a la casella superior. + +Aquesta és la teva adreça externa a la xarxa Tor/I2P. + +Finalment assegurat que els ports coincideixen amb la configuració. + + +Si tens problemes coonectan-te sobre Tor comprova també els registres de Tor. + + + IP Range Rang IP - + Reported by DHT for IP masquerading Anunciat per DHT per enmascarament IP @@ -15963,153 +16911,78 @@ PortServeiOcult 9191 127.0.0.1:9191 Afegit per tu - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>Mentre que les IPs llistades s'obtenen de les fonts següents: IPs d'un certificat intercanviat manualment, rangs d'IPs introduïts per tu en aquesta finestra o en els elements de seguretat de novetats</p><p>El comportament per defecte del Retroshare és (1) sempre permetre connexions a contactes amb una IP a la llista blanca, encara que també apareguin a la llista negra; (2) opcionalment es pot forçar a que les IPs hagin d'estar a la llista blanca. Pots canviar aquest comportament per cada contacte a la finestra &quot;Detalls&quot; de cada node de Retroshare.</p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + <html><head/><body><p>La DHT et permet respondre les peticions +de connexió dels teus amics utilitzant el protocol + DHT de BitTorrent. Millora molt la connectivitat. Cap informació s'emmagatzema a la DHT. Només s'utilitza com a repetidor per contactar amb altres nodes de Retroshare. +</p><p>El servei de descobriment envia els noms dels nodes i les identitats dels teus contactes de confiança als nodes contactats, per ajudar a que escullin amics nous. No obstant, l'amistat mai és automàtica i els dos contactes encara haurien de confiar entre ells per permetre la connexió. - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>L'indicador es torna verd quan el Retroshare aconsegueix obtindre la teva pròpia IP d'una de les webs llistades, si ho tens activat. El Retroshare intentarà també utilitzar altres mètodes per obtenir la teva IP. - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + <html><head/><body><p>Aquesta llista s'omple automàticament amb informació recopilada des de múltiples fonts: contactes que fan masquerading anunciats per DHT, rangs d'IP entrats per tu, i rangs d'IP anunciats pels teus amics. La configuració per defecte hauria de protegir-te contra repetidors de tràfic massius.</p><p>Detectar automàticament IPs que fan masquerading pot acabar posant IPs amigues a la llista negra. En tal cas, utilitza el menú contextual per afegir-los a la llista blanca.</p></body></html> - + activate IP filtering - + activar filtrat per IP - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> - + <html><head/><body><p>Això és molt dràstic, ves amb compte. Com que les IPs que fan reenviament poden ser IPs reals aquesta opció pot provocar desconnexions i t'obligarà a posar les IPs dels teus amics a la llista blanca.</p></body></html> Ban every IP reported by your friends - + Evita totes les IPs denunciades pels teus amics <html><head/><body><p>Another drastic option. If you use it, be prepared to add your friends' IPs into the whitelist when needed.</p></body></html> - + <html><head/><body><p>Una altra opció dràstica. Si l'utilitzes, hauràs d'afegir les IPs dels teus amics a la llista blanca quan les necessitis.</p></body></html> Ban every masquerading IP reported by your DHT - + Evita totes les IPs reenviants denunciades pel teu DHT <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + <html><head/><body><p>Només amb aquesta opció ja et protegeixes d'atacs a llarga escala de reenviament IP.</p></body></html> Automatically ban ranges of DHT masquerading IPs starting at - - - - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - - Tor Socks Proxy - - - - - Tor outgoing Okay - - - - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - + Expulsa automàticament els rangs d'IP fent reenviament DHT començant a + Tor Socks Proxy + Repetidor socks TOR + + + + Tor outgoing Okay + Sortints Tor correcte + + + Tor proxy is not enabled - - - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - + El repetidor Tor no està activat @@ -16137,13 +17010,13 @@ Check your ports! Require whitelist - + Llista blanca obligatoria ServicePermissionsPage - + ServicePermissions PermisosServei @@ -16157,15 +17030,15 @@ Check your ports! Permissions Permisos - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permisos</h1> <p>Permisos et permet controlar quins serveis estan disponibles a quins amics</p> <p>Cada interruptor mostra dos llums, indicant si el teu amic o tu teniu activat aquest servei. Ambdós han d'estar activats (mostrant <img height=20 src=":/images/switch11.png"/>) per a que es transmeti informació per una combinació de servei/amic específica.</p> <p>Per cada servei hi ha un interruptor global <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> que et permet activar-lo o desactivar-lo per tothom a la vegada.</p> <p>Ves amb compte: Alguns serveis depenen l'un de l'altre. Per exemple, si apagues l'encaminador turtle també s'aturaran totes les transferències anònimes, xats distants i missatgeria distant.</p> - hide offline - + Oculta fora de línia + + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permisos</h1> <p>Permisos et permet controlar quins serveis estan disponible a cada amic.</p> <p>Cada interruptor té dos llumetes, indicant si tu o el teu amic haveu activat el servei. Tots dos han d'estar activats (mostrant <img height=20 src=":/images/switch11.png"/>) per a que la informació s'enviï per cada parella servei/amic.</p> <p>Per cada servei, l'interruptor global <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> et permet apagar-lo o encendre'l per tothom a la vegada.</p> <p>Ves amb compte: Alguns serveis depenen l'un de l'altre. Per exemple, si desactives el protocol turtle també aturaràs totes les transferencies anònimes, xats distants i missatgeria distant.</p> @@ -16222,7 +17095,7 @@ Check your ports! Share flags and groups: - + Permisos de compartició i grups: @@ -16430,7 +17303,7 @@ Escull els amics amb qui vols compartir el teu canal. Descarregar - + Copy retroshare Links to Clipboard Copiar enllaç RetroShare al porta-retalls @@ -16455,7 +17328,7 @@ Escull els amics amb qui vols compartir el teu canal. Afegir enllaços al núvol - + RetroShare Link Enllaç RetroShare @@ -16471,7 +17344,7 @@ Escull els amics amb qui vols compartir el teu canal. Afegir recurs compartit - + Create Collection... Crear col·lecció... @@ -16494,44 +17367,50 @@ Escull els amics amb qui vols compartir el teu canal. SoundManager - + Friend - + Amic Go Online - + Posar-se en línia Chatmessage - + Missatge de xat New Msg - + Mstg nou Message - + Missatge + Message arrived - + El missatge ha arribat - + Download - + Descarregar Download complete - + Descarrega completa + + + + Lobby + Sala @@ -16574,7 +17453,7 @@ Escull els amics amb qui vols compartir el teu canal. Default - + Per defecte @@ -16582,18 +17461,18 @@ Escull els amics amb qui vols compartir el teu canal. Sound is off, click to turn it on - + So desactivat, clica per activar Sound is on, click to turn it off - + So activat, clica per desactivar SplashScreen - + Load profile Carrega perfil @@ -16853,12 +17732,12 @@ Això es pot canviar a les opcions de configuració. - + Connected Connectat - + Unreachable Fora d'abast @@ -16874,18 +17753,18 @@ Això es pot canviar a les opcions de configuració. - + Trying TCP Intentant TCP - - + + Trying UDP Intentant UDP - + Connected: TCP Connectat: TCP @@ -16896,6 +17775,11 @@ Això es pot canviar a les opcions de configuració. + Connected: I2P + Connectat: I2P + + + Connected: Unknown Connectat: Desconegut @@ -16905,49 +17789,59 @@ Això es pot canviar a les opcions de configuració. DHT: Contacte - + TCP-in - + TCP-entrant TCP-out - + TCP-sortint - + inbound connection - + connexions entrants outbound connection - + connexions sortints - + UDP - + UDP Tor-in - + Tor-entrant Tor-out - + Tor-sortint + + + + I2P-in + I2P-entrant + + + + I2P-out + I2P-sortint unkown - + desconegut - + Connected: Tor - + Connectat: Tor @@ -17162,7 +18056,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Pausa @@ -17211,7 +18105,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled Totes les notificacions estan deshabilitades @@ -17297,17 +18191,19 @@ p, li { white-space: pre-wrap; } <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">En flux</span>fa que la transferència es faci en fragments de 1 MiB per ordre, facilitant la previsualització mentre es descarrega. <span style=" font-weight:600;">Aleatori</span>és completament aleatori i afavoreix el comportament en eixam. <span style=" font-weight:600;">Progressiu</span>és un compromís, sol·licitant el proper fragment aleatòriament dins dels propers 50 MiB següents al final de l'arxiu parcial. Això permet aleatorietat i a la vegada evita temps llargs d'inicialització amb els arxius grossos.</p></body></html> <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> - + <html><head/><body><p>El Retroshare pausarà totes les transferències i gravacions de configuració al disc si l'espai lliure queda per sota d'aquest llindar. Això evita la pèrdua d'informació en alguns sistemes. Una finestra de notificació t'avisarà quan això passi.</p></body></html> <html><head/><body><p>This value controls how many tunnel request your peer can forward per second. </p><p>If you have a large internet bandwidth, you may raise this up to 30-40, to allow statistically longer tunnels to pass. Be very careful though, since this generates many small packets that can significantly slow down your own file transfer. </p><p>The default value is 20. If you're not sure, keep it that way.</p></body></html> - + <html><head/><body><p>Aquest valor controla quantes peticions de túnel el teu contacte pot reenviar per segon. </p><p> +Si tens molt ample de banda pots augmentar-lo fins a 30-40, per permetre que túnels estadísticament més llargs puguin passar. Ves amb compte, això generar molts paquets petits que poden alentir significativament les teves pròpies transferències. +</p><p>El valor per defecte és 20. Si no n'estàs segur, deixa-ho així.</p></body></html> @@ -17317,7 +18213,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>You can use this to force RetroShare to download your files rather <br/>than cache files for as many slots as requested. Setting that number <br/>to be equal to the queue size above will always prioritize your files<br/>over cache. <br/><br/>It is however recommended to leave at least a few slots for cache files. For now, cache files are only used to transfer friend file lists.</p></body></html> - + <html><head/><body><p>Pots forçar que el Retroshare descarregui arxius teus en lloc d'arxius cau <br/>per tantes ranures com sol·licitis. Posant aquest valor al mateix que <br/> la mida de la cua de sobre farà que sempre tinguin prioritat els arxius <br/> en descarrega per sobre dels cau. <br/><br/>No obstant, es recomana deixar algunes ranures lliures pels arxius cau. Per ara, els arxius cau s'utilitzen només per transferir els llistats d'arxius dels amics.</p></body></html> @@ -17352,16 +18248,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Descarregues + Uploads Pujades - + Name i.e: file name @@ -17557,25 +18455,25 @@ p, li { white-space: pre-wrap; } - + Slower Més lenta - - + + Average Mitjana - - + + Faster Més ràpida - + Random Aleatori @@ -17600,7 +18498,12 @@ p, li { white-space: pre-wrap; } Especificar... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="32" src=":/images/help_64.png">&nbsp;&nbsp;Transferència d'arxiu</h1> <p>Retroshare contempla dues formes de fer això: transferències directes dels teus amics, i transferències distants amb túnels anònims. A més amés, les transferències d'arxius són multi-origen i permet fer-les en eixam (pots ser origen mentre descarregues)</p> <p>Pots compartir arxius amb <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> la icona de la barra lateral esquerra. Aquests arxius es llistaran a la pestanya els meus arxius. Pots triar per cada grup d'amics si poden o no veure'l a la pestanya arxius d'amics.</p> <p>La pestanya cerca dona resultats pels arxius del teus amics i arxius que es poden accedir distants anònimament utilitzant el sistema de túnels multi-salt.</p> + + + Move in Queue... Moure a la cua... @@ -17626,39 +18529,39 @@ p, li { white-space: pre-wrap; } - + Failed Fallat - - + + Okay Correcte - - + + Waiting Esperant - + Downloading Descarregant - + Complete Complet - + Queued En cua @@ -17695,7 +18598,7 @@ El RetroShare demanarà a la font un mapa detallat de les dades; Compararà i in Tingues paciència! - + Transferring Transferint @@ -17705,7 +18608,7 @@ Tingues paciència! Pujant - + Are you sure that you want to cancel and delete these files? Segur que vols cancel·lar i esborrar aquest arxiu? @@ -17763,7 +18666,7 @@ Tingues paciència! Si us plau, introdueix un nou--i vàlid--nom d'arxiu - + Last Time Seen i.e: Last Time Receiced Data Vist per última vegada @@ -17869,7 +18772,7 @@ Tingues paciència! Mostra columna de vist per última vegada - + Columns Columnes @@ -17879,7 +18782,7 @@ Tingues paciència! Transferències d'arxius - + Path i.e: Where file is saved Ruta @@ -17895,13 +18798,7 @@ Tingues paciència! Mostra columna de ruta - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Transferència d'arxiu</h1> -<p>Retroshare contempla dues formes de fer això: transferències directes dels teus amics, i transferències distants amb túnels anònims. A més amés, les transferències d'arxius són multi-origen i permet fer-les en eixam (pots ser origen mentre descarregues)</p> <p>Pots compartir arxius amb <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> la icona de la barra lateral esquerra. Aquests arxius es llistaran a la pestanya els meus arxius. Pots triar per cada grup d'amics si poden o no veure'l a la pestanya arxius d'amics.</p> <p>La pestanya cerca dona resultats pels arxius del teus amics i arxius que es poden accedir distants anònimament utilitzant el sistema de túnels multi-salt.</p> - - - + Could not delete preview file No s'ha pogut esborrar l'arxiu de previsualització @@ -17911,7 +18808,7 @@ Tingues paciència! Tornar-ho a intentar? - + Create Collection... Crear col·lecció... @@ -17926,7 +18823,7 @@ Tingues paciència! Veure col·lecció... - + Collection Col·lecció @@ -17936,17 +18833,17 @@ Tingues paciència! Compartició d'arxius - + Anonymous tunnel 0x Túnel anònim 0x - + Show file list transfers - + Mostra la llista de transferencia d'arxiu - + version: versió: @@ -17982,7 +18879,7 @@ Tingues paciència! DIR - + Friends Directories Directoris dels amics @@ -18025,7 +18922,7 @@ Tingues paciència! TurtleRouterDialog - + Search requests Peticions de cerca @@ -18088,7 +18985,7 @@ Tingues paciència! Estadístiques d'encaminador - + Age in seconds Edat en segons @@ -18103,7 +19000,17 @@ Tingues paciència! total - + + Anonymous tunnels + Túnels anònims + + + + Authenticated tunnels + Túnels autenticats + + + Unknown Peer Contacte desconegut @@ -18112,16 +19019,11 @@ Tingues paciència! Turtle Router Encaminador Turtle - - - Tunnel Requests - Peticions de túnel - TurtleRouterStatisticsWidget - + Search requests repartition Repartir petició de cerca @@ -18307,23 +19209,33 @@ Tingues paciència! allow access from all IP adresses (Default: localhost only) - + permetre accés des de qualsevol adreça IP (Per defecte: només connexió local) apply setting and start browser - + aplicar opcions i iniciar navegador Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. - + Nota: Aquestes opcions no afecten al Retroshare-nogui. Retroshare-nogui té un paràmetre en línia de comanda per activar la interfície web. - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Interfície web</h1> <p>La interfície web et permet controlar el Retroshare des del navegador. Múltiples dispositius poden compartir el control sobre una instancia de Retroshare. Per tan pots començar una conversa en una tauleta i més tard utilitzar un ordinador d'escriptori per continuar-la.</p><p>Avís: no exposis la teva interfície web a Internet, perquè no hi ha control d'accés ni encriptació. Si vols utilitzar la interfície web des d'Internet utilitza un túnel SSH o un repetidor per assegurar la connexió.</p> + + + Webinterface not enabled Interfície Web no habilitada + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + La interfície web no està activada. Activa-la a Configuració -> Interfície web. + failed to start Webinterface @@ -18334,11 +19246,6 @@ Tingues paciència! Webinterface Interfície Web - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18528,7 +19435,7 @@ Tingues paciència! Cercar - + My Groups Els meus grups @@ -18548,7 +19455,7 @@ Tingues paciència! Altres grups - + Subscribe to Group Subscriure's al grup diff --git a/retroshare-gui/src/lang/retroshare_cs.qm b/retroshare-gui/src/lang/retroshare_cs.qm index f75483f47d358826413f05e713c4ea84b3b91328..14ee7e0446a1a1ae09570800ee06c8dbe849b7d0 100644 GIT binary patch delta 67819 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 delta 20761 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 diff --git a/retroshare-gui/src/lang/retroshare_cs.ts b/retroshare-gui/src/lang/retroshare_cs.ts index e0914a421..41e148b78 100644 --- a/retroshare-gui/src/lang/retroshare_cs.ts +++ b/retroshare-gui/src/lang/retroshare_cs.ts @@ -1,15 +1,15 @@ - + AWidget - + version verze RetroShare version - + Verze RetroShare @@ -21,12 +21,17 @@ O RetroShare - + About O programu - + + Copy Info + + + + close zavřít @@ -85,7 +90,8 @@ Sorry, can't determine system default command for this file - Promiňte nemohu určit výchozí systémový program či přikaz asociovaný s tímto typem souboru⏎ + Promiňte nemohu určit výchozí systémový program či příkaz asociovaný s tímto typem souboru + @@ -232,7 +238,7 @@ Policy: - + Pravidla @@ -321,7 +327,7 @@ p, li { white-space: pre-wrap; } Untitle Album - + Bezejmenné album @@ -405,7 +411,7 @@ p, li { white-space: pre-wrap; } Publish Identity - + Zveřejnit identitu @@ -478,7 +484,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Jazyk @@ -515,113 +521,134 @@ p, li { white-space: pre-wrap; } Tool Bar - + Pozice ovládacích prvků - - + + On Tool Bar - + Horní lišta - - + On List Item - + Levá boční lišta - + Where do you want to have the buttons for menu? + Pozice ovládacích prvků (nastavení, ukončit, atd.) + + + + On List Ite&m - + Where do you want to have the buttons for the page? - + Pozice programových prvků (síť, přenosy, zprávy, atd.) Icon Only - + Pouze ikony Text Only - + Pouze text Text Beside Icon - + Text vedle ikony Text Under Icon - + Text pod ikonou Choose the style of Tool Buttons. - + Zvol styl ovládacích prvků Choose the style of List Items. - + Zvol styl levé postranní lišty. - + Icon Size = 8x8 - + Ikona 8x8 - - + + Icon Size = 16x16 - + Ikona 16x16 - - + + Icon Size = 24x24 + Ikona 24x24 + + + + + Icon Size = 64x64 - - Status Bar + + + Icon Size = 128x128 + + + Status Bar + Stavový řádek + Remove surplus text in status bar. - + Odstranit přebytečný text ve stavovém řádku Compact Mode - + Kompaktní styl Hide Sound Status - + Skrýt nastavení zvuku Hide Toaster Disable - + Skrýt nastavení oznámení Show SysTray on Status Bar + Zobrazit další stavové funkce + + + + Disable SysTray ToolTip - - + + Icon Size = 32x32 - + Ikona 32x32 @@ -636,7 +663,8 @@ p, li { white-space: pre-wrap; } Warning: The services here are experimental. Please help us test them. But Remember: Any data here *WILL* be lost when we upgrade the protocols. - + Varování: Zdejší služby jsou testovací, pomožte nám je otestovat. +Ale měj na paměti, že veškerá zdejší nastavení se mohou změnit s každou novou verzí. @@ -646,17 +674,17 @@ p, li { white-space: pre-wrap; } Circles - + Okruhy lidí GxsForums - + Fóra GxsChannels - + Kanály @@ -666,7 +694,7 @@ p, li { white-space: pre-wrap; } Photos - + Fotografie @@ -692,17 +720,17 @@ p, li { white-space: pre-wrap; } Change Avatar - + Změnit fotku Your Avatar Picture - + Tvá fotka Add Avatar - + Přidat fotku @@ -712,18 +740,18 @@ p, li { white-space: pre-wrap; } Set your Avatar picture - + Zobrazit fotku Load Avatar - + Načíst fotku AvatarWidget - + Click to change your avatar Klikněte pro změnu svého avatara @@ -731,15 +759,15 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s - + KB/s BWListDelegate - + N/A nedostupné @@ -747,13 +775,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage Využití přenosové rychlosti - + Show Settings Zobrazit nastavení @@ -808,7 +836,7 @@ p, li { white-space: pre-wrap; } Zrušit - + Since: Od: @@ -818,6 +846,31 @@ p, li { white-space: pre-wrap; } Skrýt nastavení + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -848,47 +901,47 @@ p, li { white-space: pre-wrap; } InAllocated (KB/s) - + Alokované příchozí (KB/s) Allocated Sent - + Alokované odchozí Out (KB/s) - + Odchozí (KB/s) OutMax (KB/s) - + Maximální odchozí (KB/s) OutQueue - + Odchozí fronta OutAllowed (KB/s) - + Povolené odchozí (KB/s) Allowed Recvd - + Povolené příchozí (KB/s) - + TOTALS - + CELKEM Totals - + Celkem @@ -896,6 +949,49 @@ p, li { white-space: pre-wrap; } Formulář + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -906,7 +1002,7 @@ p, li { white-space: pre-wrap; } Tabs - + Záložky @@ -916,20 +1012,12 @@ p, li { white-space: pre-wrap; } Load posts in background (Thread) - + Načítat příspěvky na pozadí Open each channel in a new tab - - - - - ChatDialog - - - Talking to - + Otevřít nový kanál v nové záložce @@ -945,32 +1033,47 @@ p, li { white-space: pre-wrap; } Změnit přezdívku - + Mute participant + Ignorovat + + + + Send Message - + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Pozvat do místnosti - + Leave this lobby (Unsubscribe) - + Opustit místnost (odhlásit odběr) Invite friends - + Přizvat kontakty Select friends to invite: - + Zvolit kontakty k pozvání: - + Welcome to lobby %1 Vítejte v místnosti %1 @@ -980,13 +1083,13 @@ p, li { white-space: pre-wrap; } Téma: %1 - + Lobby chat Konverzační místnost - + Lobby management @@ -1018,14 +1121,14 @@ p, li { white-space: pre-wrap; } Chcete přestat odebírát změny z této konverzační místnosti? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> - + Pravé tlačítko pro menu, <br/>Dvojklik pro adresaci tomuto kontaktu<br/> This participant is not active since: - + Bez aktivity od: @@ -1033,44 +1136,44 @@ p, li { white-space: pre-wrap; } sekundy - + Start private chat - + Soukromá chat - + Decryption failed. - + Rozšifrování se nezdařilo Signature mismatch - + Nekonzistence podpisů Unknown key - + Neznámý klíč Unknown hash - + Neznámý hash Unknown error. - + Neznámý error Cannot start distant chat - + Nemůžu navázat vzdálený chat Distant chat cannot be initiated: - + Vzdálený chat nemůže proběhnout: @@ -1084,19 +1187,19 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies Konverzace You have %1 new messages - + Máte %1 nových zpráv You have %1 new message - + Máte %1 novou zprávu @@ -1111,7 +1214,7 @@ p, li { white-space: pre-wrap; } Unknown Lobby - + Neznámá místnost @@ -1123,18 +1226,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies Konverzační místnosti - - + + Name Jméno - + Count Počet @@ -1155,23 +1258,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby Vytvořit konverzační místnost - + [No topic provided] [nebylo poskytnuto žádné téma] - + Selected lobby info - + Informace o místnosti - + Private Soukromé @@ -1181,42 +1284,57 @@ p, li { white-space: pre-wrap; } Veřejné - - You're not subscribed to this lobby; Double click-it to enter and chat. + + Anonymous IDs accepted - + + You're not subscribed to this lobby; Double click-it to enter and chat. + Nejsi přihlášen do místnosti (dvojklik pro přihlášení) + + + Remove Auto Subscribe - + Odstranit automatické přihlašování Add Auto Subscribe - + Automaticky přihlásit - + %1 invites you to chat lobby named %2 - + %1 vás pozval do místnosti: %2 - + Search Chat lobbies - + Hledat místnost - + Search Name - + Hledat - + Subscribed + Přihlášen + + + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - + + Create a non anonymous identity and enter this lobby + + + + Columns Sloupce @@ -1231,19 +1349,19 @@ p, li { white-space: pre-wrap; } Ne - + Lobby Name: - + Název místnosti: Lobby Id: - + ID místnosti: Topic: - + Téma: @@ -1252,39 +1370,42 @@ p, li { white-space: pre-wrap; } - Peers: + Security: + + + Peers: + Počet uživatelů: + + TextLabel Textový popisek - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Nezvolena místnost. +Klikni na místnost vlevo pro zobrazení detailů. +Dvojklik na místnost pro vstup, případně pravé tlačítko myši a automatické přihlášení pro automatický vstup. - + Private Subscribed Lobbies - + Aktivní soukromé místnosti Public Subscribed Lobbies - - - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - + Aktivní veřejné místnosti @@ -1292,48 +1413,68 @@ Double click lobbies to enter and chat. Konverzace - + Leave this lobby - + Opustit místnost - + Enter this lobby - + Vstoupit do místnosti Enter this lobby as... + Vstoupit jako... (identita) + + + + Default identity is anonymous - + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Je nutné vytvořit nejprve identitu, pod kterou se přihlásíte do místnosti. - + Choose an identity for this lobby: - + Zvolit identitu pro tuto místnost: - + Create an identity and enter this lobby - + Vytvořit identitu a vstoupit do místnosti - + Show - + Ukázat column - + sloupec @@ -1375,7 +1516,7 @@ Double click lobbies to enter and chat. Zrušit - + Quick Message Rychlá zpráva @@ -1384,12 +1525,37 @@ Double click lobbies to enter and chat. ChatPage - + General Obecné - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Nastavení chatu @@ -1414,7 +1580,12 @@ Double click lobbies to enter and chat. Povolit vlastní velikost fontů - + + Minimum font size + + + + Enable bold Povolit zvýraznění @@ -1436,7 +1607,7 @@ Double click lobbies to enter and chat. Chat Lobby - + Konverzace @@ -1528,7 +1699,7 @@ Double click lobbies to enter and chat. Soukromý chat - + Incoming Příchozí @@ -1572,6 +1743,16 @@ Double click lobbies to enter and chat. System message Systémové hlášení + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1580,37 +1761,37 @@ Double click lobbies to enter and chat. <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> - + <html><head/><body><p align="justify">Zde se nastavuje uchovávání historie na vašem HDD pro různé druhy chatu. Zprávy staršího data budou smazány, aby nedošlo k přesycení sítě (např. pro konverzační místnosti a vzdálený chat).</p></body></html> Chatlobbies - + Konverzační místnosti Enabled: - + Aktivováno: Saved messages (0 = unlimited): - + Uložené zprávy (0 = bez omezení) Number of messages restored (0 = off): - + Počet obnovených zpráv (0 = vypnuto) Maximum storage period, in days (0=keep all): - + Neukládat starší než...dní (0 = bez omezení) Search by default - + Defaultní hledání @@ -1620,73 +1801,73 @@ Double click lobbies to enter and chat. Whole Words - + Celé slova Move to cursor - + Přejít na kurzor Color All Text Found - + Vybarvit všechen nalezený text Color of found text - + Vybarvit nalezený text Choose color of found text - + Vybrat barvu pro označení nalezeného textu Maximum count for coloring matching text - + Maximální počet obarvených nálezů Threshold for automatic search - + Práh automatického vyhledávání Default identity for chat lobbies: - + Výchozí identita pro konverzační místnost: Show Bar by default - + Standardně zobrazovat okno - + Private chat invite from - + Pozvánka na soukromý chat od: Name : - + Jméno : PGP id : - + PGP ID : Valid until : - + Platné do : ChatStyle - + Standard style for group chat Standardní styl pro skupinový chat @@ -1735,17 +1916,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close Zavřít - + Send Odeslat - + Bold Tučné @@ -1760,12 +1941,12 @@ Double click lobbies to enter and chat. Kurzíva - + Attach a Picture Přidat obrázek - + Strike Udeřit @@ -1816,12 +1997,37 @@ Double click lobbies to enter and chat. Nastavit výchozí font - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... píše... - + Do you really want to physically delete the history? Chcete opravdu vymazati historii z počítače? @@ -1846,9 +2052,9 @@ Double click lobbies to enter and chat. textový soubor (*.txt );;všechny typy souborů (*) - + appears to be Offline. - + vypadá, že je Offline @@ -1871,61 +2077,61 @@ Double click lobbies to enter and chat. je zaneprázdněn a může se stát, že neodpoví - + Find Case Sensitively - + Hledat s rozlišením malých a velkých písmen Find Whole Words - + Hledat celá slova Move To Cursor - + Přejít na kurzor Don't stop to color after X items found (need more CPU) - + Nezastavovat vybarvování po X nálezech (vyšší zátěž CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Hledat předchozí </b><br/><i>Ctrl+Shift+G</i> <b>Find Next </b><br/><i>Ctrl+G</i> - + <b>Hledat následující </b><br/><i>Ctrl+G</i> <b>Find </b><br/><i>Ctrl+F</i> - + <b>Hledat </b><br/><i>Ctrl+F</i> - + (Status) - + (Status) - + Set text font & color - + Nastav typ a barvu písma Attach a File - + Přiožit soubor - + WARNING: Could take a long time on big history. - + VAROVÁNÍ: může trvat dlouho pro velkou historii. @@ -1934,59 +2140,59 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + <b>Označ vybraný text</b><br><i>Ctrl+M</i> %1This message consists of %2 characters. - + %1 Tato zpráva obsahuje %2 znaky. items found. - + Nalezeno. No items found. - + Nenalezeno. <b>Return to marked text</b><br><i>Ctrl+M</i> - + <b>Zpět k označenému textu</b><br><i>Ctrl+M</i> Display Search Box - + Zobraz vyhledávání Search Box - + Vyhledávání - + Type a message here - + Zde napiš zprávu... - + Don't stop to color after - + Nezastavovat vybarvování po items found (need more CPU) - + shody nalezeny (vyšší zátěž CPU) - + Warning: - + Varování: @@ -1999,7 +2205,7 @@ Double click lobbies to enter and chat. Empty Circle - + Vyprázdnit Kruh @@ -2007,12 +2213,12 @@ Double click lobbies to enter and chat. Showing details: - + Ukazuji detaily: Membership - + Členství @@ -2029,12 +2235,12 @@ Double click lobbies to enter and chat. Personal Circles - + Osobní Kruhy Public Circles - + Veřejné Kruhy @@ -2065,42 +2271,42 @@ Double click lobbies to enter and chat. Others - + Ostatní Permissions - + Práva Anon Transfers - + Anonymní přenos Discovery - + Discovery Share Category - + Sdílet kategorii Create Personal Circle - + Vytvořit osobní Kruh Create External Circle - + Vytvořit externí Kruh Edit Circle - + Upravit Kruh @@ -2110,28 +2316,28 @@ Double click lobbies to enter and chat. Friends Of Friends - + Kontakty kontaktů External Circles (Admin) - + Externí Kruhy (Admin) External Circles (Subscribed) - + Externí Kruhy (Odebírané) External Circles (Other) - + Externí Kruhy (Ostatní) Circles - + Okruhy lidí @@ -2142,7 +2348,12 @@ Double click lobbies to enter and chat. Detaily - + + Node info + Info o uzlu + + + Peer Address Adresa protějšku @@ -2196,27 +2407,27 @@ Double click lobbies to enter and chat. Use as direct source, when available - + Stahovat přímo od pokud možno <html><head/><body><p align="justify">Retroshare periodically checks your friend lists for browsable files matching your transfers, to establish a direct transfer. In this case, your friend knows you're downloading the file.</p><p align="justify">To prevent this behavior for this friend only, uncheck this box. You can still perform a direct transfer if you explicitly ask for it, by e.g. downloading from your friend's file list. </p></body></html> - + <html><head/><body><p align="justify">RetroShare pravidelně kontroluje seznam sdílení vyšich kontaktů pro případné navázání přímého přenosu (váš kontakt vidí, že od něj stahujete daný soubor).</p><p align="justify">Odznačením přímý přenos deaktivujete u tohoto kontaktu. Stále však můžete iniciovat přímý přenos např. stahováním přímo ze seznamu sdílení daného kontaktu.</p></body></html> Encryption - + Šifrování Not connected - + Nespojen Peer Addresses - + Adresy kontaktu @@ -2226,62 +2437,62 @@ Double click lobbies to enter and chat. Retroshare node details - + Detaily o uzlu - - Location info - - - - + Node name : - + Jméno uzlu : Status : - + Status : Last Contact : - + Naposledy připojen : Retroshare version : - + Verze RetroShare : Node ID : - + ID uzlu : PGP key : - + PGP klíč : Retroshare Certificate - + Certifikát - Auto-download recommended files from this node + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + Auto-download recommended files from this node + Automaticky stahovat doporučené soubory od tohoto uzlu + Friend node details - + Detaily o uzlu Hidden Address - + Skrytá adresa @@ -2292,57 +2503,57 @@ Double click lobbies to enter and chat. <p>This certificate contains: - + <p>Tento certifikát obsahuje <li>a <b>node ID</b> and <b>name</b> - + <li>a <b>ID uzlu</b> a <b>jméno</b> an <b>onion address</b> and <b>port</b> - + <b>onion (TOR) adresa</b> a <b>port</b> an <b>IP address</b> and <b>port</b> - + an <b>IP adresa</b> a <b>port</b> <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <p>Tento certifikát musíš předat svým budoucím kontaktům. Použij emailu nebo jiné komunikační platformy.</p> <html><head/><body><p>Peers that have this option cannot connect if their connection address is not in the whitelist. This protects you from traffic forwarding attacks. When used, rejected peers will be reported by &quot;security feed items&quot; in the News Feed section. From there, you can whitelist/blacklist their IP.</p></body></html> - + <html><head/><body><p>Peers that have this option cannot connect if their connection address is not in the whitelist. This protects you from traffic forwarding attacks. When used, rejected peers will be reported by &quot;security feed items&quot; in the News Feed section. From there, you can whitelist/blacklist their IP.</p></body></html> Require white list clearance - + Vyžaduji whitelist povolení - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> - + <html><head/><body><p>Toto je ID<span style=" font-weight:600;">OpenSSL</span> certifikátu uzlu, který podepsán výše uvedeným <span style=" font-weight:600;">PGP</span> klíčem. </p></body></html> <html><head/><body><p>This is the encryption method used by <span style=" font-weight:600;">OpenSSL</span>. The connection to friend nodes</p><p>is always heavily encrypted and if DHE is present the connection further uses</p><p>&quot;perfect forward secrecy&quot;.</p></body></html> - + <html><head/><body><p>Šifrovcí metoda použitá <span style=" font-weight:600;">OpenSSL</span>. Spojení s kontakty</p><p>je vždy silně šifrováno a pokud je použito DHE, spojení navíc využívá</p><p>&quot;zabezpečené přeposílání&quot;.</p></body></html> with - + s external signatures</li> - + externí podpisy @@ -2358,17 +2569,7 @@ Double click lobbies to enter and chat. Přidat kontakt - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Tento průvodce vám pomůže přidat nové kontakty v síti RetroShare. <br>Existuje několik možností, jak přidat kontakt: - - - - &Enter the certificate manually - &Zadat certifikát kontaktu ručně (zkopírováním ze schránky). - - - + &You get a certificate file from your friend &Nahrát soubor s certifikátem kontaktu (který vám například přišel emailem s pozvánkou). @@ -2378,19 +2579,7 @@ Double click lobbies to enter and chat. Přidat vybrané důvěryhodné kontakty mých důveryhodných kontaktů - - &Enter RetroShare ID manually - Vložit RetroShare ID ručně - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - Poslat email s pozvánkou. - (Váš kontakt obdrží email s instrukcemi jak stáhnout RetroShare a spojit se vámi). - - - + Text certificate Výměna certifikátů v textové podobě @@ -2400,13 +2589,8 @@ Double click lobbies to enter and chat. <br>Podrobnější informací získáte kliknutím na tlačítko s písmenem i. - - The text below is your PGP certificate. You have to provide it to your friend - Text níže je váš PGP certifikát - pošlete ho prosím vašemu kontaktu: - - - - + + Include signatures Zahrnout podpisy @@ -2427,11 +2611,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below - Sem vložte PGP certifikát vašeho kontaktu: + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files Soubory certifikátu @@ -2512,6 +2701,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email Pozvěte kontakty emailem @@ -2537,7 +2766,7 @@ Double click lobbies to enter and chat. - + Friend request Přidání kontaktu @@ -2551,61 +2780,102 @@ Double click lobbies to enter and chat. - + Peer details Podrobnosti o kontaktu - - + + Name: Jméno: - - + + Email: Email: - - + + Node: + Uzel: + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: Umístění: - + - + Options Možnosti - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: Přidat do skupiny: - - + + Authenticate friend (Sign PGP Key) Autentizovat kontakt (podepsat PGP klíč), potvrzuje vaši plnou důvěru,nelze vzít zpět! - - + + Add as friend to connect with Přidat jako kontakt pro přímé spojení - - + + To accept the Friend Request, click the Finish button. - + Klikni na "Finish" pro přidání kontaktu - + Sorry, some error appeared Je to smutné, ale došlo k nějaké chybě @@ -2625,7 +2895,7 @@ Double click lobbies to enter and chat. Detaily vašeho kontaktu: - + Key validity: Validita klíče: @@ -2642,7 +2912,7 @@ Double click lobbies to enter and chat. Abnormal size read is bigger than memory block. - + Abnormální velikost - větší než paměťový blok. @@ -2681,12 +2951,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed Načítání certifikátu selhalo - + Cannot get peer details of PGP key %1 Nelze získat podrobnost o PGP klíči %1 @@ -2721,12 +2991,13 @@ Double click lobbies to enter and chat. ID protějšku - + + RetroShare Invitation Pozvánka do RetroShare - sociální P2P sítě zaměřené především na sdílení souborů. - + Ultimate Absolutní @@ -2752,7 +3023,7 @@ Double click lobbies to enter and chat. - + You have a friend request from Žádost o přidání do kontaktu od: @@ -2767,7 +3038,7 @@ Double click lobbies to enter and chat. Protějšek %1 není ve vaší síti dostupný. - + Use new certificate format (safer, more robust) Nyní je používán starý (zpětně kompatibilní) formát certifikátu (kliknutím přepnete na nový). @@ -2873,30 +3144,44 @@ RetroShare neaspiruje na to být nejlepší sociální sítí, má své mouchy a *** Nic *** - + Use as direct source, when available + Stahovat přímo od pokud možno + + + + IP-Addr: - - - Recommend many friends to each others + + IP-Address + + + Recommend many friends to each others + Doporučit kontakty jiným kontaktům + Friend Recommendations + Doporučené kontakty + + + + The text below is your Retroshare certificate. You have to provide it to your friend - + Message: Zpráva: - + Recommend friends - + Doporučit kontakty @@ -2906,27 +3191,22 @@ RetroShare neaspiruje na to být nejlepší sociální sítí, má své mouchy a Please select at least one friend for recommendation. - + Prosím zvol alespoň jeden kontakt pro doporučení Please select at least one friend as recipient. - + Prosím zvol alespoň jednoho příjemce - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + Přidat klíč do klíčenky - + This key is already in your keyring - + Tento klíč je již v klíčence @@ -2934,69 +3214,72 @@ RetroShare neaspiruje na to být nejlepší sociální sítí, má své mouchy a This might be useful for sending distant messages to this peer even if you don't make friends. - + Označ, pokud chceš přidat klíč do klíčenky +Vlastnění klíčů může být užitečné +pro posílání např. zpráv uzlům, +které nemáte přímo v kontaktech. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - + Nesprávná verze certifikátu. RetroShare verze 0,6 a 0,5 jsou vzájemně nekompatibilní. Invalid node id. - + Neplatné ID uzlu. - - + + Auto-download recommended files - + Automaticky stáhnout doporučené soubory Can be used as direct source - + Povolit přímý přenos - - + + Require whitelist clearance to connect - + Vyžaduji whitelist povolení pro spojení Add IP to whitelist - + Přidat IP do whitelist - + No IP in this certificate! - + V certifikátu není IP adresa! <p>This certificate has no IP. You will rely on discovery and DHT to find it. Because you require whitelist clearance, the peer will raise a security warning in the NewsFeed tab. From there, you can whitelist his IP.</p> - + <p>V certifikátu není IP adresa. Discovery a DHT se ji pokusí najít. Po jejím nalezení se v Událostech objeví bezpečnostní upozornění, pomocí kterého můžete tuto adresu přidat do whitelist pro úspěšné spojení.</p> - + Added with certificate from %1 - + Přidán s certifikátem od %1 - + Paste Cert of your friend from Clipboard - + Vložit certifikát vašeho kontaktu ze schránky - + Certificate Load Failed:can't read from file %1 - + Načtení certifikátu selhalo: nemůžu přečíst soubor %1 Certificate Load Failed:something is wrong with %1 - + Načtení certifikátu selhalo: něco je špatně s %1 @@ -3004,12 +3287,12 @@ even if you don't make friends. Connection Progress - + Postup Connecting to: - + Připojuji k: @@ -3019,69 +3302,69 @@ even if you don't make friends. Network - + Stav sítě Net Result - + Síť - výsledek Connect Status - + Stav Contact Result - + Výsledek DHT Startup - + DHT status DHT Result - + DHT výsledek Peer Lookup - + Hledání uzlů Peer Result - + Peer - výsledek UDP Setup - + Zkouším UDP UDP Result - + UDP výsledek Connection Assistant - + Pokus o spojení - informace Invalid Peer ID - + Neplatné ID kontaktu Unknown State - + Neznámý stav @@ -3091,37 +3374,37 @@ even if you don't make friends. Behind Symmetric NAT - + Za symetrickým NAT Behind NAT & No DHT - + Za NAT & bez DHT NET Restart - + NET Restart Behind NAT - + Za NAT No DHT - + Bez DHT NET STATE GOOD! - + STAV SÍTĚ V POŘÁDKU DHT Failed - + DHT bylo neúspěšné @@ -3131,101 +3414,101 @@ even if you don't make friends. DHT Okay - + DHT je OK Finding RS Peers - + Hledám RS uzly Lookup requires DHT - + Vyžaduje zapnuté DHT Searching DHT - + Vyhledávám v DHT Lookup Timeout - + Čas hledání vypršel Peer DHT NOT ACTIVE - + Kontakt nemá aktivní DHT Lookup Failure - + Selhání Peer Offline - + Kontakt je offline Peer Firewalled - + Kontakt je za firewall Peer Online - + Kontakt je online Connection In Progress - + Probíhá připojení Initial connections can take a while, please be patient - + První spojení může trvat déle, prosím buďte trpěliví. If an error is detected it will be displayed here - + Případný error bude zobrazen zde You can close this dialog at any time - + Toto okno můžete kdykoliv zavřít Retroshare will continue connecting in the background - + RetroShare bude pokračovat v připojování na pozadí Connection Timeout - + Časový limit připojení Connection Attempt has taken too long - + Pokus o připojení trvá příliš dlouho But no error has been detected - + Ale žádná chyba nebyla zjištěna Try again shortly, Retroshare will continue connecting in the background - + Zkusím za chvíli, RetroShare se bude zkoušet spojit na pozadí @@ -3234,47 +3517,47 @@ even if you don't make friends. If you continue to get this message, please contact developers - + Pokud se tato zpráva zobrazuje i nadále, obraťte se na vývojáře DHT Lookup Timeout - + Časový limit vyhledávání DHT DHT Lookup has taken too long - + DHT vyhledávání trvá příliš dlouho UDP Connection Timeout - + Časový limit připojení UDP UDP Connection has taken too long - + UDP připojení trvá příliš dlouho UDP Connection Failed - + UDP připojení se nezdařilo. We are continually working to improve connectivity. - + Neustále pracujeme na zlepšení konektivity. In this case the UDP connection attempt has failed. - + V tomto případě se UDP připojení nezdařilo. Improve connectivity by opening a Port in your Firewall. - + Otevřete port ve svém firewall, zlepší se tím vaše konektivita. @@ -3284,151 +3567,151 @@ even if you don't make friends. Congratulations, you are connected - + Gratulujeme jste spojeni DHT startup Failed - + Spuštění DHT se nezdařilo Your DHT has not started properly - + Vaše DHT se nespustilo správně Common causes of this problem are: - + Obvyklé příčiny tohoto problému jsou: - You are not connected to the Internet - + - Nejste připojeni k Internetu - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + - Je zastaralý, nebo chybí DHT zaváděcí soubor (bdboot.txt) DHT is Disabled - + DHT je zakázáno The DHT is OFF, so Retroshare cannot find your Friends. - + DHT je vypnuto, takže RetroShare nemůže najít tvé kontakty. Retroshare has tried All Known Addresses, with no success - + RetroShare vyzkoušel všechny známé adresy, bez úspěchu The DHT is needed if your friends have Dynamic IP Addresses. - + DHT je zapotřebí, pokud mají vaši přátelé dynamické IP adresy. Go to Settings->Server and change config to "Public: DHT and Discovery" - + Přejděte na Nastavení -> Síť -> Nastavení sítě nastavte "Veřejné: DHT a Discovery" Peer Denied Connection - + Peer zamítnul spojení We successfully reached your Friend. - + Úspěšně jsme se spojili s kontaktem. but they have not added you as a Friend. - + ale ještě si vás nepřidal svůj kontakt. Please contact them to add your Certificate - + Kontaktujte jej, aby si přidal váš certifikát Your Retroshare Node is configured Okay - + Váš RetroShare uzel je nastaven správně We successfully reached your Friend via UDP. - + Připojení přes UDP bylo úspěšné. Please contact them to add your Full Certificate - + Kontaktujte jej, aby si přidal váš kompletní certifikát We Cannot find your Friend. - + Nemohli jsme se spojit s kontaktem. They are either offline or their DHT is Off - + Buď jsou offline nebo je jejich DHT vypnuto Peer DHT is Disabled - + Peer má zakázáno DHT Your Friend has configured Retroshare with DHT Disabled. - + Váš kontakt má zakázané DHT. You have previously connected to this Friend - + Už jste se s kontaktem spojil Retroshare has determined that they have DHT switched off - + RetroShare zjistil, že je jejich DHT zakázáno Without the DHT it is hard for Retroshare to locate your friend - + Bez DHT je těžké pro RetroShare najít kontakty Try importing a fresh Certificate to get up-to-date connection information - + Zkuste importovat novější certifikát pro zisk aktuálních informací o spojení Incomplete Friend Details - + Neúplné informace o kontaktu You have imported an incomplete Certificate - + Importoval jste nekompletní certifikát Please retry importing the full Certificate - + Prosím zopakujte import kompletního certifikátu @@ -3441,7 +3724,15 @@ 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:'Lucida Grande'; font-size:13pt;"></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:'Lucida Grande'; font-size:13pt;">If you are an expert RS user, or trust that RS will do the right thing</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:'Lucida Grande'; font-size:13pt;">you can close it.</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:'Lucida Grande'; font-size:13pt;">Tento widget ukazuje postup připojování k peer.</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:'Lucida Grande'; font-size:13pt;">Je to užitečné pro řešení problémů se spojením.</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:'Lucida Grande'; font-size:13pt;"></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:'Lucida Grande'; font-size:13pt;">Pokud jsi RS expert nebo věříš, že se RS správně spojí</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:'Lucida Grande'; font-size:13pt;">můžeš toto okno zavřít.</span></p></body></html> @@ -3454,37 +3745,37 @@ p, li { white-space: pre-wrap; } UNVERIFIABLE FORWARD! - + NEOVĚŘITELNÝ FORWARD! UNVERIFIABLE FORWARD & NO DHT - + NEOVĚŘITELNÝ FORWARD & BEZ DHT! Searching - + Vyhledávám UDP Connect Timeout - + Časový limit připojení UDP Only Advanced Retroshare users should switch off the DHT. - + Pouze zkušení RetroShare uživatelé by měli vypnout DHT. Retroshare cannot connect without this information - + Bez této informace se RetroShare nepřipojí They need a Certificate + Node for UDP connections to succeed - + Potřebují certifikát + uzel pro úspěšné UDP spojení @@ -3492,7 +3783,7 @@ p, li { white-space: pre-wrap; } Circle Details - + Detail Kruhu @@ -3503,12 +3794,12 @@ p, li { white-space: pre-wrap; } Creator - + Tvůrce Distribution - + Distribuce @@ -3523,12 +3814,12 @@ p, li { white-space: pre-wrap; } Restricted to: - + Omezen na: Circle Membership - + Členství v Kruhu @@ -3538,12 +3829,12 @@ p, li { white-space: pre-wrap; } Known Identities - + Známé identity Filter - + Filtr @@ -3571,42 +3862,42 @@ p, li { white-space: pre-wrap; } Please set a name for your Circle - + Nastavte prosím jméno vašeho Kruhu Personal Circle Details - + Detaily osobního Kruhu External Circle Details - + Detaily externího Kruhu Cannot Edit Existing Circles Yet - + Zatím nemohu upravovat existující Kruhy No Restriction Circle Selected - + Nevybráno žádné omezení Kruhu No Circle Limitations Selected - + Nevybrány žádné limity Kruhu Create New Personal Circle - + Vytvořit nový osobní Kruh Create New External Circle - + Vytvořit nový externí Kruh @@ -3616,7 +3907,7 @@ p, li { white-space: pre-wrap; } Remove - + Odstranit @@ -3637,30 +3928,30 @@ p, li { white-space: pre-wrap; } Signed by known nodes - + Podepsáno známými uzly Edit Circle - + Upravit Kruh PGP Identity - + PGP identita Anon Id - + Anonymní ID PGP Linked Id - + PGP link ID @@ -3720,7 +4011,13 @@ 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:10pt; font-weight:600;">Attachments:</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Use Drag and Drop / Add Files button, to Hash new 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-family:'MS Shell Dlg 2'; font-size:8pt;"> Copy/Paste RetroShare links from your shares</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:'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:'MS Shell Dlg 2'; font-size:10pt; font-weight:600;">Přílohy:</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Přetáhni soubory zde nebo klikni na Přidat soubory.</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Zkopíruj/Vlož RetroShare odkazy ze svých sdílení</span></p></body></html> @@ -3751,7 +4048,7 @@ p, li { white-space: pre-wrap; } Allow channels to get frame for message thumbnail from movie media attachments or not - + Povolit kanálům načítat náhledy z přiložených videí nebo ne @@ -3819,22 +4116,22 @@ p, li { white-space: pre-wrap; } Generate mass data - + Generovat hromadné údaje Do you really want to generate %1 messages ? - + Opravdu chcete vygenerovat %1 zpráv? You are about to add files you're not actually sharing. Do you still want this to happen? - + Chcete přidat soubory, které však přímo nesdílíte. Opravdu? About to post un-owned files to a channel. - + Ohledně vkládání nevlastněných souborů do kanálu @@ -3846,7 +4143,7 @@ p, li { white-space: pre-wrap; } Odeslat příspěvek na fórum - + Forum Fórum @@ -3856,7 +4153,7 @@ p, li { white-space: pre-wrap; } Předmět - + Attach File Přiložit soubor @@ -3886,14 +4183,14 @@ p, li { white-space: pre-wrap; } Založit nové vlákno - + No Forum - + Žádné fórum - + In Reply to - + Reakce na @@ -3910,7 +4207,7 @@ p, li { white-space: pre-wrap; } Please choose Signing Id, it is required - + Prosím vyberte přihlašovací ID, je to nutné @@ -3921,38 +4218,39 @@ p, li { white-space: pre-wrap; } Generate mass data - + Generovat hromadné údaje Do you really want to generate %1 messages ? - + Opravdu chcete vygenerovat %1 zpráv? - + Send Odeslat - + Forum Message - + Zpráva fóra Forum Message has not been Sent. Do you want to reject this message? - + Zpráva nebyla na fórum odeslána +Chcete ji zrušit? - + Post as - + Psát jako Congrats, you found a bug! - + Blahopřejeme, nalezl jste bug! @@ -3980,8 +4278,8 @@ Do you want to reject this message? - Security policy: - Nastavení bezpečnosti: + Visibility: + @@ -3994,7 +4292,22 @@ Do you want to reject this message? Soukromá (pouze pro kontakty vámi pozvané) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. Zvolte kontakty, s nimiž chcete uskutečnit skupinovou konverzaci @@ -4004,14 +4317,24 @@ Do you want to reject this message? Pozvané kontakty - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: Kontakty: - + Identity to use: - + Použitá identita: @@ -4019,7 +4342,7 @@ Do you want to reject this message? Public Information - + Veřejné informace @@ -4034,22 +4357,22 @@ Do you want to reject this message? Location ID: - + ID lokace: Software Version: - + Verze RetroShare : Online since: - + Připojen od: Other Information - + Další informace @@ -4064,7 +4387,7 @@ Do you want to reject this message? Save Key into a file - + Uložit klíč do souboru @@ -4079,7 +4402,7 @@ Do you want to reject this message? Your certificate could not be parsed correctly. Please contact the developers. - + Váš certifikát nelze správně analyzovat. Obraťte se vývojáře. @@ -4109,17 +4432,17 @@ Do you want to reject this message? PGP fingerprint: - + PGP otisk: Node information - + Informace o uzlu PGP Id : - + PGP ID : @@ -4129,27 +4452,27 @@ Do you want to reject this message? Copy certificate to clipboard - + Kopírovat certifikát do schránky Save certificate to file - + Uložit certifikát do souboru Node - + Uzel Create new node... - + Vytvořte nový uzel... show statistics window - + Zobrazit statistiky @@ -4157,7 +4480,7 @@ Do you want to reject this message? users - + uživatelé @@ -4168,7 +4491,12 @@ Do you want to reject this message? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT vypnuto @@ -4190,8 +4518,8 @@ Do you want to reject this message? - DHT Error - DHT nefunguje (chyba) + No peer found in DHT + @@ -4219,7 +4547,7 @@ Do you want to reject this message? File Never Seen - + Soubor nikdy nebyl spatřen @@ -4237,22 +4565,22 @@ Do you want to reject this message? Done - + Hotovo Active - + Aktivní Outstanding - + Vynikající Needs checking - + Potřebuje kontrolu @@ -4262,7 +4590,7 @@ Do you want to reject this message? retroshare link - + RetroShare odkaz @@ -4288,7 +4616,7 @@ Do you want to reject this message? DhtWindow - + Net Status Net Status @@ -4318,14 +4646,14 @@ Do you want to reject this message? Adresa protějšku - + Name Jméno (umístění) PeerId - + Peer ID @@ -4345,7 +4673,7 @@ Do you want to reject this message? Connect Mode - + Typ připojení @@ -4363,7 +4691,7 @@ Do you want to reject this message? - + Bucket @@ -4380,7 +4708,7 @@ Do you want to reject this message? Status Flags - + Semafor @@ -4389,19 +4717,19 @@ Do you want to reject this message? - + Last Sent Poslední odeslání - + Last Recv - + Poslední obdržené - + Relay Mode - + Relay mód @@ -4431,13 +4759,28 @@ Do you want to reject this message? Bandwidth + Konektivita + + + + IP - - Unknown NetState + + Search IP + + + Copy %1 to clipboard + + + + + Unknown NetState + Neznámý stav sítě + Offline @@ -4446,137 +4789,137 @@ Do you want to reject this message? Local Net - + Místní síť Behind NAT - + Za NAT External IP - + Externí IP UNKNOWN NAT STATE - + NEZNÁMÝ STAV SÍTĚ SYMMETRIC NAT - + SYMETRICKÝ NAT DETERMINISTIC SYM NAT - + DETERMINISTICKÝ SYM NAT RESTRICTED CONE NAT - + RESTRICTED CONE NAT FULL CONE NAT - + FULL CONE NAT OTHER NAT - + OSTATNÍ NAT NO NAT - + BEZ NAT UNKNOWN NAT HOLE STATUS - + NEZNÁMÝ STATUS NAT HOLE NO NAT HOLE - + ŽÁDNÝ NAT HOLE UPNP FORWARD - + UPNP FORWARD NATPMP FORWARD - + NATPMP FORWARD MANUAL FORWARD - + MANUÁLNÍ FORWARD NET BAD: Unknown State - + NET BAD: Neznámý stav NET BAD: Offline - + NET BAD: Offline NET BAD: Behind Symmetric NAT - + NET BAD: Za symetrickým NAT NET BAD: Behind NAT & No DHT - + NET BAD: Za NAT & bez DHT NET WARNING: NET Restart - + NET WARNING: NET Restart NET WARNING: Behind NAT - + SÍŤ VAROVÁNÍ: Za NAT NET WARNING: No DHT - + SÍŤ VAROVÁNÍ: Bez DHT NET STATE GOOD! - + STAV SÍTĚ V POŘÁDKU CAUTION: UNVERIFIABLE FORWARD! - + POZOR: NEOVĚŘENÉ PŘESMĚROVÁNÍ! CAUTION: UNVERIFIABLE FORWARD & NO DHT - + POZOR: NEOVĚŘENÉ PŘESMĚROVÁNÍ & BEZ DHT Not Active (Maybe Connected!) - + Neaktivní (Možná spojeno!) Searching - + Vyhledávám @@ -4586,7 +4929,7 @@ Do you want to reject this message? offline - + offline @@ -4596,12 +4939,12 @@ Do you want to reject this message? ONLINE - + ONLINE Direct - + Přímý @@ -4611,12 +4954,12 @@ Do you want to reject this message? Disconnected - + Odpojen Udp Started - + UDP započato @@ -4626,12 +4969,12 @@ Do you want to reject this message? Request Active - + Aktivní žádost No Request - + Bez žádosti @@ -4639,9 +4982,9 @@ Do you want to reject this message? Nevím - + RELAY END - + KONEC RELAY @@ -4658,132 +5001,160 @@ Do you want to reject this message? unlimited - + neomezený Own Relay - + Vlastní Relay RELAY PROXY - + RELAY PROXY - + %1 secs ago - + před %1 s - + %1B/s + %1B/s + + + + Relays - + 0x%1 EX:0x%2 - + 0x%1 EX:0x%2 never - + nikdy - + + + DHT DHT - + Net Status: - + Stav sítě: Network Mode: - + Síťový mód Nat Type: - + Typ NAT: Nat Hole: - + NAT Hole: Connect Mode: - + Typ připojení: Peer Address: - + Peer adresa: Unreach: - + Nedosažen: Online: - + Online: Offline: - + Offline: DHT Peers: - + DHT Peers: Disconnected: - + Odpojen: Direct: - + Přímý: Proxy: - + Proxy: Relay: + Relay: + + + + Filter: - + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + DHT Graf - + Proxy VIA - + Proxy VIA Relay VIA - + Relay VIA @@ -4791,7 +5162,7 @@ Do you want to reject this message? Incoming Directory - + Příchozí adresář @@ -4802,7 +5173,7 @@ Do you want to reject this message? Partials Directory - + Dočasný adresář @@ -4864,7 +5235,7 @@ když je připojíte. Cache cleaning confirmation - + Potvrzení vyčištění cache @@ -4880,7 +5251,7 @@ když je připojíte. Set Partials Directory - + Zvolit dočasný adresář @@ -4893,7 +5264,7 @@ když je připojíte. Waiting outgoing discovery operations - + Čekám na odchozí discovery operace @@ -4912,7 +5283,7 @@ když je připojíte. ExprParamElement - + to @@ -4921,7 +5292,7 @@ když je připojíte. ignore case - + ignorovat případy @@ -5017,7 +5388,7 @@ když je připojíte. FileTransferInfoWidget - + Chunk map Kusová mapa @@ -5029,12 +5400,12 @@ když je připojíte. Availability map (%1 active source) - + Dostupnost (%1 aktivní zdroj) Availability map (%1 active sources) - + Dostupnost (%1 aktivních zdrojů) @@ -5044,12 +5415,12 @@ když je připojíte. File name - + Název souboru Destination folder - + Cílová složka @@ -5112,7 +5483,7 @@ když je připojíte. Direct friend transfer / Availability assumed - + Přímý přenos / předpokládá dostupnost @@ -5171,28 +5542,28 @@ když je připojíte. Patch - + Patch C++ - + C++ Header - + Hlavička C - + C FlatStyle_RDM - + Friends Directories Sdílené soubory a složky mých kontaktů @@ -5242,7 +5613,7 @@ když je připojíte. Expand new messages - + Rozbalit nové zprávy @@ -5252,106 +5623,56 @@ když je připojíte. Load embedded images - + Načíst vložené obrázky Tabs - + Záložky Open each forum in a new tab - + Otevřít každé fórum v nové záložce FriendList - - - Status - Status - - - - - + Last Contact Naposledy připojen - - - Avatar - Avatar - - - + Hide Offline Friends Skrýt kontakty které jsou offline - - State - Status + + export friendlist + - Sort by State - Seřadit podle státu + export your friendlist including groups + - - Hide State - Skrýt status - - - - - Sort Descending Order - Seředit sestupně - - - - - Sort Ascending Order - Seředit vzestupně - - - - Show Avatar Column - Zobrazit sloupec s avatary - - - - Name - Jméno + + import friendlist + - Sort by Name - Seřadit podle jména - - - - Sort by last contact - Seřadit podle "naposledy připojen" - - - - Show Last Contact Column - Zobrazit sloupec s dobou posledního pokusu o připojení - - - - Set root is Decorated - Zobrazit kmen stromového pohledu + import your friendlist including groups + + - Set Root Decorated - Kmen stromového pohledu + Show State + @@ -5360,7 +5681,7 @@ když je připojíte. Zobrazit skupiny - + Group Skupina @@ -5401,7 +5722,17 @@ když je připojíte. Přidat do skupiny - + + Search + + + + + Sort by state + + + + Move to group Přesunout do skupiny @@ -5431,87 +5762,145 @@ když je připojíte. Zabalit vše - - + Available Dostupné - + Do you want to remove this Friend? Opravdu chcete odstranit tento kontakt? - - Columns - Sloupce + + + Done! + - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect - + Pokus o připojení Create new group - + Vytvořit novou skupinu - + Display Zobrazit Paste certificate link - + Vložit certifikát - - Sort by - Seřadit podle - - - + Node - + Uzel Remove Friend Node - + Odstranit node - + Do you want to remove this node? - + Chcete odstranit tento node? - + Friend nodes - + Kontakty - + Send message to whole group - + Poslat zprávu celé skupině @@ -5522,13 +5911,13 @@ když je připojíte. Deny - + Zamítnout Send message - + Odeslat zprávu @@ -5554,33 +5943,38 @@ když je připojíte. Search : + Hledat : + + + + Sort by state - - - All - Udělat - - None - Nic - - - Name Jméno - + Search Friends Hledat kontakty + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message Editovat status @@ -5588,7 +5982,7 @@ když je připojíte. Broadcast - + Rozhlas @@ -5671,15 +6065,20 @@ když je připojíte. Keyring + Klíčenka + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - + Retroshare broadcast chat: messages are sent to all connected friends. - + RetroShare rozhlas: zpráva je odeslána všem připojeným kontaktům. - + Network Síť @@ -5687,17 +6086,12 @@ když je připojíte. Network graph - + Síťový graf - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. - + Zde napiš svůj status. @@ -5708,7 +6102,7 @@ když je připojíte. Vytvořit nový profil - + Name Jméno @@ -5757,25 +6151,25 @@ anonymous, you can use a fake email. Password (check) - + Heslo (ověření) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> - + <html><head/><body><p align="justify">Pro pokračování musí RetroShare nasbírat co nejvíce náhodných dat. Pohybujte myší různě po obrazovce a naplňte tak posuvník do 100%.</p></body></html> [Required] Type the same password again here. - + [Požadováno] Zopakujte heslo. Passwords do not match - + Hesla nejsou stejná - + Port Port @@ -5783,217 +6177,230 @@ anonymous, you can use a fake email. This password is for PGP - + Heslo pro PGP Node - + Uzel Create new node - + Vytvořit nový node Generate new node - + Generovat nový node Create a new node - + Vytvořit nový node You can use it now to create a new node. - + Můžete jej použít k vytvoření nového node Invalid hidden node - + Neplatný skrytý node - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Jméno node musí obsahovat alespoň 3 znaky - + Failed to generate your new certificate, maybe PGP password is wrong! - + Nemůžu vygenerovat nový certifikát, možná jste špatně napsali PGP heslo! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + Zde si můžete vytvořit nový profil. +Případně můžete použít již existující - jednoduše odznačte "Vytvořit nový profil" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. - + Svůj profil můžete používat na různých systémech. Stačí pouze vytvořit nové nody použitím stále stejného profilu. Profil lze exportovat do souboru a importovat pro vytvoření jiného node na jiném PC. It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - + Vypadá to, že zatím nemáte profil (PGP klíč). Prosím vyplňte formulář níže pro jeho vytvoření, nebo importujte již existující profil. No node exists for this profile. - + Pro tento profil neexistuje node. Your profile is associated with a PGP key pair - + Váš profil je spojen s PGP párem klíčů - + Create a new profile - + Vytvořit nový profil Import new profile - + Importovat nový profil Export selected profile - + Exportovat vybraný profil Advanced options - + Pokročilé volby Create a hidden node - + Vytvořit hidden node - + Use profile + Použít profil + + + + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + Váš profil je spojen s PGP párem klíčů. V současné době RetroShare ignoruje DSA klíče. Put a strong password here. This password protects your private PGP key. - + Zvolte si silné heslo. Toto heslo bude chránit vaši identitu! <html><head/><body><p>This is your connection port.</p><p>Any value between 1024 and 65535 </p><p>should be ok. You can change it later.</p></body></html> + <html><head/><body><p>Port pro komunikaci.</p><p>Hodnota mezi 1024 a 65535 </p><p>by měla být OK. Můžete to změnit pak později.</p></body></html> + + + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> - + PGP key length - + Délka PGP klíče - + Create new profile - + Vytvořit nový profil Currently disabled. Please move your mouse around until you reach at least 20% - + Momentálně neaktivní. Prosím pohybujte myší, dokud nenaplníte alespoň 20 % (raději ale 100 %) Click to create your node and/or profile + Klikni pro vytvoření node nebo profilu + + + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - + [Required] This password protects your private PGP key. - + [Požadováno] Toto heslo chrání váš PGP klíč. Enter a meaningful node description. e.g. : home, laptop, etc. This field will be used to differentiate different installations with the same profile (PGP key pair). - + Zadejte smysluplný název node, například: doma, notebook, ve škole, v práci atp. +Toto bude použito k rozlišení vašich node užívajících tento stejný profil (PGP klíč). Generate new profile and node - + Vytvořit nový profil a node Create a new profile and node - + Vytvořit nový profil a node Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + Případně můžete použít již existující profil - jednoduše odznačte "Vytvořit nový profil" Welcome to Retroshare. Before you can proceed you need to create a profile and associate a node with it. To do so please fill out this form. Alternatively you can import a (previously exported) profile. Just uncheck "Create a new profile" - + Vítejte v RetroShare. Nejdříve si musíte vytvořit profil s node pomocí tohoto formuláře. +Případně můžete použít již váš existující profil (exportovaný) a vytvořit pouze další node - jednoduše odznačte "Vytvořit nový profil" No node is associated with the profile named - + Žádný node není spojen s profilem Please create a node for it by providing a node name. - + Prosím zvolte si jméno pro svůj node. Welcome to Retroshare. Before you can proceed you need to import a profile and after that associate a node with it. - + Vítejte v RetroShare. Nejdříve musíte importovat profil a přidat k němu node. Export profile - + Exportovat profil RetroShare profile files (*.asc) - + Exportované profily RetroShare (*.asc) Profile saved - + Profil byl uložen @@ -6002,32 +6409,36 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Váš profil byl úspěšně uložen. +Soubor s profilem je šifrovaný. + +Nyní jej můžete importovat na dalším počítači +a vytvořit nový node využívající stejný profil. Profile not saved - + Profil nebyl uložen Your profile was not saved. An error occurred. - + Profil se nepodařilo uložit, protože nastala chyba. Import profile - + Importovat profil Profile not loaded - + Profil nebyl nahrán Your profile was not loaded properly: - + Profil nebyl správně načten: @@ -6040,7 +6451,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6048,12 +6464,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6069,21 +6485,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6242,23 +6643,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - Připojit k přátelům - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6272,9 +6668,21 @@ p, li { white-space: pre-wrap; } - - Advanced: Open Firewall Port - Pokročílé: Otevřený Port Firewallu + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6282,35 +6690,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and Support - Další pomoc a podpora - - - - <!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: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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6319,7 +6705,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + Připojit k přátelům + + + + Advanced: Open Firewall Port + Pokročílé: Otevřený Port Firewallu + + + + Further Help and Support + Další pomoc a podpora + + + Open RS Website Otevřít webovou stránku RetroShare @@ -6416,82 +6817,104 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Statistiky směrovače - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer Neznámý protějšek + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - Výstup - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - Odeslat - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Kliknutím na uzly a tažením můžete změnit jejich polohu. Pro přiblížení či oddálení použijte kolečko myši a nebo tlačítka + a -. - - GroupChatToaster @@ -6671,7 +7094,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne GroupTreeWidget - + Title Nadpis @@ -6691,7 +7114,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne - + Sort by Name Seřadit podle jména @@ -6705,13 +7128,18 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Sort by Last Post Seřadit podle posledního příspěvku + + + Sort by Posts + + Display Zobrazit - + You have admin rights @@ -6724,7 +7152,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne GuiExprElement - + and a @@ -6822,7 +7250,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne GxsChannelDialog - + Channels Kanály @@ -6833,17 +7261,22 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Vytvořit kanál - + Enable Auto-Download Zapnout automatické stahování - + My Channels Moje kanály - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels Odebírané kanály @@ -6858,13 +7291,29 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Ostatní kanály - + + Select channel download directory + + + + Disable Auto-Download Vypnout automatické stahování - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7205,7 +7654,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Není vybrán žádný kanál - + Disable Auto-Download Vypnout automatické stahování @@ -7225,7 +7674,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne - + Feeds Kanály @@ -7235,7 +7684,7 @@ Při používání sítě proto pokud možno používejte pouhou přezdívku, ne Soubory - + Subscribers @@ -7393,7 +7842,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum Vytvořit nové fórum @@ -7525,12 +7974,12 @@ before you can comment Formulář - + Start new Thread for Selected Forum Založit nové vlákno ve vybraném fóru - + Search forums Hledat ve fórech @@ -7551,7 +8000,7 @@ before you can comment - + Title Nadpis @@ -7564,13 +8013,18 @@ before you can comment - + Author Autor - - + + Save image + + + + + Loading Načítám @@ -7600,7 +8054,7 @@ before you can comment Další nepřečtený - + Search Title Hledat podle jména fóra @@ -7625,17 +8079,27 @@ before you can comment Hledat v obsahu zprávy - + No name Bez jména - + Reply Odpovědět + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread Založit nové vlákno @@ -7673,7 +8137,7 @@ before you can comment Kopírovat RetroShare odkaz - + Hide Skrýt @@ -7683,7 +8147,38 @@ before you can comment Rozbalit - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous Anonymní sdílení @@ -7703,29 +8198,55 @@ before you can comment [ ... chybějící zpráva ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Nebylo vybráno žádné fórum! - + + + You cant reply to a non-existant Message Nemůžete odpovědět na neexistující příspěvek + You cant reply to an Anonymous Author Nemůžete odpovědět anonymnímu autorovi - + Original Message Původní zpráva @@ -7750,7 +8271,7 @@ before you can comment Na %1, %2 odpověděl: - + Forum name @@ -7765,7 +8286,7 @@ before you can comment - + Description Popis @@ -7775,12 +8296,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7796,7 +8317,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums Fórum @@ -7826,11 +8352,6 @@ before you can comment Other Forums Ostatní fóra - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7853,13 +8374,13 @@ before you can comment GxsGroupDialog - - + + Name Jméno uživatele - + Add Icon @@ -7874,7 +8395,7 @@ before you can comment - + check peers you would like to share private publish key with zaškrtněte protějšky s nimiž chcete sdílet soukromý klíč k publikačnímu právu @@ -7884,36 +8405,36 @@ before you can comment Sdílet klíč s - - + + Description Popis - + Message Distribution - + Public Veřejné - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7943,7 +8464,7 @@ before you can comment - + PGP Required @@ -7959,12 +8480,12 @@ before you can comment - + Comments Komentáře - + Allow Comments @@ -7974,33 +8495,73 @@ before you can comment Žádné komentáře - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Kontakty: - + Please add a Name Detaily - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -8010,12 +8571,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8088,7 +8649,7 @@ before you can comment Náhled tisku - + Unsubscribe Neodebírat @@ -8098,12 +8659,12 @@ before you can comment Odebírat - + Open in new tab Otevřít v nové kartě - + Show Details @@ -8128,12 +8689,12 @@ before you can comment Označit vše za nepřečtené - + AUTHD AUTHD - + Share admin permissions @@ -8141,7 +8702,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8154,7 +8715,7 @@ before you can comment GxsIdDetails - + Loading Nahrávám @@ -8169,8 +8730,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8185,7 +8753,7 @@ before you can comment - + Identity&nbsp;name @@ -8200,7 +8768,7 @@ before you can comment - + [Unknown] @@ -8218,6 +8786,49 @@ before you can comment Bez jména + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8413,28 +9024,7 @@ before you can comment O programu - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors Autoři @@ -8481,7 +9071,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8523,7 +9134,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8558,78 +9169,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - Připojení / odpojení - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8668,37 +9289,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All Vše - + + Reputation - - - Todo - Udělat - - Search Hledat - + Unknown real name @@ -8708,72 +9350,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity Vytvořit novou identitu - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - Připojení / odpojení - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8794,42 +9393,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Odeslat zprávu - + Identity info - + Identity ID : - + Owner node name : @@ -8839,7 +9438,57 @@ p, li { white-space: pre-wrap; } Typ: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8849,12 +9498,17 @@ p, li { white-space: pre-wrap; } Anonymní sdílení - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8870,7 +9524,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8885,7 +9539,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8895,15 +9584,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8924,7 +9633,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8939,7 +9653,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8949,17 +9663,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - Sloupce - - - + Distant chat refused with this person. @@ -8969,7 +9673,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8984,29 +9688,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -9016,7 +9708,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9059,8 +9751,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9068,7 +9760,7 @@ p, li { white-space: pre-wrap; } - + @@ -9078,13 +9770,13 @@ p, li { white-space: pre-wrap; } nedostupné - + Edit identity - + Error getting key! @@ -9104,7 +9796,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9159,7 +9851,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9227,7 +9919,7 @@ p, li { white-space: pre-wrap; } - + Copy Kopírovat @@ -9257,16 +9949,35 @@ p, li { white-space: pre-wrap; } Odeslat + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Otevřít soubor - + Open Folder Otevřít složku @@ -9276,7 +9987,7 @@ p, li { white-space: pre-wrap; } - + Checking... Kontroluji... @@ -9325,7 +10036,7 @@ p, li { white-space: pre-wrap; } - + Options Nastavení @@ -9359,12 +10070,12 @@ p, li { white-space: pre-wrap; } Průvodce nastavením - + RetroShare %1 a secure decentralized communication platform RetroShare %1 - bezpečná decentralizovaná komunikační platforma - + Unfinished Nedokončeno @@ -9398,7 +10109,12 @@ p, li { white-space: pre-wrap; } Upozornit - + + Open Messenger + + + + Open Messages Zobrazit zprávy @@ -9448,7 +10164,7 @@ p, li { white-space: pre-wrap; } %1 nových zpráv - + Down: %1 (kB/s) Stahování: %1 (kB/s) @@ -9518,7 +10234,7 @@ p, li { white-space: pre-wrap; } - + Add Přidat @@ -9543,7 +10259,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9552,38 +10268,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose Napsat zprávu - - + Contacts Kontakty - - >> To - >> Komu - - - - >> Cc - >> Kopie (Cc) - - - - >> Bcc - >> Slepá kopie (Bcc) - - - - >> Recommend - >> Doporučit - - - + Paragraph Odstavec @@ -9664,7 +10359,7 @@ p, li { white-space: pre-wrap; } Podtržené - + Subject: Předmět: @@ -9675,12 +10370,22 @@ p, li { white-space: pre-wrap; } - + Tags Štítky - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9690,7 +10395,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files Doporučené soubory @@ -9760,7 +10465,7 @@ p, li { white-space: pre-wrap; } Odsadí citaci - + Send To: Odeslat komu: @@ -9785,47 +10490,22 @@ p, li { white-space: pre-wrap; } Do bloku (&J) - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Ahoj,<br>doporučuji ti tento kontakt. Když důvěřuješ mě, můžeš důvěřovat také tomuto kontaktu. <br> @@ -9851,12 +10531,12 @@ p, li { white-space: pre-wrap; } - + Save Message Uložit zprávu - + Message has not been Sent. Do you want to save message to draft box? Zpráva nebyla odeslána. @@ -9868,7 +10548,7 @@ Chcete ji uložit jako koncept? Vložit RetroShare odkaz - + Add to "To" Přidat do "Komu" @@ -9888,12 +10568,7 @@ Chcete ji uložit jako koncept? Doporučit - - Friend Details - Podrobnosti o kontaktu - - - + Original Message Původní zpráva @@ -9903,19 +10578,21 @@ Chcete ji uložit jako koncept? Od - + + To Komu - + + Cc Cc - + Sent Odesláno @@ -9957,12 +10634,13 @@ Chcete ji uložit jako koncept? Prosím zadejte alespoň jednoho příjemce. - + + Bcc Bcc - + Unknown Neznámý @@ -10072,7 +10750,12 @@ Chcete ji uložit jako koncept? &Formátovat - + + Details + + + + Open File... Otevřít soubor... @@ -10119,12 +10802,7 @@ Do you want to save message ? Přidat další soubor - - Show: - - - - + Close Zavřít @@ -10134,32 +10812,57 @@ Do you want to save message ? Od: - - All - Udělat - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10182,7 +10885,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10197,7 +10920,7 @@ Do you want to save message ? - + Tags Štítky @@ -10237,7 +10960,7 @@ Do you want to save message ? Nové okno - + Edit Tag Editovat štítek @@ -10247,24 +10970,14 @@ Do you want to save message ? Zpráva - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images - + Načíst vložené obrázky @@ -10543,7 +11256,7 @@ Do you want to save message ? MessagesDialog - + New Message Nová zpráva @@ -10610,24 +11323,24 @@ Do you want to save message ? - + Tags Štítky - - - + + + Inbox Příchozí - - + + Outbox Odchozí @@ -10639,14 +11352,14 @@ Do you want to save message ? - + Sent Odesláno - + Trash Koš @@ -10715,7 +11428,7 @@ Do you want to save message ? - + Reply to All Odpovědět všem @@ -10733,12 +11446,12 @@ Do you want to save message ? - + From Od - + Date Datum @@ -10766,12 +11479,12 @@ Do you want to save message ? - + Click to sort by from Seřadit podle odesílatele - + Click to sort by date Seřadit podle datumu @@ -10826,7 +11539,12 @@ Do you want to save message ? Hledat v přílohách - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred Ohvězdičkované @@ -10891,14 +11609,14 @@ Do you want to save message ? Vysypat koš - - + + Drafts Koncepty - + 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 gray star beside any message. Nemáte ohvězdičkované žádné zprávy. Ohvězdičkování slouží ke zvýraznění zpráv, abyste je mohli snáze najít. Zprávu ohvězdičkujete kliknutím na světle šedou hvezdičku kterékoliv zprávy nebo pomocí kontextového menu, ktere otevřete tím, že na ni kliknete pravým tlačítkem myši. @@ -10918,7 +11636,12 @@ Do you want to save message ? Pro seřazení klikněte - + + This message goes to a distant person. + + + + @@ -10927,18 +11650,18 @@ Do you want to save message ? Celkem: - + Messages Zprávy - + Click to sort by signature - + This message was signed and the signature checks @@ -10948,15 +11671,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10979,7 +11697,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link Vložit RetroShare odkaz @@ -11013,7 +11746,7 @@ Do you want to save message ? - + Expand Rozbalit @@ -11056,7 +11789,7 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown Stav sítě je neznámý @@ -11100,26 +11833,6 @@ Do you want to save message ? Forwarded Port Předávaný port - - - OK | RetroShare Server - OK | RetroShare server - - - - Internet connection - Připojení do internetu - - - - No internet connection - Žádné připojení do internetu - - - - No local network - Žádná lokální síť - NetworkDialog @@ -11233,7 +11946,7 @@ Do you want to save message ? ID certifikátu - + Deny friend Odebrat z kontaktů @@ -11291,7 +12004,7 @@ For security, your keyring was previously backed-up to file - + Personal signature Osobní podpis @@ -11358,7 +12071,7 @@ na něj pravým tlačítkem myši a zvolte 'Důvěřovat'.tohle jste vy - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11373,7 +12086,7 @@ na něj pravým tlačítkem myši a zvolte 'Důvěřovat'. - + Trust level @@ -11393,12 +12106,12 @@ na něj pravým tlačítkem myši a zvolte 'Důvěřovat'. - + Make friend... - + Did peer authenticate you @@ -11428,7 +12141,7 @@ na něj pravým tlačítkem myši a zvolte 'Důvěřovat'. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11497,7 +12210,7 @@ Reported error: NewsFeed - + News Feed Seznam událostí @@ -11516,18 +12229,13 @@ Reported error: This is a test. Toto je test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed Události - + Newest on top @@ -11536,6 +12244,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11636,7 +12349,7 @@ Reported error: Chat Lobby - + Konverzace @@ -11679,7 +12392,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left vlevo nahoře @@ -11703,11 +12421,6 @@ Reported error: Notify Oznámení - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11757,7 +12470,7 @@ Reported error: NotifyQt - + PGP key passphrase Heslo k PGP klíči (k vaší identitě) @@ -11797,7 +12510,7 @@ Reported error: Ukládám index souborů... - + Test Test @@ -11812,13 +12525,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11867,24 +12580,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11908,12 +12603,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11948,39 +12653,51 @@ Reported error: - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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"> -<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;">Podepsání klíče nějakého vašeho kontaktu je způsob, jak ukázat vaším ostatním kontaktům, že tomuto kontaktu opravdu důvěřeujete. Pouze podepsané kontakty mohou získat informace o vašich ostatních důvěrných kontaktech.</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> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Podepsat PGP klíč + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11991,6 +12708,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Zahrnout podpisy @@ -12045,7 +12767,7 @@ p, li { white-space: pre-wrap; } Tomuto protějšku nedůvěřujete vůbec. - + This key has signed your own PGP key @@ -12219,12 +12941,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 Kontakty: 0/0 - + Online Friends/Total Friends Kontaktů online / celkem @@ -12576,7 +13298,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12637,18 +13359,18 @@ p, li { white-space: pre-wrap; } Povolit všechny pluginy - - Loaded plugins - - - - + Plugin look-up directories Adresář se zásuvnými moduly - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12657,27 +13379,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12687,22 +13418,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12710,15 +13426,16 @@ malicious behavior of crafted plugins. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins Zásuvné moduly - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - PopularityDefs @@ -12786,12 +13503,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12801,12 +13523,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12887,7 +13604,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12911,11 +13633,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13146,7 +13863,7 @@ malicious behavior of crafted plugins. Tabs - + Záložky @@ -13170,7 +13887,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13329,7 +14046,7 @@ p, li { white-space: pre-wrap; } You can use it now to create a new node. - + Můžete jej použít k vytvoření nového node @@ -13353,7 +14070,7 @@ p, li { white-space: pre-wrap; } Public Information - + Veřejné informace @@ -13383,12 +14100,12 @@ p, li { white-space: pre-wrap; } Online since: - + Připojen od: Other Information - + Další informace @@ -13518,7 +14235,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Potvrzení @@ -13528,7 +14246,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13555,7 +14273,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. %1 z %2 RetroShare odkazu zpracováno. @@ -13721,7 +14444,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Zpracování souboru kolekce selhalo - + Deny friend Zamítnout kontakt @@ -13741,7 +14464,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Požadavek o stáhnutí souboru byl zrušen. - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13772,7 +14495,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Nastala neočekávaná chyba. Prosím pošlete hlášení 'RsInit::InitRetroShare unexpected return code %1'. - + Multiple instances Běží několik isntancí @@ -13806,11 +14529,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13825,7 +14543,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13875,7 +14593,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13885,7 +14603,7 @@ Reported error is: - + enabled @@ -13895,12 +14613,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13915,42 +14633,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13969,6 +14694,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13980,6 +14711,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13989,7 +14730,7 @@ Reported error is: Průvodce nastavením - + <!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; } @@ -14011,21 +14752,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > Další > - - - - + + + + + Exit Odejít - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14092,13 +14835,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14126,7 +14870,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14151,7 +14895,27 @@ p, li { white-space: pre-wrap; } Automaticky sdílet příchozí adresář (doporučeno) - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14250,7 +15014,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 KB @@ -14286,7 +15050,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14317,7 +15081,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14339,7 +15103,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14448,7 +15212,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14473,7 +15237,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW NEW @@ -14511,7 +15275,7 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Přidat IP do whitelist @@ -14809,7 +15573,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? Obrázek je na odeslání příliš velký. @@ -14827,7 +15591,7 @@ Chcete změnit jeho velikost na %1x%2 pixelů? Rshare - + Resets ALL stored RetroShare settings. Obnoví všechna(!) uložená nastavení RetroShare na výchozí. @@ -14872,17 +15636,17 @@ Chcete změnit jeho velikost na %1x%2 pixelů? Nemohu otevřít log soubor '%1': %2 - + built-in vestavěné - + Could not create data directory: %1 - + Revision @@ -14910,33 +15674,10 @@ Chcete změnit jeho velikost na %1x%2 pixelů? - - SFListDelegate - - - B - B - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Zadejkte klíčové slovo (alespoň 3 znaky dlouhé, např. mkv) @@ -15118,12 +15859,12 @@ Vysoká pravděpodobnost že soubor bude nalezen Stáhnout vybrané - + File Name Jméno souboru - + Download Stáhnout @@ -15192,7 +15933,7 @@ Vysoká pravděpodobnost že soubor bude nalezen - + Create Collection... @@ -15212,7 +15953,7 @@ Vysoká pravděpodobnost že soubor bude nalezen Stáhnou podle souboru kolekce... - + Collection Kolekce @@ -15455,12 +16196,22 @@ Vysoká pravděpodobnost že soubor bude nalezen ServerPage - + Network Configuration Nastavení sítě - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) Automatická (UPnP) @@ -15475,7 +16226,7 @@ Vysoká pravděpodobnost že soubor bude nalezen Ručně nastavený port - + Public: DHT & Discovery Veřejné: DHT & Discovery @@ -15495,13 +16246,13 @@ Vysoká pravděpodobnost že soubor bude nalezen Dark Net: Žádné - - + + Local Address Lokální adresa - + External Address Externí adresa @@ -15511,28 +16262,28 @@ Vysoká pravděpodobnost že soubor bude nalezen Dynamické DNS - + Port: Port: - + Local network Mapa sítě - + External ip address finder Vyhledávač externích IP adres - + UPnP UPnP - + Known / Previous IPs: @@ -15555,13 +16306,13 @@ behind a firewall or a VPN. Pro zjištění mé veřejné IP adresy použít následující strány: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15571,23 +16322,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15597,17 +16337,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15617,90 +16405,95 @@ HiddenServicePort 9191 127.0.0.1:9191 Vymazat - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test Test - + Network Síť - + IP Filters - + IP blacklist - + IP range - - - + + + Status Status - - + + Origin - - + + Reason - - + + Comment Komentáře - + IPs - + IP whitelist - + Manual input @@ -15725,12 +16518,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15753,32 +16652,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15808,99 +16708,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15917,12 +16738,12 @@ Check your ports! Use as direct source, when available - + Stahovat přímo od pokud možno Auto-download recommended files - + Automaticky stáhnout doporučené soubory @@ -15933,7 +16754,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15945,18 +16766,18 @@ Check your ports! Permissions - - - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> - + Práva hide offline + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + Settings @@ -16218,7 +17039,7 @@ Select the Friends with which you want to Share your Channel. Stáhnout - + Copy retroshare Links to Clipboard Zkopírovat RetrosShare odkazy do schránky @@ -16243,7 +17064,7 @@ Select the Friends with which you want to Share your Channel. Přidat odkazy do Cloudu - + RetroShare Link Odkaz RetroShare @@ -16259,7 +17080,7 @@ Select the Friends with which you want to Share your Channel. Správce sdílení - + Create Collection... @@ -16282,7 +17103,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16308,11 +17129,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16321,6 +17143,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16381,7 +17208,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile Načítám profil @@ -16552,7 +17379,7 @@ This choice can be reverted in settings. Bandwidth - + Konektivita @@ -16625,12 +17452,12 @@ This choice can be reverted in settings. - + Connected Připojen - + Unreachable Nedostupný @@ -16646,18 +17473,18 @@ This choice can be reverted in settings. - + Trying TCP Zkouším připojit pomocí TCP - - + + Trying UDP Zkouším připojit pomocí UDP - + Connected: TCP Připojen: TCP @@ -16668,6 +17495,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown Připojen: Nevím @@ -16677,7 +17509,7 @@ This choice can be reverted in settings. DHT: Kontakt - + TCP-in @@ -16687,7 +17519,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16697,7 +17529,7 @@ This choice can be reverted in settings. - + UDP @@ -16711,13 +17543,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16910,7 +17752,7 @@ p, li { white-space: pre-wrap; } Subscribed - + Přihlášen @@ -16926,7 +17768,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Pauza @@ -16975,7 +17817,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17108,16 +17950,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Stahování + Uploads Odesílání - + Name i.e: file name @@ -17313,25 +18157,25 @@ p, li { white-space: pre-wrap; } - + Slower Pomaleji - - + + Average Průměr - - + + Faster Rychleji - + Random Náhodné @@ -17356,7 +18200,12 @@ p, li { white-space: pre-wrap; } Zvolit... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... Přesunout do fronty... @@ -17382,39 +18231,39 @@ p, li { white-space: pre-wrap; } - + Failed Selhalo - - + + Okay Oukej - - + + Waiting Čekám - + Downloading Stahuji - + Complete Dokončit - + Queued Ve frontě @@ -17448,7 +18297,7 @@ Try to be patient! - + Transferring Přenášeno @@ -17458,7 +18307,7 @@ Try to be patient! Odesíláno - + Are you sure that you want to cancel and delete these files? Jste si jisti že chcete zrušit stahování a smazat tyto soubory? @@ -17516,7 +18365,7 @@ Try to be patient! Prosím vložte nové--a platné--jméno souboru - + Last Time Seen i.e: Last Time Receiced Data @@ -17622,7 +18471,7 @@ Try to be patient! - + Columns Sloupce @@ -17632,7 +18481,7 @@ Try to be patient! - + Path i.e: Where file is saved Cesta @@ -17648,12 +18497,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17663,7 +18507,7 @@ Try to be patient! - + Create Collection... @@ -17678,7 +18522,7 @@ Try to be patient! - + Collection Kolekce @@ -17688,17 +18532,17 @@ Try to be patient! Přenosy - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17734,7 +18578,7 @@ Try to be patient! - + Friends Directories Sdílené soubory a složky mých kontaktů @@ -17777,7 +18621,7 @@ Try to be patient! TurtleRouterDialog - + Search requests Požadavky na hledání @@ -17840,7 +18684,7 @@ Try to be patient! Statistiky směrovače - + Age in seconds @@ -17855,7 +18699,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Neznámý Peer @@ -17864,16 +18718,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -17958,12 +18807,12 @@ Try to be patient! You have %1 new messages - + Máte %1 nových zpráv You have %1 new message - + Máte %1 novou zprávu @@ -18072,10 +18921,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18086,11 +18945,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18280,7 +19134,7 @@ Try to be patient! Hledat - + My Groups @@ -18300,7 +19154,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_cy.ts b/retroshare-gui/src/lang/retroshare_cy.ts index 653949323..c1d1e36ba 100644 --- a/retroshare-gui/src/lang/retroshare_cy.ts +++ b/retroshare-gui/src/lang/retroshare_cy.ts @@ -1,8 +1,8 @@ - + AWidget - + version @@ -21,12 +21,17 @@ - + About - + + Copy Info + + + + close @@ -478,7 +483,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language @@ -518,24 +523,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -571,24 +580,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -618,8 +639,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -723,7 +749,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar @@ -731,7 +757,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -739,7 +765,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -747,13 +773,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage - + Show Settings @@ -808,7 +834,7 @@ p, li { white-space: pre-wrap; } - + Since: @@ -818,6 +844,31 @@ p, li { white-space: pre-wrap; } + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -881,7 +932,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -896,6 +947,49 @@ p, li { white-space: pre-wrap; } + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -924,14 +1018,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -945,17 +1031,32 @@ p, li { white-space: pre-wrap; } - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -970,7 +1071,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 @@ -980,13 +1081,13 @@ p, li { white-space: pre-wrap; } - + Lobby chat - + Lobby management @@ -1018,7 +1119,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1033,12 +1134,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1084,7 +1185,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1123,18 +1224,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name - + Count @@ -1155,23 +1256,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private Preifat @@ -1180,13 +1281,18 @@ p, li { white-space: pre-wrap; } Public Cyhoeddus + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1196,27 +1302,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1231,7 +1347,7 @@ p, li { white-space: pre-wrap; } - + Lobby Name: @@ -1250,6 +1366,11 @@ p, li { white-space: pre-wrap; } Type: + + + Security: + + Peers: @@ -1260,19 +1381,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1281,23 +1403,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1307,22 +1424,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1375,7 +1512,7 @@ Double click lobbies to enter and chat. - + Quick Message @@ -1384,12 +1521,37 @@ Double click lobbies to enter and chat. ChatPage - + General - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings @@ -1414,7 +1576,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1528,7 +1695,7 @@ Double click lobbies to enter and chat. - + Incoming @@ -1572,6 +1739,16 @@ Double click lobbies to enter and chat. System message + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1663,7 +1840,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1686,7 +1863,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat @@ -1735,17 +1912,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close - + Send - + Bold @@ -1760,12 +1937,12 @@ Double click lobbies to enter and chat. - + Attach a Picture - + Strike @@ -1816,12 +1993,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - + Do you really want to physically delete the history? @@ -1846,7 +2048,7 @@ Double click lobbies to enter and chat. - + appears to be Offline. @@ -1871,7 +2073,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -1893,7 +2095,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1908,12 +2110,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1923,7 +2125,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1934,7 +2136,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1969,12 +2171,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1984,7 +2186,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2142,7 +2344,12 @@ Double click lobbies to enter and chat. - + + Node info + + + + Peer Address @@ -2229,12 +2436,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2270,6 +2472,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2325,7 +2532,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2358,17 +2565,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2378,18 +2575,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2399,13 +2585,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2426,11 +2607,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2511,6 +2697,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2536,7 +2762,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2550,61 +2776,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: - + - + Options - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2624,7 +2891,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2680,12 +2947,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed - + Cannot get peer details of PGP key %1 @@ -2720,12 +2987,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation - + Ultimate @@ -2751,7 +3019,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2766,7 +3034,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2864,13 +3132,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2880,12 +3157,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2905,17 +3187,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2928,7 +3205,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2938,8 +3215,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2949,8 +3226,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2960,7 +3237,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2970,17 +3247,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3837,7 +4114,7 @@ p, li { white-space: pre-wrap; } - + Forum @@ -3847,7 +4124,7 @@ p, li { white-space: pre-wrap; } - + Attach File @@ -3877,12 +4154,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3920,12 +4197,12 @@ p, li { white-space: pre-wrap; } - + Send - + Forum Message @@ -3936,7 +4213,7 @@ Do you want to reject this message? - + Post as @@ -3971,7 +4248,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3985,7 +4262,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3995,12 +4287,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4159,7 +4461,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4181,7 +4488,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4279,7 +4586,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4309,7 +4616,7 @@ Do you want to reject this message? - + Name @@ -4354,7 +4661,7 @@ Do you want to reject this message? - + Bucket @@ -4380,17 +4687,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4425,7 +4732,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4630,7 +4952,7 @@ Do you want to reject this message? - + RELAY END @@ -4664,19 +4986,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4686,13 +5013,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4762,12 +5091,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4900,7 +5250,7 @@ you plug it in. ExprParamElement - + to @@ -5005,7 +5355,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5180,7 +5530,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5256,89 +5606,39 @@ you plug it in. FriendList - - - Status - - - - - - + Last Contact - - - Avatar - - - - + Hide Offline Friends - - State + + export friendlist - Sort by State + export your friendlist including groups - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name + + import friendlist - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + import your friendlist including groups + - Set Root Decorated + Show State @@ -5348,7 +5648,7 @@ you plug it in. - + Group @@ -5389,7 +5689,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5419,40 +5729,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5462,7 +5835,7 @@ you plug it in. - + Display @@ -5472,12 +5845,7 @@ you plug it in. - - Sort by - - - - + Node @@ -5487,17 +5855,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5545,30 +5913,35 @@ you plug it in. - - All + + Sort by state - None - - - - Name - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5662,12 +6035,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5678,12 +6056,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5696,7 +6069,7 @@ you plug it in. - + Name @@ -5748,7 +6121,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5763,7 +6136,7 @@ anonymous, you can use a fake email. - + Port @@ -5807,28 +6180,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5850,7 +6218,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5875,12 +6243,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5896,12 +6269,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5918,7 +6296,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6028,7 +6411,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6036,12 +6424,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6057,21 +6445,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6221,23 +6594,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6251,8 +6619,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6261,35 +6641,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6298,7 +6656,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6391,82 +6764,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6646,7 +7041,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -6666,7 +7061,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6680,13 +7075,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6699,7 +7099,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6797,7 +7197,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6808,17 +7208,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels @@ -6833,13 +7238,29 @@ p, li { white-space: pre-wrap; } - + + Select channel download directory + + + + Disable Auto-Download - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7180,7 +7601,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download @@ -7200,7 +7621,7 @@ p, li { white-space: pre-wrap; } - + Feeds @@ -7210,7 +7631,7 @@ p, li { white-space: pre-wrap; } - + Subscribers @@ -7368,7 +7789,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7500,12 +7921,12 @@ before you can comment - + Start new Thread for Selected Forum - + Search forums @@ -7526,7 +7947,7 @@ before you can comment - + Title @@ -7539,13 +7960,18 @@ before you can comment - + Author - - + + Save image + + + + + Loading @@ -7575,7 +8001,7 @@ before you can comment - + Search Title @@ -7600,17 +8026,27 @@ before you can comment - + No name - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7648,7 +8084,7 @@ before you can comment - + Hide @@ -7658,7 +8094,38 @@ before you can comment - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7678,29 +8145,55 @@ before you can comment - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare - + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7725,7 +8218,7 @@ before you can comment - + Forum name @@ -7740,7 +8233,7 @@ before you can comment - + Description @@ -7750,12 +8243,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7771,7 +8264,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums @@ -7801,11 +8299,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7828,13 +8321,13 @@ before you can comment GxsGroupDialog - - + + Name - + Add Icon @@ -7849,7 +8342,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7859,36 +8352,36 @@ before you can comment - - + + Description - + Message Distribution - + Public Cyhoeddus - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7918,7 +8411,7 @@ before you can comment - + PGP Required @@ -7934,12 +8427,12 @@ before you can comment - + Comments - + Allow Comments @@ -7949,33 +8442,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7985,12 +8518,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8063,7 +8596,7 @@ before you can comment - + Unsubscribe @@ -8073,12 +8606,12 @@ before you can comment - + Open in new tab - + Show Details @@ -8103,12 +8636,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8116,7 +8649,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8129,7 +8662,7 @@ before you can comment GxsIdDetails - + Loading @@ -8144,8 +8677,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8160,7 +8700,7 @@ before you can comment - + Identity&nbsp;name @@ -8175,7 +8715,7 @@ before you can comment - + [Unknown] @@ -8193,6 +8733,49 @@ before you can comment + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8388,28 +8971,7 @@ before you can comment - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8456,7 +9018,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8498,7 +9081,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8533,78 +9116,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8643,37 +9236,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search - + Unknown real name @@ -8683,72 +9297,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8769,42 +9340,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8814,7 +9385,57 @@ p, li { white-space: pre-wrap; } - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8824,12 +9445,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8845,7 +9471,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8860,7 +9486,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8870,15 +9531,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8899,7 +9580,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8914,7 +9600,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8924,17 +9610,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8944,7 +9620,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8959,29 +9635,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8991,7 +9655,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9034,8 +9698,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9043,7 +9707,7 @@ p, li { white-space: pre-wrap; } - + @@ -9053,13 +9717,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9079,7 +9743,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9134,7 +9798,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9202,7 +9866,7 @@ p, li { white-space: pre-wrap; } - + Copy @@ -9232,16 +9896,35 @@ p, li { white-space: pre-wrap; } + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9251,7 +9934,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9300,7 +9983,7 @@ p, li { white-space: pre-wrap; } - + Options @@ -9334,12 +10017,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9373,7 +10056,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9423,7 +10111,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9493,7 +10181,7 @@ p, li { white-space: pre-wrap; } - + Add @@ -9518,7 +10206,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9527,38 +10215,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9639,7 +10306,7 @@ p, li { white-space: pre-wrap; } - + Subject: @@ -9650,12 +10317,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9665,7 +10342,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9735,7 +10412,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9760,47 +10437,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9826,12 +10478,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9842,7 +10494,7 @@ Do you want to save message to draft box? - + Add to "To" @@ -9862,12 +10514,7 @@ Do you want to save message to draft box? - - Friend Details - - - - + Original Message @@ -9877,19 +10524,21 @@ Do you want to save message to draft box? - + + To - + + Cc - + Sent @@ -9931,12 +10580,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown @@ -10046,7 +10696,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... @@ -10093,12 +10748,7 @@ Do you want to save message ? - - Show: - - - - + Close @@ -10108,32 +10758,57 @@ Do you want to save message ? - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10156,7 +10831,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10171,7 +10866,7 @@ Do you want to save message ? - + Tags @@ -10211,7 +10906,7 @@ Do you want to save message ? - + Edit Tag @@ -10221,22 +10916,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10517,7 +11202,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10584,24 +11269,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10613,14 +11298,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10689,7 +11374,7 @@ Do you want to save message ? - + Reply to All @@ -10707,12 +11392,12 @@ Do you want to save message ? - + From - + Date @@ -10740,12 +11425,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10800,7 +11485,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10865,14 +11555,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10892,7 +11582,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10901,18 +11596,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10922,15 +11617,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10953,7 +11643,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link @@ -10987,7 +11692,7 @@ Do you want to save message ? - + Expand @@ -11030,7 +11735,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11074,26 +11779,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11207,7 +11892,7 @@ Do you want to save message ? - + Deny friend @@ -11265,7 +11950,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11331,7 +12016,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11346,7 +12031,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11366,12 +12051,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11401,7 +12086,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11470,7 +12155,7 @@ Reported error: NewsFeed - + News Feed @@ -11489,18 +12174,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11509,6 +12189,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11652,7 +12337,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11676,11 +12366,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11730,7 +12415,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11770,7 +12455,7 @@ Reported error: - + Test @@ -11785,13 +12470,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11840,24 +12525,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11881,12 +12548,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11921,33 +12598,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11958,6 +12653,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -12012,7 +12712,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12186,12 +12886,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12543,7 +13243,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12604,18 +13304,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12624,27 +13324,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12654,22 +13363,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12677,13 +13371,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12753,12 +13448,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12768,12 +13468,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12854,7 +13549,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12878,11 +13578,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13137,7 +13832,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13481,7 +14176,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13491,7 +14187,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13518,7 +14214,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13684,7 +14385,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13704,7 +14405,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13735,7 +14436,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13769,11 +14470,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13788,7 +14484,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13838,7 +14534,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13848,7 +14544,7 @@ Reported error is: - + enabled @@ -13858,12 +14554,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13878,42 +14574,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13932,6 +14635,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13943,6 +14652,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13952,7 +14671,7 @@ Reported error is: - + <!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; } @@ -13974,21 +14693,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14055,13 +14776,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14079,7 +14801,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14104,7 +14826,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14203,7 +14945,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14239,7 +14981,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14270,7 +15012,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14292,7 +15034,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14401,7 +15143,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14426,7 +15168,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14762,7 +15504,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14779,7 +15521,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14824,17 +15566,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14862,33 +15604,10 @@ Reducing image to %1x%2 pixels? - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15069,12 +15788,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download @@ -15143,7 +15862,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15163,7 +15882,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15406,12 +16125,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15426,7 +16155,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15446,13 +16175,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address - + External Address @@ -15462,28 +16191,28 @@ Reducing image to %1x%2 pixels? - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15506,13 +16235,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15522,23 +16251,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15548,17 +16266,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15568,90 +16334,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status - - + + Origin - - + + Reason - - + + Comment - + IPs - + IP whitelist - + Manual input @@ -15676,12 +16447,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15704,32 +16581,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15759,99 +16637,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15884,7 +16683,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15899,13 +16698,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16169,7 +16968,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -16194,7 +16993,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16210,7 +17009,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16233,7 +17032,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16259,11 +17058,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16272,6 +17072,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16332,7 +17137,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16574,12 +17379,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16595,18 +17400,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16617,6 +17422,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16626,7 +17436,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16636,7 +17446,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16646,7 +17456,7 @@ This choice can be reverted in settings. - + UDP @@ -16660,13 +17470,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16875,7 +17695,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16924,7 +17744,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17057,16 +17877,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17262,25 +18084,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17305,7 +18127,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17331,39 +18158,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay - - + + Waiting - + Downloading - + Complete - + Queued @@ -17397,7 +18224,7 @@ Try to be patient! - + Transferring @@ -17407,7 +18234,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17465,7 +18292,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17571,7 +18398,7 @@ Try to be patient! - + Columns @@ -17581,7 +18408,7 @@ Try to be patient! - + Path i.e: Where file is saved @@ -17597,12 +18424,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17612,7 +18434,7 @@ Try to be patient! - + Create Collection... @@ -17627,7 +18449,7 @@ Try to be patient! - + Collection @@ -17637,17 +18459,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17683,7 +18505,7 @@ Try to be patient! - + Friends Directories @@ -17726,7 +18548,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17789,7 +18611,7 @@ Try to be patient! - + Age in seconds @@ -17804,7 +18626,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17813,16 +18645,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18021,10 +18848,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18035,11 +18872,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18229,7 +19061,7 @@ Try to be patient! - + My Groups @@ -18249,7 +19081,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_da.qm b/retroshare-gui/src/lang/retroshare_da.qm index db9c92ccd451fe31ad078d8981fe88c26c425aaf..55df5be0115809b355f02e865941cc5e2b59255c 100644 GIT binary patch delta 547 zcmXZYODF_!90&04?9R;2?Cj1yW+t&N+CoITv?+=UwX~Z;6esdXVabKO5(ku`5e^p3qA+t^o&zLC;=Qbq<#xDsjSWBuhX84ll%u3Ql~m41*AA&&L8z|)_#4vJKx$BFx``Q}ieINfoF*OFr20v^?n%$2 z<;nxVU7hqK=^v>rk$Q|Y!h9kTXR)QEXHN(%`~u!$A=2juI2&njViRYu`!>uAE+sf3 z4vALw+J4gWLwdKx*WYr$vM-%~q_OTNxuC5Sa6XuZrL0nvBdzS$_Cr$1C7nLfjQHuPH;^begBwFMkaT9S+3K5Ouf}&hp zWRnYWcJQ~PBxFl*P^%m${OZl=^WNe8>AknYhtQIlc?SsPfOR8bPLOIo8PG|y1VVcqz~7Rd4pQ1CjV%a0vw#_e(0>BRWsZ-e zaf#+tFA!0>C{QlZIz7i4Zj$0Gsm_!B2pOm%gRidBh8MtnPI{*KVYC3jb<$|F!(2|U z8sXO(kAT2F8O(O;=ye6$(K9PvAwiTqFEQD8n0exL)8p#4U4{1fkPR;@>$v)zk=w_$BCG~F7@QWY6wSenTI{Qjx)p5C~kG(;wwgp#ZL>y?;p#6dx`)6 diff --git a/retroshare-gui/src/lang/retroshare_da.ts b/retroshare-gui/src/lang/retroshare_da.ts index ef5b14598..74c169976 100644 --- a/retroshare-gui/src/lang/retroshare_da.ts +++ b/retroshare-gui/src/lang/retroshare_da.ts @@ -1,8 +1,8 @@ - + AWidget - + version @@ -21,12 +21,17 @@ - + About - + + Copy Info + + + + close @@ -478,7 +483,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language @@ -518,24 +523,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -571,24 +580,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -618,8 +639,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -723,7 +749,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar @@ -731,7 +757,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -739,7 +765,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -747,13 +773,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage - + Show Settings Indstillinger @@ -808,7 +834,7 @@ p, li { white-space: pre-wrap; } Annuller - + Since: @@ -818,6 +844,31 @@ p, li { white-space: pre-wrap; } + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -881,7 +932,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -896,6 +947,49 @@ p, li { white-space: pre-wrap; } + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -924,14 +1018,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -945,17 +1031,32 @@ p, li { white-space: pre-wrap; } - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -970,7 +1071,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 @@ -980,13 +1081,13 @@ p, li { white-space: pre-wrap; } - + Lobby chat - + Lobby management @@ -1018,7 +1119,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1033,12 +1134,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1084,7 +1185,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1123,18 +1224,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name Navn - + Count @@ -1155,23 +1256,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private @@ -1180,13 +1281,18 @@ p, li { white-space: pre-wrap; } Public + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1196,27 +1302,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1231,7 +1347,7 @@ p, li { white-space: pre-wrap; } - + Lobby Name: @@ -1250,6 +1366,11 @@ p, li { white-space: pre-wrap; } Type: + + + Security: + + Peers: @@ -1260,19 +1381,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1281,23 +1403,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1307,22 +1424,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1375,7 +1512,7 @@ Double click lobbies to enter and chat. Annuller - + Quick Message @@ -1384,12 +1521,37 @@ Double click lobbies to enter and chat. ChatPage - + General - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings @@ -1414,7 +1576,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1528,7 +1695,7 @@ Double click lobbies to enter and chat. - + Incoming @@ -1572,6 +1739,16 @@ Double click lobbies to enter and chat. System message + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1663,7 +1840,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1686,7 +1863,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat @@ -1735,17 +1912,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close - + Send - + Bold @@ -1760,12 +1937,12 @@ Double click lobbies to enter and chat. - + Attach a Picture - + Strike @@ -1816,12 +1993,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - + Do you really want to physically delete the history? @@ -1846,7 +2048,7 @@ Double click lobbies to enter and chat. - + appears to be Offline. @@ -1871,7 +2073,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -1893,7 +2095,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1908,12 +2110,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1923,7 +2125,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1934,7 +2136,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1969,12 +2171,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1984,7 +2186,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2142,7 +2344,12 @@ Double click lobbies to enter and chat. Detaljer - + + Node info + + + + Peer Address Peer Adresse @@ -2229,12 +2436,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2270,6 +2472,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2325,7 +2532,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2358,17 +2565,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2378,18 +2575,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2399,13 +2585,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2426,11 +2607,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2511,6 +2697,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2536,7 +2762,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2550,61 +2776,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: Navn: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: - + - + Options Indstillinger - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2624,7 +2891,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2680,12 +2947,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed - + Cannot get peer details of PGP key %1 @@ -2720,12 +2987,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation - + Ultimate @@ -2751,7 +3019,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2766,7 +3034,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2864,13 +3132,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2880,12 +3157,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2905,17 +3187,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2928,7 +3205,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2938,8 +3215,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2949,8 +3226,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2960,7 +3237,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2970,17 +3247,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3837,7 +4114,7 @@ p, li { white-space: pre-wrap; } - + Forum @@ -3847,7 +4124,7 @@ p, li { white-space: pre-wrap; } - + Attach File @@ -3877,12 +4154,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3920,12 +4197,12 @@ p, li { white-space: pre-wrap; } - + Send - + Forum Message @@ -3936,7 +4213,7 @@ Do you want to reject this message? - + Post as @@ -3971,7 +4248,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3985,7 +4262,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3995,12 +4287,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4159,7 +4461,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4181,7 +4488,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4279,7 +4586,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4309,7 +4616,7 @@ Do you want to reject this message? Peer Adresse - + Name Navn @@ -4354,7 +4661,7 @@ Do you want to reject this message? - + Bucket @@ -4380,17 +4687,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4425,7 +4732,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4630,7 +4952,7 @@ Do you want to reject this message? - + RELAY END @@ -4664,19 +4986,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4686,13 +5013,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4762,12 +5091,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4900,7 +5250,7 @@ you plug it in. ExprParamElement - + to @@ -5005,7 +5355,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5180,7 +5530,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5256,89 +5606,39 @@ you plug it in. FriendList - - - Status - - - - - - + Last Contact Sidste kontakt - - - Avatar - - - - + Hide Offline Friends - - State + + export friendlist - Sort by State + export your friendlist including groups - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name - Navn - - - - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + + import friendlist - Set Root Decorated + import your friendlist including groups + + + + + + Show State @@ -5348,7 +5648,7 @@ you plug it in. - + Group @@ -5389,7 +5689,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5419,40 +5729,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5462,7 +5835,7 @@ you plug it in. - + Display @@ -5472,12 +5845,7 @@ you plug it in. - - Sort by - - - - + Node @@ -5487,17 +5855,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5545,30 +5913,35 @@ you plug it in. - - All + + Sort by state - None - Ingen - - - Name Navn - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5662,12 +6035,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5678,12 +6056,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5696,7 +6069,7 @@ you plug it in. - + Name Navn @@ -5748,7 +6121,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5763,7 +6136,7 @@ anonymous, you can use a fake email. - + Port @@ -5807,28 +6180,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5850,7 +6218,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5875,12 +6243,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5896,12 +6269,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5918,7 +6296,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6028,7 +6411,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6036,12 +6424,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6057,21 +6445,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6221,23 +6594,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6251,8 +6619,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6261,35 +6641,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6298,7 +6656,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6391,82 +6764,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6646,7 +7041,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -6666,7 +7061,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6680,13 +7075,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6699,7 +7099,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6797,7 +7197,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6808,17 +7208,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels @@ -6833,13 +7238,29 @@ p, li { white-space: pre-wrap; } - + + Select channel download directory + + + + Disable Auto-Download - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7180,7 +7601,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download @@ -7200,7 +7621,7 @@ p, li { white-space: pre-wrap; } - + Feeds @@ -7210,7 +7631,7 @@ p, li { white-space: pre-wrap; } - + Subscribers @@ -7368,7 +7789,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7500,12 +7921,12 @@ before you can comment - + Start new Thread for Selected Forum - + Search forums @@ -7526,7 +7947,7 @@ before you can comment - + Title @@ -7539,13 +7960,18 @@ before you can comment - + Author - - + + Save image + + + + + Loading @@ -7575,7 +8001,7 @@ before you can comment - + Search Title @@ -7600,17 +8026,27 @@ before you can comment - + No name - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7648,7 +8084,7 @@ before you can comment - + Hide @@ -7658,7 +8094,38 @@ before you can comment - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7678,29 +8145,55 @@ before you can comment - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7725,7 +8218,7 @@ before you can comment - + Forum name @@ -7740,7 +8233,7 @@ before you can comment - + Description @@ -7750,12 +8243,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7771,7 +8264,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums @@ -7801,11 +8299,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7828,13 +8321,13 @@ before you can comment GxsGroupDialog - - + + Name Navn - + Add Icon @@ -7849,7 +8342,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7859,36 +8352,36 @@ before you can comment - - + + Description - + Message Distribution - + Public - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7918,7 +8411,7 @@ before you can comment - + PGP Required @@ -7934,12 +8427,12 @@ before you can comment - + Comments - + Allow Comments @@ -7949,33 +8442,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7985,12 +8518,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8063,7 +8596,7 @@ before you can comment - + Unsubscribe @@ -8073,12 +8606,12 @@ before you can comment - + Open in new tab - + Show Details @@ -8103,12 +8636,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8116,7 +8649,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8129,7 +8662,7 @@ before you can comment GxsIdDetails - + Loading @@ -8144,8 +8677,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8160,7 +8700,7 @@ before you can comment - + Identity&nbsp;name @@ -8175,7 +8715,7 @@ before you can comment - + [Unknown] @@ -8193,6 +8733,49 @@ before you can comment + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8388,28 +8971,7 @@ before you can comment - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8456,7 +9018,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8498,7 +9081,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8533,78 +9116,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8643,37 +9236,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search - + Unknown real name @@ -8683,72 +9297,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8769,42 +9340,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8814,7 +9385,57 @@ p, li { white-space: pre-wrap; } - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8824,12 +9445,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8845,7 +9471,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8860,7 +9486,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8870,15 +9531,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8899,7 +9580,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8914,7 +9600,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8924,17 +9610,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8944,7 +9620,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8959,29 +9635,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8991,7 +9655,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9034,8 +9698,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9043,7 +9707,7 @@ p, li { white-space: pre-wrap; } - + @@ -9053,13 +9717,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9079,7 +9743,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9134,7 +9798,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9202,7 +9866,7 @@ p, li { white-space: pre-wrap; } - + Copy Kopiér @@ -9232,16 +9896,35 @@ p, li { white-space: pre-wrap; } + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9251,7 +9934,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9300,7 +9983,7 @@ p, li { white-space: pre-wrap; } - + Options Indstillinger @@ -9334,12 +10017,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9373,7 +10056,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9423,7 +10111,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9493,7 +10181,7 @@ p, li { white-space: pre-wrap; } - + Add @@ -9518,7 +10206,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9527,38 +10215,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9639,7 +10306,7 @@ p, li { white-space: pre-wrap; } - + Subject: @@ -9650,12 +10317,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9665,7 +10342,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9735,7 +10412,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9760,47 +10437,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9826,12 +10478,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9842,7 +10494,7 @@ Do you want to save message to draft box? - + Add to "To" @@ -9862,12 +10514,7 @@ Do you want to save message to draft box? - - Friend Details - - - - + Original Message @@ -9877,19 +10524,21 @@ Do you want to save message to draft box? - + + To - + + Cc - + Sent @@ -9931,12 +10580,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown @@ -10046,7 +10696,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... @@ -10093,12 +10748,7 @@ Do you want to save message ? - - Show: - - - - + Close @@ -10108,32 +10758,57 @@ Do you want to save message ? Fra: - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10156,7 +10831,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10171,7 +10866,7 @@ Do you want to save message ? - + Tags @@ -10211,7 +10906,7 @@ Do you want to save message ? - + Edit Tag @@ -10221,22 +10916,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10517,7 +11202,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10584,24 +11269,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10613,14 +11298,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10689,7 +11374,7 @@ Do you want to save message ? - + Reply to All @@ -10707,12 +11392,12 @@ Do you want to save message ? - + From - + Date @@ -10740,12 +11425,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10800,7 +11485,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10865,14 +11555,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10892,7 +11582,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10901,18 +11596,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10922,15 +11617,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10953,7 +11643,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link @@ -10987,7 +11692,7 @@ Do you want to save message ? - + Expand @@ -11030,7 +11735,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11074,26 +11779,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11207,7 +11892,7 @@ Do you want to save message ? - + Deny friend @@ -11265,7 +11950,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11331,7 +12016,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11346,7 +12031,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11366,12 +12051,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11401,7 +12086,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11470,7 +12155,7 @@ Reported error: NewsFeed - + News Feed @@ -11489,18 +12174,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11509,6 +12189,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11652,7 +12337,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11676,11 +12366,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11730,7 +12415,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11770,7 +12455,7 @@ Reported error: - + Test @@ -11785,13 +12470,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11840,24 +12525,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11881,12 +12548,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11921,33 +12598,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11958,6 +12653,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -12012,7 +12712,7 @@ p, li { white-space: pre-wrap; } Deres tillid i denne peer er ingen. - + This key has signed your own PGP key @@ -12186,12 +12886,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12543,7 +13243,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12604,18 +13304,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12624,27 +13324,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12654,22 +13363,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12677,13 +13371,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12753,12 +13448,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12768,12 +13468,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12854,7 +13549,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12878,11 +13578,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13137,7 +13832,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13481,7 +14176,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13491,7 +14187,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13518,7 +14214,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13684,7 +14385,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13704,7 +14405,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13735,7 +14436,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13769,11 +14470,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13788,7 +14484,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13838,7 +14534,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13848,7 +14544,7 @@ Reported error is: - + enabled @@ -13858,12 +14554,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13878,42 +14574,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13932,6 +14635,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13943,6 +14652,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13952,7 +14671,7 @@ Reported error is: - + <!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; } @@ -13974,21 +14693,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14055,13 +14776,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14079,7 +14801,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14104,7 +14826,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14203,7 +14945,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14239,7 +14981,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14270,7 +15012,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14292,7 +15034,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14401,7 +15143,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14426,7 +15168,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14762,7 +15504,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14779,7 +15521,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14824,17 +15566,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14862,33 +15604,10 @@ Reducing image to %1x%2 pixels? RTT Statistik - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15069,12 +15788,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download @@ -15143,7 +15862,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15163,7 +15882,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15406,12 +16125,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15426,7 +16155,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15446,13 +16175,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address Lokale Adresse - + External Address @@ -15462,28 +16191,28 @@ Reducing image to %1x%2 pixels? - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15506,13 +16235,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15522,23 +16251,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15548,17 +16266,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15568,90 +16334,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status - - + + Origin - - + + Reason - - + + Comment - + IPs - + IP whitelist - + Manual input @@ -15676,12 +16447,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15704,32 +16581,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15759,99 +16637,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15884,7 +16683,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15899,13 +16698,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16169,7 +16968,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -16194,7 +16993,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16210,7 +17009,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16233,7 +17032,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16259,11 +17058,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16272,6 +17072,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16332,7 +17137,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16574,12 +17379,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16595,18 +17400,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16617,6 +17422,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16626,7 +17436,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16636,7 +17446,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16646,7 +17456,7 @@ This choice can be reverted in settings. - + UDP @@ -16660,13 +17470,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16875,7 +17695,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16924,7 +17744,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17057,16 +17877,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17262,25 +18084,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17305,7 +18127,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17331,39 +18158,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay OK - - + + Waiting - + Downloading - + Complete - + Queued @@ -17397,7 +18224,7 @@ Try to be patient! - + Transferring @@ -17407,7 +18234,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17465,7 +18292,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17571,7 +18398,7 @@ Try to be patient! - + Columns @@ -17581,7 +18408,7 @@ Try to be patient! - + Path i.e: Where file is saved @@ -17597,12 +18424,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17612,7 +18434,7 @@ Try to be patient! - + Create Collection... @@ -17627,7 +18449,7 @@ Try to be patient! - + Collection @@ -17637,17 +18459,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17683,7 +18505,7 @@ Try to be patient! - + Friends Directories @@ -17726,7 +18548,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17789,7 +18611,7 @@ Try to be patient! - + Age in seconds @@ -17804,7 +18626,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17813,16 +18645,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18021,10 +18848,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18035,11 +18872,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18229,7 +19061,7 @@ Try to be patient! - + My Groups @@ -18249,7 +19081,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_de.qm b/retroshare-gui/src/lang/retroshare_de.qm index b3e7b8760ea8e8b962f46e056f550c6d0950fe82..052fcfc6c800a6dbf4ad0745228fe1d91ba1c81c 100644 GIT binary patch delta 33401 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

!W+3@D@F!km)3nGMitMMPUppFdK>u1 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 diff --git a/retroshare-gui/src/lang/retroshare_de.ts b/retroshare-gui/src/lang/retroshare_de.ts index c7699f8e8..f3cb5c77a 100644 --- a/retroshare-gui/src/lang/retroshare_de.ts +++ b/retroshare-gui/src/lang/retroshare_de.ts @@ -1,8 +1,8 @@ - + AWidget - + version Version @@ -21,12 +21,17 @@ Über RetroShare - + About Über - + + Copy Info + + + + close Schließen @@ -495,7 +500,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Sprache @@ -535,24 +540,28 @@ p, li { white-space: pre-wrap; } Werkzeugleiste - - + + On Tool Bar In der Werkzeugleiste - - + On List Item Als Listenelemente - + Where do you want to have the buttons for menu? Wo willst du die Schaltflächen für das Menü haben? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? Wo willst du die Schaltflächen für die Seite haben? @@ -588,24 +597,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 Symbolgröße = 8x8 - - + + Icon Size = 16x16 Symbolgröße = 16x16 - - + + Icon Size = 24x24 Symbolgröße = 24x24 - + + + Icon Size = 64x64 + Symbolgröße = 64x64 + + + + + Icon Size = 128x128 + Symbolgröße = 128x128 + + + Status Bar Statusleiste @@ -635,8 +656,13 @@ p, li { white-space: pre-wrap; } SysTray in Statusleiste anzeigen - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 Symbolgröße = 32x32 @@ -741,7 +767,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto AvatarWidget - + Click to change your avatar Klick zum Ändern deines Avatars @@ -749,7 +775,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto BWGraphSource - + KB/s KB/s @@ -757,7 +783,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto BWListDelegate - + N/A N/V @@ -765,13 +791,13 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto BandwidthGraph - + RetroShare Bandwidth Usage RetroShare Bandbreitennutzung - + Show Settings Einstellungen anzeigen @@ -826,7 +852,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Abbrechen - + Since: Seit: @@ -836,6 +862,31 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Einstellungen verbergen + + BandwidthStatsWidget + + + + Sum + Summe + + + + + All + Alle + + + + KB/s + KB/s + + + + Count + Anzahl + + BwCtrlWindow @@ -899,7 +950,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Erlaubt Empfang - + TOTALS GESAMT @@ -914,6 +965,49 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Formular + + BwStatsWidget + + + Form + Formular + + + + Friend: + Freund: + + + + Type: + Typ: + + + + Up + Hoch + + + + Down + Herunter + + + + Service: + Dienst: + + + + Unit: + Einheit: + + + + Log scale + + + ChannelPage @@ -942,14 +1036,6 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Jeden Kanal in einem neuen Reiter öffnen. - - ChatDialog - - - Talking to - Unterhaltung mit - - ChatLobbyDialog @@ -963,17 +1049,32 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Spitznamen ändern - + Mute participant Teilnehmer stumm schalten - + + Send Message + Nachricht senden + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Freunde in diese Lobby einladen - + Leave this lobby (Unsubscribe) Diese Lobby verlassen (Abbestellen) @@ -988,7 +1089,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Einzuladende Freunde auswählen: - + Welcome to lobby %1 Willkommen in der Lobby %1 @@ -998,13 +1099,13 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Thema: %1 - + Lobby chat Lobbychat - + Lobby management @@ -1036,7 +1137,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Möchtest du diese Lobby abbestellen? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Rechtsklick, um die Stummschaltung von Teilnehmern zu aktivieren/deaktivieren<br/>Doppelklick, um diese Person anzusprechen<br/> @@ -1051,12 +1152,12 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Sekunden - + Start private chat Privaten Chat starten - + Decryption failed. Entschlüsselung fehlgeschlagen. @@ -1102,7 +1203,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto ChatLobbyUserNotify - + Chat Lobbies Chatlobbys @@ -1141,18 +1242,18 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto ChatLobbyWidget - + Chat lobbies Chatlobbys - - + + Name Name - + Count Anzahl @@ -1173,23 +1274,23 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto - + Create chat lobby Chatlobby erstellen - + [No topic provided] [Kein Thema angegeben] - + Selected lobby info Info zur ausgewählten Lobby - + Private Privat @@ -1198,13 +1299,18 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Public Öffentlich + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. Du hast diese Lobby nicht abonniert. Doppelklicke um sie zu betreten und zu chatten. - + Remove Auto Subscribe Autom. Abonnement entfernen @@ -1214,27 +1320,37 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Autom. Abonnement hinzufügen - + %1 invites you to chat lobby named %2 %1 lädt dich in eine Chat-Lobby namens %2 ein - + Search Chat lobbies Chatlobbys durchsuchen - + Search Name Name durchsuchen - + Subscribed Abonniert - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns Spalten @@ -1249,7 +1365,7 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Nein - + Lobby Name: Lobbyname: @@ -1268,6 +1384,11 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto Type: Typ: + + + Security: + Sicherheit: + Peers: @@ -1278,12 +1399,13 @@ Aber denke daran, dass alle Daten hier VERLOREN gehen werden, wenn wir die Proto + TextLabel TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1292,7 +1414,7 @@ Wähle links eine Lobby aus, um Details anzuzeigen. Doppelklicke auf Lobbys um sie zu betreten und zu chatten. - + Private Subscribed Lobbies Private abonnierte Lobbys @@ -1301,23 +1423,18 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Public Subscribed Lobbies Öffentliche abonnierte Lobbys - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat lobbys</h1><p>Chatlobbys sind verteilte (dezentrale) Chaträume und arbeiten in ungefähr wie IRC. Sie erlauben es dir dich anonym mit vielen Leuten zu unterhalten, ohne dass du mit ihnen befreundet sein musst.</p><p>Eine Chatlobby kann öffentlich (deine Freunde können sie sehen) oder privat (deine Freunde können sie nicht sehen außer du lädst sie mit <img src=":/images/add_24x24.png" width=12/> ein) sein. Sobald du in eine private Lobby eingeladen wurdest, wirst du sie sehen können wenn deine Freunde sie benutzen.</p><p>Die Liste auf der linken Seite zeigt die Lobbys an welchen deine Freunde teilnehmen. Du kannst:<ul><li>Eine neue Chatlobby mit einem Rechtsklick erstellen</li> <li>Mit einem Doppelklick die Lobby betreten, chatten und sie deinen Freunden zugänglich machen</li></ul>Anmerkung: Damit die Chatlobbys richtig funktionieren, muss dein Computer auf die korrekte Zeit eingestellt sein. Überprüfe daher deine Systemuhr!</p> - Chat Lobbies Chatlobbys - + Leave this lobby Lobby verlassen - + Enter this lobby Lobby betreten @@ -1327,22 +1444,42 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Lobby betreten als … - + + Default identity is anonymous + Standardidentität ist anonym + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + Keine anonymen Kennungen + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. Du musst eine Identität erstellen, bevor du die Chatlobby betreten kannst. - + Choose an identity for this lobby: Identität für Lobby auswählen: - + Create an identity and enter this lobby Identität erstellen und Lobby betreten - + Show @@ -1395,7 +1532,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Abbrechen - + Quick Message Kurznachricht @@ -1404,12 +1541,37 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. ChatPage - + General Allgemein - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Chat-Einstellungen @@ -1434,7 +1596,12 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Angepasste Schriftgröße aktivieren - + + Minimum font size + Minimale Schriftgröße + + + Enable bold Fettschrift aktivieren @@ -1548,7 +1715,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Privater Chat - + Incoming Eingehend @@ -1592,6 +1759,16 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. System message Systemnachricht + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1683,7 +1860,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Leiste standardmäßig anzeigen - + Private chat invite from Private Chateinladung von @@ -1706,7 +1883,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. ChatStyle - + Standard style for group chat Standardstil für den Gruppenchat @@ -1755,17 +1932,17 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. ChatWidget - + Close Schließen - + Send Senden - + Bold Fett @@ -1780,12 +1957,12 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Kursiv - + Attach a Picture Bild anhängen - + Strike Durchgestrichen @@ -1836,12 +2013,37 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Schriftart auf Standard zurücksetzen - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... tippt... - + Do you really want to physically delete the history? Möchtest du wirklich den Nachrichtenverlauf löschen? @@ -1866,7 +2068,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Text Datei (*.txt );;Alle Dateien (*) - + appears to be Offline. scheint offline zu sein. @@ -1891,7 +2093,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. antwortet möglicherweise nicht, da der Status auf "Beschäftigt" gesetzt wurde - + Find Case Sensitively Unter Berücksichtigung von Groß-/Kleinschreibung suchen @@ -1913,7 +2115,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Nach Finden von X Elementen mit dem Einfärben nicht aufhören (benötigt mehr CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Vorherige finden </b><br/><i>Strg+Umschalt+G</i> @@ -1928,12 +2130,12 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. <b>Finden </b><br/><i>Strg+F</i> - + (Status) (Status) - + Set text font & color Schriftart & Textfarbe festlegen @@ -1943,7 +2145,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Datei anhängen - + WARNING: Could take a long time on big history. WARNUNG: Könnte bei einem großen Verlauf lange dauern. @@ -1954,7 +2156,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Markiere diesen ausgewählten Text</b><br><i>Strg+M</i> @@ -1989,12 +2191,12 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Suchfeld - + Type a message here Hier eine Nachricht eingeben - + Don't stop to color after Nach Finden von @@ -2004,7 +2206,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Elementen mit dem Einfärben nicht aufhören (benötigt mehr CPU) - + Warning: Warnung: @@ -2162,7 +2364,12 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Details - + + Node info + Netzknoteninfo + + + Peer Address Adresse des Nachbarn @@ -2249,12 +2456,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. RetroShare-Netzknotendetails - - Location info - Standortinformationen - - - + Node name : Netzknotenname : @@ -2290,6 +2492,11 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node Empfohlene Dateien automatisch von diesem Netzknoten herunterladen @@ -2345,7 +2552,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. Whitelist-Freigabe erfordern - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> <html><head/><body><p>Dies ist die ID des <span style=" font-weight:600;">OpenSSL</span>-Zertifikates des Netzknotens, welches mit obigem <span style=" font-weight:600;">PGP</span>-Schlüssel signiert wurde.</p></body></html> @@ -2378,18 +2585,7 @@ Doppelklicke auf Lobbys um sie zu betreten und zu chatten. 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 - Zertifikat &manuell eingeben - - - + &You get a certificate file from your friend &Du hast eine Datei mit einem Zertifikat deines Freund bekommen @@ -2399,19 +2595,7 @@ Die folgenden Wege sind möglich: Ausgewählte Freunde von Freunden hinzu&fügen - - &Enter RetroShare ID manually - RetroShare-&ID manuell eingeben - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Einladung per E-Mail senden -(er/sie erhält eine E-Mail mit der Anleitung zum Herunterladen von RetroShare) - - - + Text certificate Text-Zertifikat @@ -2421,13 +2605,8 @@ Die folgenden Wege sind möglich: Text als PGP-Zertifikate verwenden. - - 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 @@ -2448,11 +2627,16 @@ Die folgenden Wege sind möglich: - Please, paste your friends PGP certificate into the box below - Bitte füge das PGP-Zertifikat deines Freundes in das Feld unten ein + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files Zertifikat-Dateien @@ -2533,6 +2717,46 @@ Die folgenden Wege sind möglich: + RetroShare is better with Friends + RetroShare ist mit Freunden besser + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + GMail + + + + Yahoo + Yahoo + + + + Outlook + Outlook + + + + AOL + AOL + + + + Yandex + Yandex + + + + Email + + + + Invite Friends by Email Freunde per E-Mail einladen @@ -2558,7 +2782,7 @@ Die folgenden Wege sind möglich: - + Friend request Freundschaftsanfrage @@ -2572,61 +2796,102 @@ Die folgenden Wege sind möglich: - + Peer details Nachbardetails - - + + Name: Name: - - + + Email: E-Mail: - - + + Node: + Netzknoten: + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: Ort: - + - + Options Optionen - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: Freund zur Gruppe hinzufügen: - - + + Authenticate friend (Sign PGP Key) Freund authentifizieren (PGP-Schlüssel unterzeichnen) - - + + Add as friend to connect with Als Freund hinzufügen, zu dem verbunden wird - - + + To accept the Friend Request, click the Finish button. Abschließen-Knopf anklicken, um die Anfrage zu akzeptieren - + Sorry, some error appeared Entschuldigung, es trat ein Fehler auf @@ -2646,7 +2911,7 @@ Die folgenden Wege sind möglich: Details über deinen Freund: - + Key validity: Schlüssel-Gültigkeit: @@ -2702,12 +2967,12 @@ Die folgenden Wege sind möglich: - + Certificate Load Failed Das Zertifikat konnte nicht geladen werden - + Cannot get peer details of PGP key %1 Kann Nachbardetails von PGP-Schlüssel %1 nicht abrufen @@ -2742,12 +3007,13 @@ Die folgenden Wege sind möglich: Nachbar-ID - + + RetroShare Invitation RetroShare-Einladung - + Ultimate Ultimativ @@ -2773,7 +3039,7 @@ Die folgenden Wege sind möglich: - + You have a friend request from Du hast eine Freundschaftsanfrage von @@ -2788,7 +3054,7 @@ Die folgenden Wege sind möglich: Der Nutzer %1 ist nicht in deinem Netzwerk verfügbar - + Use new certificate format (safer, more robust) Neues Zertifikatsformat benutzen (sicherer und robuster) @@ -2886,13 +3152,22 @@ Die folgenden Wege sind möglich: *** Keine *** - + Use as direct source, when available Wenn verfügbar als direkte Quelle nutzen. - - + + IP-Addr: + IP-Adr.: + + + + IP-Address + IP-Adresse + + + Recommend many friends to each others Viele Freunde einander empfehlen @@ -2902,12 +3177,17 @@ Die folgenden Wege sind möglich: Freundempfehlungen - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: Nachricht: - + Recommend friends Freunde empfehlen @@ -2927,17 +3207,12 @@ Die folgenden Wege sind möglich: Bitte mindestens einen Empfänger wählen. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Bitte beachte dass Retroshare übermäßig viel Bandbreite, Arbeitsspeicher und Prozessorleistung erfordert, wenn du zu viele Freunde hinzufügst. Du kannst so viele Freunde hinzufügen wie du willst, aber mehr als 40 erfordert wahrscheinlich zu viele Ressourcen. - - - + Add key to keyring Schlüssel zum Schlüsselbund hinzufügen. - + This key is already in your keyring Schlüssel ist bereits in deinem Schlüsselbund. @@ -2951,7 +3226,7 @@ even if you don't make friends. Selbst wenn ihr euch nicht anfreundet, könnte es nützlich sein, um Fernnachrichten an diesen Teilnehmer zu senden. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netze inkompatibel sind. @@ -2962,8 +3237,8 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz Ungülitge Netzknoten-ID. - - + + Auto-download recommended files Empfohlene Dateien automatisch herunterladen @@ -2973,8 +3248,8 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz Kann als direkte Quelle verwendet werden - - + + Require whitelist clearance to connect Zum Verbinden Whitelist-Freigabe erfordern @@ -2984,7 +3259,7 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz IP zu Whitelist hinzufügen - + No IP in this certificate! Zertifikat enthält keine IP! @@ -2994,17 +3269,17 @@ Das Zertifikat hat die falsche Versionsnummer. Beachte, dass v0.6- und v0.5-Netz <p>Dieses Zertifikat enthält keine IP. Du wirst auf Discovery und DHT angewiesen sein un sie herauszufinden. Da du Whitelist-Freigabe forderst wird der Nachbar eine Sicherheitswarnung im Neuigkeitenreiter auslösen. Von dort kannst die die IP freigeben.</p> - + Added with certificate from %1 Hinzugefügt mit Zertifikat von %1 - + Paste Cert of your friend from Clipboard Zertifikat deines Freundes aus der Zwischenablage einfügen - + Certificate Load Failed:can't read from file %1 Fehler beim Laden des Zertifikats: Datei %1 konnte nicht gelesen werden @@ -3875,7 +4150,7 @@ p, li { white-space: pre-wrap; } Forumsbeitrag veröffentlichen - + Forum Forum @@ -3885,7 +4160,7 @@ p, li { white-space: pre-wrap; } Betreff - + Attach File Datei anhängen @@ -3915,12 +4190,12 @@ p, li { white-space: pre-wrap; } Neues Thema erstellen - + No Forum Kein Forum - + In Reply to Als Antwort auf @@ -3958,12 +4233,12 @@ p, li { white-space: pre-wrap; } Möchtest du wirklich %1 Nachrichten erzeugen? - + Send Senden - + Forum Message Forumbeitrag @@ -3975,7 +4250,7 @@ Do you want to reject this message? Willst du diesen Beitrag verwerfen - + Post as Veröffentlichen als @@ -4010,8 +4285,8 @@ Willst du diesen Beitrag verwerfen - Security policy: - Sicherheitsrichtlinie: + Visibility: + Sichtbarkeit: @@ -4024,7 +4299,22 @@ Willst du diesen Beitrag verwerfen Privat (nur private Einladung) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + erfordert PGP-signierte Identitäten + + + + Security: + Sicherheit: + + + Select the Friends with which you want to group chat. Wähle die Freunde mit denen du chatten möchtest. @@ -4034,12 +4324,22 @@ Willst du diesen Beitrag verwerfen Freunde einladen - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: Kontakte: - + Identity to use: Zu verwendende Identität: @@ -4198,7 +4498,12 @@ Willst du diesen Beitrag verwerfen DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT aus @@ -4220,8 +4525,8 @@ Willst du diesen Beitrag verwerfen - DHT Error - DHT-Fehler + No peer found in DHT + @@ -4318,7 +4623,7 @@ Willst du diesen Beitrag verwerfen DhtWindow - + Net Status Netzstatus @@ -4348,7 +4653,7 @@ Willst du diesen Beitrag verwerfen Adresse des Nachbarn - + Name Name @@ -4393,7 +4698,7 @@ Willst du diesen Beitrag verwerfen RsId - + Bucket Paket @@ -4419,17 +4724,17 @@ Willst du diesen Beitrag verwerfen - + Last Sent Zuletzt gesendet - + Last Recv Zuletzt empfangen - + Relay Mode Relay-Modus @@ -4464,7 +4769,22 @@ Willst du diesen Beitrag verwerfen Bandbreite - + + IP + IP + + + + Search IP + IP suchen + + + + Copy %1 to clipboard + + + + Unknown NetState Unbekannter Netzstatus @@ -4669,7 +4989,7 @@ Willst du diesen Beitrag verwerfen Unbekannt - + RELAY END RELAY ENDE @@ -4703,19 +5023,24 @@ Willst du diesen Beitrag verwerfen - + %1 secs ago vor %1 Sek. - + %1B/s %1B/s - + + Relays + + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4725,13 +5050,15 @@ Willst du diesen Beitrag verwerfen nie - + + + DHT DHT - + Net Status: Netzstatus: @@ -4801,12 +5128,33 @@ Willst du diesen Beitrag verwerfen Relay: - + + Filter: + Filter: + + + + Search Network + Netzwerksuche + + + + + Peers + Nachbarn + + + + Relay + + + + DHT Graph DHT-Graph - + Proxy VIA Proxy VIA @@ -4940,7 +5288,7 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic ExprParamElement - + to @@ -5045,7 +5393,7 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic FileTransferInfoWidget - + Chunk map Block map @@ -5220,7 +5568,7 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic FlatStyle_RDM - + Friends Directories Dateien von Freunden @@ -5296,90 +5644,40 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic FriendList - - - Status - Status - - - - - + Last Contact Letzter Kontakt - - - Avatar - Avatar - - - + Hide Offline Friends Offline-Freunde verstecken - - State - Status + + export friendlist + Freundesliste exportieren - Sort by State - Nach Status sortieren + export your friendlist including groups + - - Hide State - Status ausblenden - - - - - Sort Descending Order - Absteigend sortieren - - - - - Sort Ascending Order - Aufsteigend sortieren - - - - Show Avatar Column - Avatar-Spalte anzeigen - - - - Name - Name + + import friendlist + Freundesliste importieren - Sort by Name - Nach Name sortieren - - - - Sort by last contact - Nach letztem Kontakt sortieren - - - - Show Last Contact Column - Spalte für letzten Kontakt anzeigen - - - - Set root is Decorated - Baumstruktur anzeigen + import your friendlist including groups + + - Set Root Decorated - Baumstruktur anzeigen + Show State + Status anzeigen @@ -5388,7 +5686,7 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Gruppen anzeigen - + Group Gruppe @@ -5429,7 +5727,17 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Zu Gruppe hinzufügen - + + Search + Suchen + + + + Sort by state + Nach Status sortieren + + + Move to group In Gruppe verschieben @@ -5459,40 +5767,107 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Alle reduzieren - - + Available Verfügbar - + Do you want to remove this Friend? Möchtest du diesen Freund entfernen? - - Columns - Spalten + + + Done! + Fertig! - - - + + Your friendlist is stored at: + + Deine Freundesliste wird gespeichert unter: + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + Deine Freundesliste wurde importiert aus: + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + XML-Datei (*.xml);;Alle Dateien (*) + + + + + + Error + Fehler + + + + Failed to get a file! + Fehler beim Holen der Datei! + + + + File is not writeable! + + Datei ist nicht schreibbar! + + + + + File is not readable! + + Datei ist nicht lesbar! + + + + IP IP - - Sort by IP - Nach IP sortieren - - - - Show IP Column - IP-Spalte anzeigen - - - + Attempt to connect Verbindung versuchen @@ -5502,7 +5877,7 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Neue Gruppe erstellen - + Display Anzeigen @@ -5512,12 +5887,7 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Zertifikat-Link einfügen - - Sort by - Sortieren nach - - - + Node Netzknoten @@ -5527,17 +5897,17 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Freundknoten entfernen - + Do you want to remove this node? Möchtest du diesen Netzknoten entfernen? - + Friend nodes Befreundete Netzknoten - + Send message to whole group Nachricht an ganze Gruppe senden @@ -5585,30 +5955,35 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Suchen: - - All - Alle + + Sort by state + Nach Status sortieren - None - Keine - - - Name Name - + Search Friends Freunde suchen + + + Mark all + Alle markieren + + + + Mark none + Keine markieren + FriendsDialog - + Edit status message Statusnachricht bearbeiten @@ -5702,12 +6077,17 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Schlüsselbund - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. RetroShare-Rundschreiben: Nachrichten werden an alle verbundenen Freunde gesendet. - + Network Netzwerk @@ -5718,12 +6098,7 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Netzwerkgraph - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Netzwerk</h1><p>Der Netzwerkreiter zeigt deine befreundeten RetroShare-Netzknoten: Die mit dir verbundenen benachbarten RetroShare-Netzknoten.</p><p>Du kannst Netzknoten gruppieren, um einen abgestufteren Informationszugang zu ermöglichen. Beispielsweise es nur einigen Netzknoten zu erlauben, nur einige deiner Dateien zu sehen.</p><p>Rechts findest du drei nützliche Reiter: <ul><li>"Rundschreiben" sendet gleichzeitig Nachrichten an alle verbundenen Netzknoten</li><li>"Lokaler Netzwerkgraph" zeigt das Netz um dich herum, basierend auf Discovery-Informationen</li><li>"Schlüsselbund" enthält von dir gesammelte Netzknotenschlüssel, meist durch Weiterleitung von deinen befreundeten Netzknoten</li></ul></p> - - - + Set your status message here. Stelle hier deine Statusmeldung ein. @@ -5736,7 +6111,7 @@ Das ist nützlich, wenn du eine externe Festplatte freigibst und die Dateien nic Neues Profil erstellen - + Name Name @@ -5790,7 +6165,7 @@ Eingabe einer falschen E-Mail-Adresse anonym bleiben. Passwort (Check) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/><body><p align="justify">Vor dem Fortfahren bitte die Maus umherbewegen, um für Retroshare möglichst viele Zufallswerte zu sammeln. Das Auffüllen des Fortschrittsbalkens auf 20% ist erforderlich, 100% werden empfohlen.</p></body></html> @@ -5805,7 +6180,7 @@ Eingabe einer falschen E-Mail-Adresse anonym bleiben. Passwörter stimmen nicht überein. - + Port Port @@ -5849,29 +6224,24 @@ Eingabe einer falschen E-Mail-Adresse anonym bleiben. Ungültiger versteckter Netzknoten - - Please enter a valid address of the form: 31769173498.onion:7800 - Bitte gib eine gültige Adresse in der Form 31769173498.onion:7800 ein - - - + Node field is required with a minimum of 3 characters Das Feld Netzknoten ist mit min. 3 Zeichen zu versehen - + Failed to generate your new certificate, maybe PGP password is wrong! Das Erzeugen deines neuen Zertifikats ist fehlgeschlagen. Vielleicht ist das PGP-Passwort falsch? - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" Mit diesem Formular kannst du ein neues Profil erstellen. Alternativ kannst Du ein bereits existierendes Profil benutzen. Entferne einfach den Haken bei "Neues Profil erstellen" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. Du kannst RetroShare-Netzknoten mit demselben Profil auf verschiedenen Rechnern erstellen und benutzen. Dazu exportierst du einfach das ausgewählte Profil und importierst es auf einem anderen Rechner um dort damit einen neuen Netzknoten zu erstellen. @@ -5893,7 +6263,7 @@ Alternativ kannst Du ein bereits existierendes Profil benutzen. Entferne einfach - + Create a new profile Neues Profil erstellen @@ -5918,12 +6288,17 @@ Alternativ kannst Du ein bereits existierendes Profil benutzen. Entferne einfach Versteckten Netzknoten erstellen - + Use profile Profil verwenden - + + hidden address + versteckte Adresse + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. Dein Profil ist mit einem PGP-Schlüsselpaar verknüpft. RetroShare ignoriert derzeit DSA-Schlüssel. @@ -5939,12 +6314,17 @@ Alternativ kannst Du ein bereits existierendes Profil benutzen. Entferne einfach <html><head/><body><p>Dies ist dein Verbindungsport.</p><p>Ein Wert zwischen 1024 und 65535 </p><p>sollte ok sein. Du kannst ihn später ändern.</p></body></html> - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length PGP-Schlüssellänge - + Create new profile @@ -5961,7 +6341,12 @@ Alternativ kannst Du ein bereits existierendes Profil benutzen. Entferne einfach Zur Erstellung deines Netzknotens und/oder Profils anklicken - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. [Erforderlich] Dieses Passwort schützt deinen privaten PGP-Schlüssel. @@ -6077,7 +6462,12 @@ und den Import zum Laden verwenden Dein Profil wurde erfolgreich importiert: - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6085,12 +6475,12 @@ und den Import zum Laden verwenden - + Profile generation failure Profilerzeugung fehlgeschlagen - + Missing PGP certificate Fehlendes PGP-Zertifikat @@ -6108,21 +6498,6 @@ Gib dein PGP-Passwort ein sobald Du gefragt wirst, um deinen neuen Schlüssel zu You can create a new profile with this form. Mit diesem Formular kannst du ein neues Profil erstellen. - - - Tor address - Tor-Adresse - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - <html><head/><body><p>Dies ist eine Tor-Onion-Adresse in der Form: xa76giaf6ifda7ri63i263.onion </p><p>Um eine solche zu erhalten, musst du Tor entsprechend einrichten und einen neuen versteckten Dienst erstellen. Falls du noch keinen Dienst hast, kannst du trotzdem fortfahren und es später in Optionen->Netzwerk->Tor-Konfiguration korrigieren.</p></body></html> - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - [Erforderlich] Beispiel: xa76giaf6ifda7ri63i263.onion (von dir von Tor erhalten) - GeneralPage @@ -6281,29 +6656,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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"> -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:12pt;">Wenn dein Freund dir eine Einladung schickt, klicke auf &quot;Freunde hinzufügen&quot; um den Assistent zu öffnen.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">Kopiere das &quot;Zertifikat&quot; deines Freundes und füge es in den Assistent ein und akzeptiere ihn als Freund.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></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-size:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6314,26 +6678,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-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-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-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"> -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:12pt;">Seid zur selben Zeit online und RetroShare wird sich automatisch verbinden!</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">Bevor sich RetroShare verbinden kann, muss es das Netzwerk finden.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Das kann 5-30 Minuten beim ersten Start von RetroShare dauern.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">Die DHT-Anzeige (in der Statuszeile) wechselt zu grün, wenn Verbindungen hergestellt werden können.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">Nach einigen Mitnuten wechselt auch die NAT-Anzeige (auch in der Statuszeile) zu gelb oder grün.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Wenn sie rot bleibt, hast du eine Firewall, die RetroShare am Verbinden hindert.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">Schaue in die Sektion &quot;Weitere Hilfe&quot; 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6341,71 +6703,37 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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"> -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:12pt;">Du kannst die Verbindungen von RetroShare verbessern, indem du den externen Port an deiner Firewall öffnest.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Das erlaubt deinen Freunden sich mit dir zu verbinden.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">Der einfachste Weg ist das aktivieren von UPnP an deinem Router.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Schaue in die Anleitung deines Routers um die passende Einstellung zu finden.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">Auch wenn nichts davon hilft wird RetroShare trotzdem funktionieren.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-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-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-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"> -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:12pt;">Hast du Schwierigkeiten bei den ersten Schritten mit RetroShare?</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">1) schaue in die FAQ auf dem Wiki. Diese sind etwas alt, aber wir versuchen, sie auf den neuesten Stand zu bekommen.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">2) schaue in das Online-Forum. Frage und diskutiere mit.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">3) versuche es in den internen RetroShare-Foren</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - Diese werden geladen, wenn du mit deinen Freunden verbunden bist.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">4) Wenn du immer noch nicht weiterkommst, schreibe eine Mail an uns.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">Viel Spaß beim Retrosharing</span></p></body></html> + - + + Connect To Friends + Zu Freunden verbinden + + + + Advanced: Open Firewall Port + Erweitert: Öffne Firewall Port + + + + Further Help and Support + Weitere Hilfe und Support + + + Open RS Website RS-Website öffnen @@ -6498,82 +6826,104 @@ p, li { white-space: pre-wrap; } Routerstatistiken - + + GroupBox + + + + + ID + Kennung + + + + Identity Name + + + + + Destinaton + Ziel + + + + Data status + Datenstatus + + + + Tunnel status + Tunnelstatus + + + + Data size + Datengröße + + + + Data hash + + + + + Received + Empfangen + + + + Send + Senden + + + + Branching factor + + + + + Details + + + + Unknown Peer Unbekannter Nachbar + + + Pending packets + Ausstehende Pakete + + + + Unknown + Unbekannt + GlobalRouterStatisticsWidget - - Pending packets - Wartende Pakete - - - + Managed keys Verwaltete Schlüssel - + Routing matrix ( Routingmatrix ( - - Id - ID + + [Unknown identity] + - - Destination - Ziel - - - - Data status - Datenstatus - - - - Tunnel status - Tunnelstatus - - - - Data size - Datengröße - - - - Data hash - Daten-Hash - - - - Received - Empfangen - - - - Send - Senden - - - + : Service ID = : Dienst-ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Klicken und Netzknoten umherziehen, vergrößern mit dem Mausrad oder den "+"- und "-"-Tasten - - GroupChatToaster @@ -6753,7 +7103,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Titel @@ -6773,7 +7123,7 @@ p, li { white-space: pre-wrap; } Beschreibung durchsuchen - + Sort by Name Nach Name sortieren @@ -6787,13 +7137,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post Nach letztem Beitrag sortieren + + + Sort by Posts + + Display Anzeigen - + You have admin rights Sie haben Administratorrechte @@ -6806,7 +7161,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and und @@ -6904,7 +7259,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanäle @@ -6915,17 +7270,22 @@ p, li { white-space: pre-wrap; } Kanal erstellen - + Enable Auto-Download Auto-Download aktivieren - + My Channels Eigene Kanäle - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels Abonnierte Kanäle @@ -6940,14 +7300,30 @@ p, li { white-space: pre-wrap; } Andere Kanäle - + + Select channel download directory + Kanal-Download-Verzeichnis auswählen + + + Disable Auto-Download Auto-Download deaktivieren - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Kanäle</h1><p>Kanäle erlauben dir die Veröffentlichung von Daten (z. B. Filme, Musik), die sich im Netzwerk verbreiten werden.</p><p>Du kannst die von deinen Freunden abonnierten Kanäle sehen und automatisch die von dir abonnierten Kanäle an deine Freude weiterleiten. Dies fördert gute Kanäle im Netzwerk.</p><p>Nur der Ersteller eines Kanals kann Beiträge in dem Kanal veröffentlichen. Andere Netzwerkteilnehmer können nur lesend darauf zugreifen, es sei denn, der Kanal ist privat. Du kannst mit deinen befreundeten RetroShare-Netzknoten allerdings die Veröffentlichungs- oder Leserechte teilen.</p><p>Kanäle können anonymisiert oder aber einer RetroShare-Identität zugeordnet werden, sodass Leser dich falls nötig kontaktieren können. Aktiviere "Kommentare erlauben", falls du Nutzern die Kommentierung deiner Veröffentlichungen erlauben willst.</p><p>Kanalbeiträge werden nach %1 Monaten gelöscht.</p> + + Set download directory + Herunterladeverzeichnis festlegen + + + + + [Default directory] + [Standardverzeichnis] + + + + Specify... + Angeben … @@ -7287,7 +7663,7 @@ p, li { white-space: pre-wrap; } Keinen Kanal gewählt - + Disable Auto-Download Auto-Download deaktivieren @@ -7307,7 +7683,7 @@ p, li { white-space: pre-wrap; } Zeige Dateien - + Feeds Feeds @@ -7317,7 +7693,7 @@ p, li { white-space: pre-wrap; } Dateien - + Subscribers Abonnenten @@ -7480,7 +7856,7 @@ bevor du kommentieren kannst. GxsForumGroupDialog - + Create New Forum Neues Forum erstellen @@ -7612,12 +7988,12 @@ bevor du kommentieren kannst. Formular - + Start new Thread for Selected Forum Ein neues Thema im ausgewählten Forum starten - + Search forums Foren durchsuchen @@ -7638,7 +8014,7 @@ bevor du kommentieren kannst. - + Title Titel @@ -7651,13 +8027,18 @@ bevor du kommentieren kannst. - + Author Autor - - + + Save image + + + + + Loading Lade @@ -7687,7 +8068,7 @@ bevor du kommentieren kannst. Nächste ungelesene - + Search Title Titel durchsuchen @@ -7712,17 +8093,27 @@ bevor du kommentieren kannst. Inhalt durchsuchen - + No name Kein Name - + Reply Antwort + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread Ein neues Thema erstellen @@ -7760,7 +8151,7 @@ bevor du kommentieren kannst. RetroShare-Link kopieren - + Hide Verbergen @@ -7770,7 +8161,38 @@ bevor du kommentieren kannst. Erweitern - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous Anonym @@ -7790,29 +8212,55 @@ bevor du kommentieren kannst. [ ... Fehlender Beitrag ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Kein Forum ausgewählt! - + + + 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 einem anonymen Autor nicht antworten - + Original Message Ursprüngliche Nachricht @@ -7837,7 +8285,7 @@ bevor du kommentieren kannst. Am %1, schrieb %2: - + Forum name Forumsname @@ -7852,7 +8300,7 @@ bevor du kommentieren kannst. Beiträge (an Nachbarknoten) - + Description Beschreibung @@ -7862,12 +8310,12 @@ bevor du kommentieren kannst. Von - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> <p>Das Abonnieren eines Foums sammelt verfügbare Beiträge von deinen Freunden, die das Forum ebenfalls abonniert haben und macht das Forum für alle anderen Freunde sichtbar</p><p>Danach kannst du das Forum über das Kontextmenü der Forenliste auf der linken Seite wieder abbestellen</p> - + Reply with private message Mit privater Nachricht antworten @@ -7883,7 +8331,12 @@ bevor du kommentieren kannst. GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums Foren @@ -7913,11 +8366,6 @@ bevor du kommentieren kannst. Other Forums Andere Foren - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Foren</h1><p>RetroShare-Foren sehen aus wie Internetforen, aber sie arbeiten dezentralisiert.</p><p>Du siehst die von deinen Freunden abonnierten Foren, und du leitest die von dir selbst abonnierten Foren an deine Freunde weiter. So werden interessante Foren im Netz gefördert.</p><p>Forenbeiträge werden nach %1 Monaten gelöscht.</p> - GxsForumsFillThread @@ -7940,13 +8388,13 @@ bevor du kommentieren kannst. GxsGroupDialog - - + + Name Name - + Add Icon Icon hinzufügen @@ -7961,7 +8409,7 @@ bevor du kommentieren kannst. Veröffentlichungsschlüssel freigeben - + check peers you would like to share private publish key with Markiere die Nachbarn, an welche du den privaten Veröffentlichungsschlüssel verteilen willst @@ -7971,36 +8419,36 @@ bevor du kommentieren kannst. Schlüssel verteilen an - - + + Description Beschreibung - + Message Distribution Nachrichtenverteilung - + Public Öffentlich - - + + Restricted to Group Auf Gruppen beschränkt - - + + Only For Your Friends Nur für deine Freunde - + Publish Signatures Signaturen veröffentlichen @@ -8030,7 +8478,7 @@ bevor du kommentieren kannst. Persönliche Signaturen - + PGP Required PGP notwendig @@ -8046,12 +8494,12 @@ bevor du kommentieren kannst. - + Comments Kommentare - + Allow Comments Kommentare erlauben @@ -8061,33 +8509,73 @@ bevor du kommentieren kannst. Keine Kommentare - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Kontakte: - + Please add a Name Bitte Name hinzufügen - + Load Group Logo Gruppenlogo laden - + Submit Group Changes Gruppenänderungen übermitteln - + Failed to Prepare Group MetaData - please Review Aufbereiten der Gruppenmetadaten fehlgeschlagen - bitte überprüfen - + Will be used to send feedback Wird zum Senden von Rückmeldungen genutzt werden @@ -8097,12 +8585,12 @@ bevor du kommentieren kannst. Eigentümer: - + Set a descriptive description here Gib hier eine aussagekräftige Beschreibung ein - + Info Info @@ -8175,7 +8663,7 @@ bevor du kommentieren kannst. Druckvorschau - + Unsubscribe Abbestellen @@ -8185,12 +8673,12 @@ bevor du kommentieren kannst. Abonnieren - + Open in new tab In neuem Reiter öffnen - + Show Details Details anzeigen @@ -8215,12 +8703,12 @@ bevor du kommentieren kannst. Alle als ungelesen markieren - + AUTHD AUTHD - + Share admin permissions Administratorrechte teilen @@ -8228,7 +8716,7 @@ bevor du kommentieren kannst. GxsIdChooser - + No Signature Keine Signatur @@ -8241,7 +8729,7 @@ bevor du kommentieren kannst. GxsIdDetails - + Loading Lade @@ -8256,8 +8744,15 @@ bevor du kommentieren kannst. Keine Signatur - + + + + [Banned] + + + + Authentication Authentifizierung @@ -8272,7 +8767,7 @@ bevor du kommentieren kannst. anonym - + Identity&nbsp;name Identitätsname @@ -8287,7 +8782,7 @@ bevor du kommentieren kannst. Unterzeichnet&nbsp;von - + [Unknown] [Unbekannt] @@ -8305,6 +8800,49 @@ bevor du kommentieren kannst. Kein Name + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8500,43 +9038,7 @@ bevor du kommentieren kannst. Über - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare ist eine private, sichere, plattformunabhängige, </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-weight:600;">dezentralisierte Open-Source-Kommunikationsplattform.</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-weight:600;">Du kannst auf sichere Weise Daten mit deinen Freunden teilen.</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-weight:600;">Dazu wird ein &quot;Web of Trust&quot; verwendet, um Gegenstellen zu authentifizieren. Die gesamte Kommunikation ist Open-SSL-verschlüsselt</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-weight:600;">Mit RetroShare kann man auf Filesharing-, Chat-, Nachrichten- und Kanal-Funktionen zugreifen.</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-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; font-weight:600;">Nützliche externe Links für mehr Information:</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;" 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-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-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-Forum</a></li> -<li style=" 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 Projektseite</span></a></li> -<li style=" 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> - - - + Authors Autoren @@ -8600,7 +9102,28 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Polish: </span>Maciej Mrug</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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries Bibliotheken @@ -8642,7 +9165,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details Personendetails @@ -8677,78 +9200,88 @@ p, li { white-space: pre-wrap; } Identitäts-ID : - + + Last used: + Zuletzt verwendet: + + + Your Avatar Click here to change your avatar Dein Avatar - + Reputation Reputation - - Overall - Insgesamt + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + - - Implicit - implizit - - - - Opinion - Meinung - - - - Peers - Nachbarn - - - - Edit Reputation - Reputation bearbeiten - - - - Tweak Opinion - Meinung optimieren - - - - Accept (+100) - Akzeptieren (+100) + + Your opinion: + Deine Meinung: - Positive (+10) - Positiv (+10) + Neighbor nodes: + Nachbarknoten: - Negative (-10) - Negativ (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> + - - Ban (-100) - Sperren (-100) + + Negative + Negativ - Custom - Benutzerdefiniert + Neutral + Neutral - - Modify - Ändern + + Positive + Positiv - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + Insgesamt: + + + Unknown real name Unbekannter Klarname @@ -8787,37 +9320,58 @@ p, li { white-space: pre-wrap; } Anonymous identity Anonyme Identität + + + +50 Known PGP + +50 PGP Bekannt + + + + +10 UnKnown PGP + +10 PGP Unbekannt + + + + +5 Anon Id + +5 Anonyme Kennung + + + + OK + OK + + + + Banned + + IdDialog - + New ID Neue ID - + + All Alle - + + Reputation Reputation - - - Todo - Zu erledigen - - Search Suchen - + Unknown real name Unbekannter Klarname @@ -8827,72 +9381,29 @@ p, li { white-space: pre-wrap; } Anonyme ID - + Create new Identity Neue Identität erstellen - - Overall - Insgesamt + + Persons + - - Implicit - implizit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + - - Opinion - Meinung - - - - Peers - Nachbarn - - - - Edit reputation - Reputation bearbeiten - - - - Tweak Opinion - Meinung optimieren - - - - Accept (+100) - Akzeptieren (+100) - - - - Positive (+10) - Positiv (+10) - - - - Negative (-10) - Negativ (-10) - - - - Ban (-100) - Sperren (-100) - - - - Custom - Benutzerdefiniert - - - - Modify - Ändern - - - + Edit identity Identität bearbeiten @@ -8913,42 +9424,42 @@ p, li { white-space: pre-wrap; } Stellt Fernchat mit diesem Nachbarn her - - Identity name - Identitätsname - - - + Owner node ID : Eigentümerknoten-ID - + Identity name : Identitätsname : - + + () + + + + Identity ID Identitäts-ID - + Send message Nachricht senden - + Identity info Identitätsinformationen - + Identity ID : Identitäts-ID : - + Owner node name : Eigentümerknotenname : @@ -8958,7 +9469,57 @@ p, li { white-space: pre-wrap; } Typ: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + Deine Meinung: + + + + Neighbor nodes: + Nachbarknoten: + + + + Negative + Negativ + + + + Neutral + Neutral + + + + Positive + Positiv + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + Insgesamt: + + + + Contacts + + + + Owned by you In deinem Besitz @@ -8968,12 +9529,17 @@ p, li { white-space: pre-wrap; } Anonym - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identitäten</h1><p>In diesem Reiter kannst du pseudoanonyme Identitäten erstellen/bearbeiten.</p><p>Identitäten werden benutzt, um deine Daten sicher zu identifizieren: signiere Foren- und Kanalbeiträge und empfange Rückmeldungen mit dem in RetroShare eingebauten E-Mail-System, veröffentliche Kommentare zu Kanalbeiträgen etc.</p><p>Identitäten können optional mit dem Zertifikat deines RetroShare-Netzknotens signiert werden. Signierte Identitäten sind vertrauenswürdiger, lassen sich aber mit der IP-Adresse deines RetroShare-Netzknotens in Verbindung bringen.</p><p>Anonyme Identitäten erlauben es dir, anonym mit anderen Nutzern zu interagieren. Sie können nicht gefälscht werden, aber niemand kann beweisen, wem eine bestimmte Identität wirklich gehört.</p> + + ID + - + + Search ID + + + + This identity is owned by you Diese Identität gehört dir @@ -8989,7 +9555,7 @@ p, li { white-space: pre-wrap; } unbekannte Schlüssel-ID - + Identity owned by you, linked to your Retroshare node Dir gehörende, mit deinem RetroShare-Netzknoten verknüpfte Identität @@ -9004,7 +9570,42 @@ p, li { white-space: pre-wrap; } Anonyme Identität - + + OK + OK + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work Fernchat funktioniert nicht @@ -9014,15 +9615,35 @@ p, li { white-space: pre-wrap; } Fehlercode - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People Leute - + Your Avatar Click here to change your avatar Dein Avatar @@ -9043,7 +9664,12 @@ p, li { white-space: pre-wrap; } Mit entfernten Netzknoten verknüpft - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node Mit befreundetem RetroShare-Netzknoten verknüpft @@ -9058,7 +9684,7 @@ p, li { white-space: pre-wrap; } Mit unbekanntem RetroShare-Netzknoten verknüpft - + Chat with this person Mit dieser Person chatten @@ -9068,17 +9694,7 @@ p, li { white-space: pre-wrap; } Mit dieser Person chatten als... - - Send message to this person - Nachricht an diese Person senden - - - - Columns - Spalten - - - + Distant chat refused with this person. Fernchat abgelehnt mit dieser Person. @@ -9088,7 +9704,7 @@ p, li { white-space: pre-wrap; } Zuletzt verwendet: - + +50 Known PGP +50 PGP bekannt @@ -9103,29 +9719,17 @@ p, li { white-space: pre-wrap; } +5 Anonyme ID - + Do you really want to delete this identity? Möchtest du diese Identität wirklich löschen? - + Owned by Im Besitz von - - - Show - Zeige - - - - - column - Spalte - - - + Node name: Netzknotenname: @@ -9135,7 +9739,7 @@ p, li { white-space: pre-wrap; } Netzknoten-ID : - + Really delete? Wirklich löschen? @@ -9178,8 +9782,8 @@ p, li { white-space: pre-wrap; } Neue Identität - - + + To be generated Muss erzeugt werden @@ -9187,7 +9791,7 @@ p, li { white-space: pre-wrap; } - + @@ -9197,13 +9801,13 @@ p, li { white-space: pre-wrap; } N/A - + Edit identity Identität bearbeiten - + Error getting key! Fehler beim Holen des Schlüssels! @@ -9223,7 +9827,7 @@ p, li { white-space: pre-wrap; } Unbekannter Klarname - + Create New Identity Neue Identität erstellen @@ -9278,7 +9882,7 @@ p, li { white-space: pre-wrap; } Du kannst eine oder mehrere Identitäten haben. Sie werden genutzt, um in Chatlobbys, Foren und Kanalkommentaren zu schreiben. Sie dienen als Zieladresse für Fernchat und das RetroShare-Fernnachrichtensystem. - + The nickname is too short. Please input at least %1 characters. Der Spitzname ist zu kurz. Bitte mindestens %1 Zeichen eingeben. @@ -9346,7 +9950,7 @@ p, li { white-space: pre-wrap; } - + Copy Kopieren @@ -9376,16 +9980,35 @@ p, li { white-space: pre-wrap; } Senden + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Datei öffnen - + Open Folder Ordner öffnen @@ -9395,7 +10018,7 @@ p, li { white-space: pre-wrap; } Freigabeberechtigungen bearbeiten - + Checking... Überprüfe... @@ -9444,7 +10067,7 @@ p, li { white-space: pre-wrap; } - + Options Optionen @@ -9478,12 +10101,12 @@ p, li { white-space: pre-wrap; } Schnellstart-Assistent - + RetroShare %1 a secure decentralized communication platform RetroShare %1 - eine sichere und dezentralisierte Kommunikationsplattform - + Unfinished unfertig @@ -9521,7 +10144,12 @@ Bitte gib etwas Speicher frei und drücke OK. Meldungen - + + Open Messenger + Messenger öffnen + + + Open Messages Nachrichten öffnen @@ -9571,7 +10199,7 @@ Bitte gib etwas Speicher frei und drücke OK. %1 neue Nachrichten - + Down: %1 (kB/s) Herunter: %1 KiB/s @@ -9641,7 +10269,7 @@ Bitte gib etwas Speicher frei und drücke OK. Serviceberechtigungsmatrix - + Add Hinzufügen @@ -9666,7 +10294,7 @@ Bitte gib etwas Speicher frei und drücke OK. Ordner ist sehr gering (Die aktuelle Grenze ist - + Really quit ? Wirklich beenden? @@ -9675,38 +10303,17 @@ Bitte gib etwas Speicher frei und drücke OK. MessageComposer - + Compose Verfassen - - + Contacts Kontakte - - >> To - >> An - - - - >> Cc - >> Cc - - - - >> Bcc - >> Bcc - - - - >> Recommend - >> Empfehlen - - - + Paragraph Absatz @@ -9787,7 +10394,7 @@ Bitte gib etwas Speicher frei und drücke OK. Unterstrichen - + Subject: Betreff: @@ -9798,12 +10405,22 @@ Bitte gib etwas Speicher frei und drücke OK. - + Tags Schlagwörter - + + Address list: + + + + + Recommend this friend + + + + Set Text color Textfarbe festlegen @@ -9813,7 +10430,7 @@ Bitte gib etwas Speicher frei und drücke OK. Texthintergrundfarbe festlegen - + Recommended Files Empfohlene Dateien @@ -9883,7 +10500,7 @@ Bitte gib etwas Speicher frei und drücke OK. Blockquote hinzufügen - + Send To: Senden an: @@ -9908,47 +10525,22 @@ Bitte gib etwas Speicher frei und drücke OK. &Blocksatz - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - Geordnete Liste (Dezimal) - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them 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> @@ -9974,12 +10566,12 @@ 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. @@ -9991,7 +10583,7 @@ Möchtest du die Nachricht in den Entwürfen speichern? RetroShare Link einfügen - + Add to "To" Zu "An" hinzufügen @@ -10011,12 +10603,7 @@ Möchtest du die Nachricht in den Entwürfen speichern? Als empfohlen hinzufügen - - Friend Details - Freunddetails - - - + Original Message Ursprüngliche Nachricht @@ -10026,19 +10613,21 @@ Möchtest du die Nachricht in den Entwürfen speichern? Von - + + To An - + + Cc Cc - + Sent Gesendet @@ -10080,12 +10669,13 @@ Möchtest du die Nachricht in den Entwürfen speichern? Bitte gib mindestens einen Empfänger ein. - + + Bcc Bcc - + Unknown Unbekannt @@ -10195,7 +10785,12 @@ Möchtest du die Nachricht in den Entwürfen speichern? &Format - + + Details + Details + + + Open File... Datei öffnen... @@ -10243,12 +10838,7 @@ Möchtest du die Nachricht speichern ? Zusätzliche Datei hinzufügen - - Show: - Anzeigen: - - - + Close Schließen @@ -10258,32 +10848,57 @@ Möchtest du die Nachricht speichern ? Von: - - All - Alle - - - + Friend Nodes Befreundete Netzknoten - - Person Details - Personendetails + + Bullet list (disc) + Ungeordnete Liste (Punkt) - - Distant peer identities - Identitäten ferner Nachbarn + + Bullet list (circle) + Ungeordnete Liste (Kreis) - + + Bullet list (square) + Ungeordnete Liste (Quadrat) + + + + Ordered list (decimal) + Geordnete Liste (Dezimal) + + + + Ordered list (alpha lower) + Geordnete Liste (Alphabetisch klein) + + + + Ordered list (alpha upper) + Geordnete Liste (Alphabetisch groß) + + + + Ordered list (roman lower) + Geordnete Liste (Römisch klein) + + + + Ordered list (roman upper) + Geordnete Liste (Römisch groß) + + + Thanks, <br> Danke, <br> - + Distant identity: Fernidentität: @@ -10306,7 +10921,27 @@ Möchtest du die Nachricht speichern ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Lesen @@ -10321,7 +10956,7 @@ Möchtest du die Nachricht speichern ? Nachricht durch Doppelklick öffnen in - + Tags Schlagwörter @@ -10361,7 +10996,7 @@ Möchtest du die Nachricht speichern ? Neuem Fenster - + Edit Tag Schlagwort bearbeiten @@ -10371,22 +11006,12 @@ Möchtest du die Nachricht speichern ? Nachricht - + Distant messages: Fernnachricht - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">Der untenstehende Link erlaubt es Personen im Netz dir verschlüsselte Nachrichten durch Tunnel zu schicken. Dafür benötigen sie deinen öffentlichen PGP-Schlüssel, welchen sie über das RetroShare Discovery System erhalten.</p></body></html> - - - - Accept encrypted distant messages from everyone - Verschlüsselte Fernnachrichten von jedem annehmen - - - + Load embedded images Eingebettete Bilder laden @@ -10667,7 +11292,7 @@ Möchtest du die Nachricht speichern ? MessagesDialog - + New Message Neue Nachricht @@ -10734,24 +11359,24 @@ Möchtest du die Nachricht speichern ? - + Tags Schlagwörter - - - + + + Inbox Posteingang - - + + Outbox Postausgang @@ -10763,14 +11388,14 @@ Möchtest du die Nachricht speichern ? - + Sent Gesendet - + Trash Papierkorb @@ -10839,7 +11464,7 @@ Möchtest du die Nachricht speichern ? - + Reply to All Allen antworten @@ -10857,12 +11482,12 @@ Möchtest du die Nachricht speichern ? - + From Von - + Date Datum @@ -10890,12 +11515,12 @@ Möchtest du die Nachricht speichern ? - + Click to sort by from Klicken, um nach Von zu sortieren - + Click to sort by date Klicken, um nach Datum zu sortieren @@ -10950,7 +11575,12 @@ Möchtest du die Nachricht speichern ? Anhänge durchsuchen - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred Gekennzeichnet @@ -11015,14 +11645,14 @@ Möchtest du die Nachricht speichern ? 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 gray 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. @@ -11042,7 +11672,12 @@ Möchtest du die Nachricht speichern ? Klicken, um nach Empfänger zu sortieren - + + This message goes to a distant person. + + + + @@ -11051,18 +11686,18 @@ Möchtest du die Nachricht speichern ? Gesamt: - + Messages Nachrichten - + Click to sort by signature Anklicken, um nach Signatur zu sortieren - + This message was signed and the signature checks Diese Nachricht wurde signiert und die Signatur stimmt überein. @@ -11072,15 +11707,10 @@ Möchtest du die Nachricht speichern ? Diese Nachricht wurde signiert und die Signatur stimmt nicht überein. - + This message comes from a distant person. Diese Nachricht kommt von einer fernen Person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Nachrichten</h1><p>RetroShare hat sein eigenes internes E-Mail-System. Du kannst E-Mails an befreundete Netzknoten schicken und von ihnen erhalten.</p><p>Es ist auch möglich, Nachrichten über das globale Routingsystem an die Identitäten anderer Teilnehmer zu schicken. Diese Nachrichten sind immer verschlüsselt und werden von zwischenliegenden Netzknoten weitergeleitet, bis sie ihr Endziel erreicht haben.</p><p>Es empfiehlt sich, diese Fernnachrichten kryptografisch mittels der <img width="16" src=":/images/stock_signature_ok.png"/>-Schaltfläche des Nachrichteneditors zu signieren, damit der Empfänger sicher sein kann, dass sie wirklich von dir kommen. Fernnachrichten verbleiben in deinem Postausgang bis eine Empfangsbestätigung eingegangen ist.</p><p>Im Allgemeinen kannst du diese Nachrichten dazu benutzen, durch Hinzufügen von Dateilinks deinen Freunden Dateien zu empfehlen, zur Stärkung deines Netzwerks deinen befreundeten Netzknoten andere Netzknoten als Freund zu empfehlen, oder Rückmeldungen an Kanalbetreiber zu senden.</p> - MessengerWindow @@ -11103,7 +11733,22 @@ Möchtest du die Nachricht speichern ? MimeTextEdit - + + Paste as plain text + Als Klartext einfügen + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link RetroShare-Link einfügen @@ -11137,7 +11782,7 @@ Möchtest du die Nachricht speichern ? - + Expand Erweitern @@ -11180,7 +11825,7 @@ Möchtest du die Nachricht speichern ? <strong>NAT:</strong> - + Network Status Unknown Netzwerkstatus unbekannt @@ -11224,26 +11869,6 @@ Möchtest du die Nachricht speichern ? Forwarded Port Weitergeleiteter Port - - - OK | RetroShare Server - OK | RetroShare-Server - - - - Internet connection - Internetverbindung - - - - No internet connection - Keine Internetverbindung - - - - No local network - Kein lokales Netzwerk - NetworkDialog @@ -11357,7 +11982,7 @@ Möchtest du die Nachricht speichern ? Nachbar-ID - + Deny friend Freund blockieren @@ -11422,7 +12047,7 @@ Der Schlüsselbund wurde aus Sicherheitsgründen zuvor in einer Datei gesichert. Sicherungsdatei kann nicht erstellt werden. Bitte die Schreibrechte im PGP-Verzeichnis, den verfügbaren Speicherplatz usw. überprüfen. - + Personal signature Persönliche Signatur @@ -11489,7 +12114,7 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. selbst - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Dateninkonsistenz im Schlüsselbund. Dies ist wahrscheinlich ein Bug. Bitte die Entwickler kontaktieren. @@ -11504,7 +12129,7 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. Nur vertrauenswürdige Schlüssel - + Trust level Vertrauensniveau @@ -11524,12 +12149,12 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. Zertifikats-ID - + Make friend... Freundschaft schließen … - + Did peer authenticate you Hat der Nachbar dich authentifiziert @@ -11559,7 +12184,7 @@ Rechtsklick und als Freund hinzufügen um zu verbinden. Nachbar-ID suchen - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11630,7 +12255,7 @@ Reported error: NewsFeed - + News Feed Info @@ -11649,21 +12274,13 @@ Reported error: This is a test. Dies ist ein Test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Info</h1><p>Die Infoseite zeigt die letzten Ereignisse innerhalb deines Netzes, sortiert nach Empfangszeit. Dies gibt dir eine Zusammenfassung über die Aktivität deiner Freunde. -Die anzuzeigenden Ereignisse kannst du durch Klicken auf <b>Optionen</b> einstellen.</p> -<p>Die verschiedenen anzeigbaren Ereignisse sind: -<ul><li>Verbindungsversuche (nützlich, um neue Freundschaften zu schließen und um zu prüfen, wer dich erreichen will)</li><li>Kanal- und Forenbeiträge</li><li>Neue Kanäle und Foren, die du abonnieren kannst</li> <li>Private Nachrichten von deinen Freunden</li></ul> </p> - News feed Neuigkeiten - + Newest on top Neueste oben @@ -11672,6 +12289,11 @@ Die anzuzeigenden Ereignisse kannst du durch Klicken auf <b>Optionen</b Oldest on top Älteste oben + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11815,7 +12437,12 @@ Die anzuzeigenden Ereignisse kannst du durch Klicken auf <b>Optionen</b Blinken - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left Oben Links @@ -11839,11 +12466,6 @@ Die anzuzeigenden Ereignisse kannst du durch Klicken auf <b>Optionen</b Notify Meldungen - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Meldungen</h1><p>Retroshare wird dich darüber informieren was in deinem Netz geschieht. Je nach deiner Nutzung möchtest du vielleicht eige dieser Meldungen (de)aktivieren. Dafür ist diese Seite gedacht!</p> - Disable All Toasters @@ -11893,7 +12515,7 @@ Die anzuzeigenden Ereignisse kannst du durch Klicken auf <b>Optionen</b NotifyQt - + PGP key passphrase PGP-Passwort @@ -11933,7 +12555,7 @@ Die anzuzeigenden Ereignisse kannst du durch Klicken auf <b>Optionen</b Speichere Dateiindex... - + Test Test @@ -11948,13 +12570,13 @@ Die anzuzeigenden Ereignisse kannst du durch Klicken auf <b>Optionen</b Unbekannter Titel - - + + Encrypted message Verschlüsselte Nachr. - + Please enter your PGP password for key Bitte gib das PGP-Passwort ein für Schlüssel @@ -12006,24 +12628,6 @@ Spielemodus: 25% vom Standarddatenaufkommen und (unfertig) weniger Meldungen Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Dateiübertragungen - - OutQueueStatisticsWidget - - - Outqueue statistics - Statistik ausgehende Warteschlange - - - - By priority: - Nach Priorität: - - - - By service : - Nach Dienst: - - PGPKeyDialog @@ -12047,12 +12651,22 @@ Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Datei Fingerabdruck : - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: Vertrauensniveau: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset Nicht festgelegt @@ -12087,39 +12701,51 @@ Minimalmodus: 10% vom Standarddatenaufkommen und (unfertig) pausiert alle Datei Schlüsselsignaturen : - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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"> -<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;">Einen Schlüssel eines Freundes zu unterzeichnen, zeigt deinen anderen Freunden, dass du ihm vertraust. Nur Freunde, deren Schlüssel du unterzeichnest, erhalten Informationen über die Freunde, denen du vertraust.</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;">Das Unterzeichnen eines Schlüssels kann nicht rückgängig gemacht werden, deshalb nutze es weise.</p></body></html> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key PGP-Schlüssel unterzeichnen + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key PGP-Schlüssel unterzeichnen + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections Verbindungen ablehnen + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections Verbindungen annehmen @@ -12130,6 +12756,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Signaturen einschließen @@ -12185,7 +12816,7 @@ p, li { white-space: pre-wrap; } Du vertraust diesem Nachbarn nicht. - + This key has signed your own PGP key Dieser Schlüssel hat deinen eigenen PGP-Schlüssel signiert @@ -12359,12 +12990,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 Freunde: 0/0 - + Online Friends/Total Friends Freunde online/Freunde gesamt @@ -12733,7 +13364,7 @@ p, li { white-space: pre-wrap; } Basisordner %1 existiert nicht. Laden der Grundeinstellung fehlgeschlagen - + Error: instance '%1'can't create a widget Fehler: Instanz '%1' kann kein Widget erstellen @@ -12794,19 +13425,19 @@ p, li { white-space: pre-wrap; } Alle Plug-ins erlauben - - Loaded plugins - Geladene Plug-ins - - - + Plugin look-up directories Plug-in Ordner - - Hash rejected. Enable it manually and restart, if you need. - Hash zurückgewiesen. Bitte manuell anwählen und, falls nötig, neu starten. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] + [deaktivert] @@ -12814,27 +13445,36 @@ p, li { white-space: pre-wrap; } Keine API-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. - + + + + + + [loading problem] + [Ladeproblem] + + + No SVN number supplied. Please read plugin development manual. Keine SVN-Nummer angegeben. Bitte konsultiere das Handbuch für die Entwicklung von Plug-ins. - + 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. @@ -12844,22 +13484,7 @@ p, li { white-space: pre-wrap; } Unbekannter Status. - - Title unavailable - Titel nicht verfügbar - - - - Description unavailable - Beschreibung nicht verfügbar - - - - Unknown version - Unbekannte Version - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12869,15 +13494,16 @@ schützt dich aber eine Überprüfung des Prüfsumme vor schädlichem Verhalten von Plug-ins. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins Plug-ins - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plug-ins</h1><p>Plug-ins werden von den unten angegebenen Ordnern geladen.</p><p>Aus Sicherheitsgründen werden einmal akzeptierte Plug-ins nur automatisch geladen bis sich die Retroshare-Programmdatei oder die Plug-in-Bibliothek ändern In so einem Fall muss der Benutzer sie erneut bestätigen. Nachdem das Programm gestartet ist kannst du ein Plug-in manuell aktivieren, in dem du auf "Aktivieren" klickst und Retroshare neu startest.</p><p>Wenn du deine eigenen Plug-in entwickeln willst, kontaktiere das Entwicklerteam. Sie werden sich freuen dich zu unterstützen!</p> - PopularityDefs @@ -12945,12 +13571,17 @@ schädlichem Verhalten von Plug-ins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. Die Person mit der du dich unterhälst hat den gesicherten Tunnel gelöscht. Du kannst das Chatfenster jetzt schließen. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Das Schließen dieses Fensters beendet die Unterhaltung, benachrichtigt den Gesprächspartner und löscht den verschlüsselten Tunnel. @@ -12960,12 +13591,7 @@ schädlichem Verhalten von Plug-ins. Tunnel schließen? - - Hash Error. No tunnel. - Hash-Fehler. Kein Tunnel. - - - + Can't send message, because there is no tunnel. Nachricht kann nicht gesendet werden, da kein Tunnel vorhanden. @@ -13046,7 +13672,12 @@ schädlichem Verhalten von Plug-ins. Posted - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic Thema erstellen @@ -13070,11 +13701,6 @@ schädlichem Verhalten von Plug-ins. Other Topics Andere Themen - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1><p>Der Posted-Dienst erlaubt es dir, Internetlinks zu teilen, die sich zwischen RetroShare-Netzknoten verbreiten, wie z. B. Foren und Kanäle.</p><p>Links können durch Nutzer kommentiert werden, die den Dienst abonniert haben. Ein Promotionsystem bietet auch die Möglichkeit, wichtige Links hervorzuheben.</p><p>Es gibt keine Beschränkung hinsichtlich der zu teilenden Links. Sei vorsichtig, wenn du auf sie klickst.</p><p>Posted-Links werden nach %1 Monaten gelöscht.</p> - PostedGroupDialog @@ -13329,7 +13955,7 @@ schädlichem Verhalten von Plug-ins. PrintPreview - + RetroShare Message - Print Preview RetroShare-Nachricht - Druckvorschau @@ -13685,7 +14311,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Bestätigung @@ -13695,7 +14322,7 @@ p, li { white-space: pre-wrap; } Willst du dein System diesen Link verarbeiten lassen? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13724,7 +14351,12 @@ hinzufügen und den Assistent zum Hinzufügen von Freunden zu starten. Möchtest du %1 Links verarbeiten ? - + + This file already exists. Do you want to open it ? + Diese Datei ist bereits vorhanden. Möchtest Du sie öffnen ? + + + %1 of %2 RetroShare link processed. %1 von %2 RetroShare Link verarbeitet. @@ -13891,7 +14523,7 @@ Die Zeichen <b>",|,/,\,&lt;,&gt;,*,?</b> werden durch & Die Kollektion konnte nicht verarbeitet werden - + Deny friend Freund blockieren @@ -13911,7 +14543,7 @@ Die Zeichen <b>",|,/,\,&lt;,&gt;,*,?</b> werden durch & Dateianforderung abgebrochen - + 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 PGP keys are mentioned 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 des Systems 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. @@ -13942,7 +14574,7 @@ Die Zeichen <b>",|,/,\,&lt;,&gt;,*,?</b> werden durch & Ein unerwarteter Fehler ist aufgetreten. Bitte melde 'RsInit::InitRetroShare unexpected return code %1'. - + Multiple instances Mehrere Instanzen @@ -13978,11 +14610,6 @@ Lockdatei: Tunnel is pending... Tunnelerstellung anstehend... - - - Secured tunnel established. Waiting for ACK... - Gesicherter Tunnel hergestellt. Warte auf ACK... - Secured tunnel is working. You can talk! @@ -14000,7 +14627,7 @@ Der gemeldete Fehler ist: %2 - + Click to send a private message to %1 (%2). Anklicken, um eine private Nachricht an %1 (%2) zu senden. @@ -14050,7 +14677,7 @@ Der gemeldete Fehler ist: Daten weiter - + You appear to have nodes associated to DSA keys: Du scheinst Netzknoten zu besitzen, die mit DSA-Schlüsseln verknüpft sind: @@ -14060,7 +14687,7 @@ Der gemeldete Fehler ist: DSA-Schlüssel werden von dieser Version von RetroShare noch nicht unterstützt. Alle diese Netzknoten können nicht benutzt werden. Das tut uns sehr leid. - + enabled aktiviert @@ -14070,12 +14697,12 @@ Der gemeldete Fehler ist: deaktivert - + Join chat lobby Chatlobby betreten - + Move IP %1 to whitelist IP %1 in Whitelist verschieben @@ -14090,42 +14717,49 @@ Der gemeldete Fehler ist: gesamten Bereich %1 zu Whitelist hinzufügen - + + %1 seconds ago Vor %1 Sekunden + %1 minute ago Vor %1 Minute + %1 minutes ago Vor %1 Minuten + %1 hour ago Vor %1 Stunde + %1 hours ago Vor %1 Stunden + %1 day ago Vor %1 Tag + %1 days ago Vor %1 Tagen - + Subject: Betreff: @@ -14144,6 +14778,12 @@ Der gemeldete Fehler ist: Id: ID: + + + +Security: no anonymous IDs + + @@ -14155,6 +14795,16 @@ Der gemeldete Fehler ist: 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: + + + Error + Fehler + + + + unable to parse XML file! + + QuickStartWizard @@ -14164,7 +14814,7 @@ Der gemeldete Fehler ist: 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; } @@ -14202,21 +14852,23 @@ p, li { white-space: pre-wrap; } - - + + + 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. @@ -14283,13 +14935,14 @@ p, li { white-space: pre-wrap; } - - + + + < 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; } @@ -14315,7 +14968,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Netzwerkweit @@ -14340,7 +14993,27 @@ p, li { white-space: pre-wrap; } Eingehende Ordner automatisch freigeben (Empfohlen) - + + RetroShare Page Display Style + RetroShare-Seitenanzeigestil + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + Werkzeugleistenansicht + + + + List View + Letzte Ansicht + + + <!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; } @@ -14455,7 +15128,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 KiB @@ -14491,7 +15164,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Standardmäßig erlaubt @@ -14522,8 +15195,8 @@ p, li { white-space: pre-wrap; } - Switched Off - Ausgeschaltet + Globally switched Off + Global ausgeschaltet @@ -14544,7 +15217,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page Fehler beim Speichern der Konfiguration auf der Seite @@ -14653,8 +15326,8 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1><p>Durch das aktivieren des Relays erlaubst du Retroshare als Brücke zwischen Retrosharenutzern zu fungieren, die sich nicht direkt verbinden können, z.B. weil sie sich hinter einer Firewall befinden.</p><p>Du kannst dich entscheiden als Relay zu fungieren indem du <i>Relay-Verbindungen aktivieren</i> anhakst, oder einfach nur von Relays die durch andere Teilnehmer bereitgestellt werden profitieren, indem du <i>Relay-Server benutzen</i> anhakst. Für das erstere kannst du die Bandbreite des Relays für deine Freunde, Freunde deiner Freunde oder jedermann im Retrosharenetz festlegen.</p><p>Retroshare als Relay kann die durchgeleiteten Daten nicht einsehen, da sie verschlüsselt sind und die Verbindungen durch die beiden Endpunkte authentifiziert sind.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + @@ -14678,7 +15351,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW NEU @@ -15018,7 +15691,7 @@ Wenn du glaubst dass es eine korrekte Datei ist, entferne die entsprechende Zeil RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? Bild ist zu groß zum Übertragen. @@ -15036,7 +15709,7 @@ Bild auf %1x%2 Pixel reduzieren? Rshare - + Resets ALL stored RetroShare settings. Setzt alle RetroShare-Einstellungen zurück. @@ -15081,17 +15754,17 @@ Bild auf %1x%2 Pixel reduzieren? Logdatei "%1": %2 kann nicht geöffnet werden - + built-in eingebaut - + Could not create data directory: %1 Datenverzeichnis konnte nicht erstellt werden: %1 - + Revision Revision @@ -15119,33 +15792,10 @@ Bild auf %1x%2 Pixel reduzieren? RTT-Statistiken - - SFListDelegate - - - B - B - - - - KB - KiB - - - - MB - MiB - - - - GB - GiB - - SearchDialog - + Enter a keyword here (at least 3 char long) Gib einen Suchbegriff ein (min. 3 Zeichen) @@ -15327,12 +15977,12 @@ Bild auf %1x%2 Pixel reduzieren? Auswahl herunterladen - + File Name Dateiname - + Download Herunterladen @@ -15401,7 +16051,7 @@ Bild auf %1x%2 Pixel reduzieren? Ordner öffnen - + Create Collection... Kollektion erstellen... @@ -15421,7 +16071,7 @@ Bild auf %1x%2 Pixel reduzieren? Von Kollektion herunterladen... - + Collection Kollektion @@ -15664,12 +16314,22 @@ Bild auf %1x%2 Pixel reduzieren? ServerPage - + Network Configuration Netzwerkkonfiguration - + + Network Mode + Netzwerkmodus + + + + Nat + Nat + + + Automatic (UPnP) Automatisch (UPnP) @@ -15684,7 +16344,7 @@ Bild auf %1x%2 Pixel reduzieren? Portweiterleitung von Hand - + Public: DHT & Discovery Öffentlich: DHT & Discovery @@ -15704,13 +16364,13 @@ Bild auf %1x%2 Pixel reduzieren? Darknet: keine - - + + Local Address Lokale Adresse - + External Address Externe Adresse @@ -15720,28 +16380,28 @@ Bild auf %1x%2 Pixel reduzieren? Dynamisches DNS - + Port: Port: - + Local network Lokales Netz - + External ip address finder Externer IP Adressen Finder - + UPnP UPnP - + Known / Previous IPs: Bekannte / vorherige IPs: @@ -15767,13 +16427,13 @@ Es hilft auch, wenn du dich hinter einer Firewall/VPN befindest. RetroShare erlauben, folgende Webseiten nach deiner IP zu fragen: - - + + kB/s KiB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Akzeptable Ports reichen von 10 bis 65535. Normalerweise sind Ports unter 1024 von deinem System reserviert. @@ -15783,24 +16443,12 @@ Es hilft auch, wenn du dich hinter einer Firewall/VPN befindest. Akzeptable Ports reichen von 10 bis 65535. Normalerweise sind Ports unter 1024 von deinem System reserviert. - + Onion Address Onion-Adresse - - Expected torrc Port Configuration: - Erwartete torrc-Portkonfiguration - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - + Discovery On (recommended) Discovery Ein (empfohlen) @@ -15810,17 +16458,65 @@ HiddenServicePort 9191 127.0.0.1:9191 Discovery Aus - + + Hidden - See Config + Versteckt - Siehe Konfiguration + + + + I2P Address + I2P-Adresse + + + + I2P incoming ok + I2P eingehend in Ordnung + + + + Points at: + + + + + Tor incoming ok + Tor eingehend in Ordnung + + + + incoming ok + eingehend in Ordnung + + + + Proxy seems to work. Proxy scheint zu funktionieren. - + + I2P proxy is not enabled + I2P-Proxy ist nicht aktiviert + + + + You are reachable through the hidden service. + Du bist durch den versteckten Dienst erreichbar. + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] [Versteckter Modus] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> <html><head/><body><p>Dies löscht die Liste der bekannten Adressen. Diese Funktion ist nützlich, wenn deine Adressliste aus irgendeinem Grund ungültige/irrelevante/abgelaufene Adressen enthält, von denen du nicht willst, dass sie an deine Freunde als Kontaktadressen weitergegeben werden.</p></body></html> @@ -15830,90 +16526,95 @@ HiddenServicePort 9191 127.0.0.1:9191 Leeren - + Download limit (KB/s) Download-Limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> <html><head/><body><p>Diese Downloadbegrenzung gilt für die gesamte Anwendung. In einigen Situationen, wie etwa dem Transfer vieler kleiner Dateien gleichzeitig, kann die berechnete Bandbreite jedoch nicht zuverlässig sein und der Gesamtwert den Retroshare meldet kan diese Grenze übersteigen. </p></body></html> - + Upload limit (KB/s) Upload-Limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> <html><head/><body><p>Die Uploadbegrenzung deckt die gesamte Saoftware ab. Eine zu kleine Uploadbegrenzung kann letztendlich Dienste mit niedriger Priorität (Foren, Kanäle) blockieren. Ein Minimumwert von 50KB/s wird empfohlen.</p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test Test - + Network Netzwerk - + IP Filters IP-Filter - + IP blacklist IP-Blacklist - + IP range IP-Bereich - - - + + + Status Status - - + + Origin Ursprung - - + + Reason Grund - - + + Comment Kommentar - + IPs IPs - + IP whitelist IP-Whitelist - + Manual input Manuelle Eingabe @@ -15938,12 +16639,118 @@ HiddenServicePort 9191 127.0.0.1:9191 Zu Whitelist hinzufügen - + + Hidden Service Configuration + Versteckte Dienstkonfiguration + + + + Outgoing Connections + Ausgehende Verbindungen + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + Eingehende Dienstverbindungen + + + + + Service Address + Dienstadresse + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + eingehend in Ordnung + + + + Expected Configuration: + Erwartete Konfiguration: + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range IP-Bereich - + Reported by DHT for IP masquerading Von DHT für IP-Maskierung gemeldet @@ -15966,32 +16773,33 @@ HiddenServicePort 9191 127.0.0.1:9191 Von dir hinzugefügt - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> <html><head/><body><p>IPs auf der Whitelist werden aus folgenden Quellen gesammelt: IPs eines manuell ausgetauschten Zertifikats, von dir in diesem Fenster oder in den Sicherheitseingabeelementen eingegebene IP-Bereiche.</p><p>Das Standardverhalten von RetroShare ist (1) Verbindungen zu Nachbarn mit IP-Adressen in der Whitelist immer zulassen, auch wenn die IP ebenfalls in der Blacklist eingetragen ist; (2) optional erfordern, dass die IPs in der Whitelist eingetragen sind. Du kannst dieses Verhalten für jeden Nachbarn im &quot;Details&quot;-Fenster eines jeden RetroShare-Netzknotens ändern.</p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> <html><head/><body><p>DHT erlaubt es dir Verbindungdsanfragen von deinen Freunden mit Hilfe von BitTorrent's DHT zu beantworten. Es verbessert die Konnektivität enorm. Im DHT werden keine Informationen gespeichert. Es dient nur als Proxysystem um Verbindung mit anderen Retroshare Netzknoten aufzunehmen.</p><p>Der Discovery Dienst sendet node namen und ids deiner vertreuenswürdigen Konakte an verbundene Nachbarn, um ihnen bei der Wahl neuer Freunde zu helfen. Die Freundschaft wird jedoch nie automatisch hergestellt und beide Nachbarn müssen sich immer noch gegenseitig vertrauen, um eine Verbindung zu erlauben. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> <html><head/><body><p>Die Kugel wird grün, sobald es RetroShare gelingt, deine eigene IP von den unten aufgeführten Webseiten zu bekommen - sofern du diese Aktion aktiviert hast. RetroShare nutzt auch noch andere Wege, um deine IP herauszufinden.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> <html><head/><body><p>Diese Liste wird automatisch mit Informationen aus veschiedenen Quellen gefüllt: Maskierte Nachbarn gemeldet vom DHT, von dir eingetragene IP Bereiche und von deinen Freunden übermittelte IP Bereiche. Die Grundeinstellung sollte dich gegen groß angelegte Verbindungsweiterleitungsattacken schützen.</p><p>Automatisches eintragen von markierten IPs kan die IPs deiner Freunde auf die Blacklist setzen. Benutze in diesem Fall das Kontextmenü, um sie auf die Whitelist zu verschieben.</p></body></html> - + activate IP filtering IP-Filterung aktivieren - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> <html><head/><body><p>Dies ist eine drastische Maßnahme. Sei vorsichtig. Da maskierte IPs auch echte IPs sein könnten, kann diese Option zu Verbindungsabbrüchen führen und wird dich wahrscheinlich dazu zwingen, deine Feunde auf die Whitelist zu setzen.</p></body></html> @@ -16021,110 +16829,20 @@ HiddenServicePort 9191 127.0.0.1:9191 Automatisch Bereiche DHT-maskierender IPs sperren, beginnend ab - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - <html><head/><body><p>Dieser RetroShare-Netzknoten läuft im "Versteckten Modus". Das bedeutet, er kann nur über das Tor-Netzwerk erreicht werden.</p><p>Aus diesem Grund sind einige Netzwerkeinstellungen deaktiviert.</p></body></html> - - - - Tor Configuration - Tor-Konfiguration - - - - Outgoing Tor Connections - Ausgehende Tor-Verbindungen - - - + Tor Socks Proxy Tor Socks Proxy - + Tor outgoing Okay Tor ausgehend o. k. - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - Tor-Socks-Proxy-Grundeinstellung: 127.0.0.1:9050. Lege dies in der torrc-Konfigurationsdatei fest und aktualisiere es hier. - -Du kannst dich mit versteckten Netzknoten verbinden, selbst wenn du -einen Standardknoten betreibst. Also warum nicht Tor einrichten? - - - - Incoming Tor Connections - Eingehende Tor-Verbindungen - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - <html><head/><body><p>Diese Schaltfläche simuliert eine SSL-Verbindung zu deiner Tor-Adresse durch Nutzung des Tor-Proxys. Falls dein Tor-Netzknoten erreichbar ist, sollte dies einen Fehler bei der SSL-Verbindungsaufnahme verursachen, was RetroShare wiederum als gültigen Verbindungsstatus interpretiert. Diese Operation kann außerdem diverse "Sicherheitswarnungen" hinsichlich Verbindungen von deiner lokalen Host-IP (127.0.0.1) im Nachrichten-Feed auslösen, falls du dies aktiviert hast.</p></body></html> - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - <html><head/><body><p>Dies ist deine Onion-Adresse. Sie sollte so aussehen: <span style=" font-weight:600;">[irgendwas].onion. </span>Wenn du einen versteckten Dienst mit Tor konfiguriert hast, wird die Onion-Adresse automatisch von Tor erzeugt. Du kannst sie z. B. in <span style=" font-weight:600;">/var/lib/tor/[dienst_name/hostname</span> finden.</p></body></html> - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - <html><head/><body><p>Dies ist die lokale Adresse zu welcher dein versteckter Tor Dienst auf deinem lokalen Host zeigt Meistens ist <span style=" font-weight:600;">127.0.0.1</span> der richtige Eintrag.</p></body></html> - - - - Tor incoming ok - Tor eingehend o. k. - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - Um eingehende Verbindungen zu ermöglichen musst du zuerst einen " Tor Hidden Service" einrichten - -Sobald das geschehen ist, füge die Onionadresse in obenstehendes Feld ein. -Dies ist deine externe Adresse im Tor-Netzwerk -Stelle zum Schluss noch sicher das die Ports mit der Tor Konfiguration übereinstimmen. - -Wenn beim Verbinden über Tor Probleme auftreten überprüfe auch die Tor Logdateien. - - - - Hidden - See Tor Config - Versteckt - siehe Tor-Konfiguration - - - + Tor proxy is not enabled Tor-Proxy ist nicht aktiviert - - - - You are reachable through Tor. - Du bist über Tor erreichbar. - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - Tor-Proxy ist nicht aktiviert oder defekt -Betreibst du einen versteckten Tor-Dienst? -Überprüfe deine Ports! - ServicePermissionDialog @@ -16157,7 +16875,7 @@ Betreibst du einen versteckten Tor-Dienst? ServicePermissionsPage - + ServicePermissions Serviceberechtigungen @@ -16171,16 +16889,16 @@ Betreibst du einen versteckten Tor-Dienst? Permissions Berechtigungen - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Berechtigungen</h1> <p>Berechtigungen erlauben die Kontrolle darüber, welche Dienste welchen Freunden zur Verfügung stehen</p> <p>Jeder Schalter zeigt zwei Leuchten an, welche die Aktivierung dieses Dienstes durch dich oder deinen Freund angeben. Beide müssen AN (<img height=20 src=":/images/switch11.png"/> wird angezeigt) sein, um Informationen für eine bestimmte Dienst/Freund-Kombination übertragen zu können.</p> <p>Für jeden Dienst erlaubt es der globale Schalter <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png">, einen Dienst für alle Freunde gleichzeitig AN- bzw. AUSzuschalten.</p> <p>Bitte Vorsicht: Einige Dienste sind voneinander abhängig. Beispielsweise wird das AUSschalten von "Turtle" auch alle anonymen Übertragungen, Fernchats und Fernnachrichten stoppen.</p> - hide offline Offline verbergen + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + Settings @@ -16443,7 +17161,7 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Herunterladen - + Copy retroshare Links to Clipboard RetroShare-Links in die Zwischenablage kopieren @@ -16468,7 +17186,7 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Die Links zur Verknüpfungs-Wolke hinzufügen - + RetroShare Link RetroShare-Link @@ -16484,7 +17202,7 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Dateien freigeben - + Create Collection... Kollektion erstellen... @@ -16507,7 +17225,7 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. SoundManager - + Friend Freund @@ -16533,11 +17251,12 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. + Message arrived Nachricht eingetroffen - + Download Download @@ -16546,6 +17265,11 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. Download complete Download abgeschlossen + + + Lobby + + SoundPage @@ -16606,7 +17330,7 @@ Wähle die Freunde, mit denen du den Kanal teilen willst. SplashScreen - + Load profile Profil laden @@ -16866,12 +17590,12 @@ Du kannst die Auswahl in den Optionen zurücksetzen. - + Connected Verbunden - + Unreachable Unerreichbar @@ -16887,18 +17611,18 @@ Du kannst die Auswahl in den Optionen zurücksetzen. - + Trying TCP Versuche TCP - - + + Trying UDP Versuche UDP - + Connected: TCP Verbunden: TCP @@ -16909,6 +17633,11 @@ Du kannst die Auswahl in den Optionen zurücksetzen. + Connected: I2P + Verbunden: I2P + + + Connected: Unknown Verbunden: Unbekannt @@ -16918,7 +17647,7 @@ Du kannst die Auswahl in den Optionen zurücksetzen. DHT: Kontakt - + TCP-in TCP-ein @@ -16928,7 +17657,7 @@ Du kannst die Auswahl in den Optionen zurücksetzen. TCP-aus - + inbound connection eingehende Verbindung @@ -16938,7 +17667,7 @@ Du kannst die Auswahl in den Optionen zurücksetzen. ausgehende Verbindung - + UDP UDP @@ -16952,13 +17681,23 @@ Du kannst die Auswahl in den Optionen zurücksetzen. Tor-out Tor-aus + + + I2P-in + I2P-ein + + + + I2P-out + I2P-aus + unkown unbekannt - + Connected: Tor Verbunden: Tor @@ -17175,7 +17914,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Pause @@ -17224,7 +17963,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled Alle Hinweise sind deaktiviert @@ -17365,16 +18104,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Downloads + Uploads Uploads - + Name i.e: file name @@ -17570,25 +18311,25 @@ p, li { white-space: pre-wrap; } - + Slower Langsamer - - + + Average Durchschnitt - - + + Faster Schneller - + Random Zufall @@ -17613,7 +18354,12 @@ p, li { white-space: pre-wrap; } Spezifizieren... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... In Warteschlange verschieben... @@ -17639,39 +18385,39 @@ p, li { white-space: pre-wrap; } - + Failed Fehlgeschlagen - - + + Okay OK - - + + Waiting Warten - + Downloading Laden - + Complete Vollständig - + Queued In Warteschleife @@ -17713,7 +18459,7 @@ vergleichen und fehlerhafte Blöcke erneut herunterladen. Bitte habe etwas Geduld! - + Transferring Übertragen @@ -17723,7 +18469,7 @@ Bitte habe etwas Geduld! Hochladend - + Are you sure that you want to cancel and delete these files? Soll dieser Download wirklich abgebrochen und gelöscht werden? @@ -17781,7 +18527,7 @@ Bitte habe etwas Geduld! Bitte gib einen neuen -- und gültigen -- Dateinamen ein - + Last Time Seen i.e: Last Time Receiced Data Zuletzt gesehen @@ -17887,7 +18633,7 @@ Bitte habe etwas Geduld! Zuletzt-gesehen-Spalte anzeigen - + Columns Spalten @@ -17897,7 +18643,7 @@ Bitte habe etwas Geduld! Dateiübertragungen - + Path i.e: Where file is saved Pfad @@ -17913,12 +18659,7 @@ Bitte habe etwas Geduld! Pfadspalte anzeigen - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Dateifreigabe</h1><p>Retroshare kennt zwei Arten, um Dateien zu übertragen: Direktübertragung von deinen Freunden und entfernte, anonym getunnelte Übertragungen. Zusätzlich können Dateiübertragungen von mehreren Quellen ausgehen und erlauben "Swarming" (du kannst Quelle sein während du herunter lädst)</p><p>Du kannst Dateien mittels Klick auf das <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> Symbol in der linken Seitenleiste freigeben. Diese Dateien werden im "Eigene Dateien" Reiter aufgelistet. Du kannst für jede Gruppe von Freunden festlegen, ob sie diese Dateien in ihrem "Dateien von Freunden" Reiter sehen können oder nicht.</p><p>Im Suchreiter werden Dateien aus den Freigabelisten deiner Freunde und Dateien die über anonyme Tunnel zugänglich sind aufgeführt.</p> - - - + Could not delete preview file Konnte Vorschaudatei nicht löschen @@ -17928,7 +18669,7 @@ Bitte habe etwas Geduld! Nochmal versuchen? - + Create Collection... Kollektion erstellen... @@ -17943,7 +18684,7 @@ Bitte habe etwas Geduld! Kollektion ansehen... - + Collection Kollektion @@ -17953,17 +18694,17 @@ Bitte habe etwas Geduld! Dateifreigabe - + Anonymous tunnel 0x Anonymer Tunnel 0x - + Show file list transfers Dateilistenübertragungen anzeigen - + version: Version: @@ -17999,7 +18740,7 @@ Bitte habe etwas Geduld! ORDNER - + Friends Directories Dateien von Freunden @@ -18042,7 +18783,7 @@ Bitte habe etwas Geduld! TurtleRouterDialog - + Search requests Suchanfragen @@ -18105,7 +18846,7 @@ Bitte habe etwas Geduld! Routerstatistiken - + Age in seconds Alter in Sekunden @@ -18120,7 +18861,17 @@ Bitte habe etwas Geduld! gesamt - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Unbekannter Nachbar @@ -18129,16 +18880,11 @@ Bitte habe etwas Geduld! Turtle Router Turtle-Router - - - Tunnel Requests - Tunnelanfragen - TurtleRouterStatisticsWidget - + Search requests repartition Aufteilung der Suchanfragen @@ -18337,10 +19083,20 @@ Bitte habe etwas Geduld! Anmerkung: Diese Einstellungen wirken sich nicht auf retroshare-nogui aus. Retroshare-nogui hat einen Kommandozeilenschalter zur Aktivierung der Weboberfläche. - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled Weboberfläche nicht aktiviert + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + Die Weboberfläche ist nicht aktiviert. Aktivieren Sie sie unter Einstellungen -> Weboberfläche. + failed to start Webinterface @@ -18351,11 +19107,6 @@ Bitte habe etwas Geduld! Webinterface Weboberfläche - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Weboberfläche</h1> <p>Die Weboberfläche erlaubt es, Retroshare von einem Browser aus zu kontrollieren. Mehrere Geräte können sich die Kontrolle über eine Retroshareinstanz teilen. So könnstest du eine Konversation von einem Tabletcomputer aus starten und später einen Desktopcomputer benutzen, um sie weiter zu führen.</p><p>Warnung: Mache die Weboberfläche nicht vom Interent aus zugänglich, denn es gibt keine Zugangskontrolle und keine Verschlüsselung. Wenn du die Weboberfläche über das Internet nutzen willst , benutze einen SSH Tunnel oder Proxy, um die Verbindung zu schützen.</p> - WikiAddDialog @@ -18545,7 +19296,7 @@ Bitte habe etwas Geduld! Suchen - + My Groups Eigene Gruppen @@ -18565,7 +19316,7 @@ Bitte habe etwas Geduld! Andere Gruppen - + Subscribe to Group Gruppe abonnieren diff --git a/retroshare-gui/src/lang/retroshare_el.qm b/retroshare-gui/src/lang/retroshare_el.qm index 2f5dea146b57b850284a9b090fe6f11c441073eb..adfd4cac47adcfae06479de23d1d80c9e2ffa08b 100644 GIT binary patch delta 40096 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 O7SGZl;xDtbp8o;xdGp2q delta 34580 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 VK4yN<$KCsi`9U7d{?xqte*sy2gG&Ga diff --git a/retroshare-gui/src/lang/retroshare_el.ts b/retroshare-gui/src/lang/retroshare_el.ts index 816791606..c07f856ad 100644 --- a/retroshare-gui/src/lang/retroshare_el.ts +++ b/retroshare-gui/src/lang/retroshare_el.ts @@ -1,15 +1,15 @@ - + AWidget - + version - εκδοχή + έκδοση RetroShare version - + έκδοση RetroShare @@ -21,12 +21,17 @@ Πληροφοριες σχετικα με το - + About - Πληροφοριες + Πληροφορίες - + + Copy Info + Αντιγραφή πληροφορίας + + + close κλεισιμο @@ -38,17 +43,17 @@ Score: %1 - Σκορ + Σκορ: %1 Level: %1 - Επιπεδο: %1 + Επίπεδο: %1 Have fun ;-) - Καλη διασκεδαση ;-) + Καλή διασκέδαση ;-) @@ -64,17 +69,17 @@ File type(extension): - Τυπος αρχειου(προεκταση): + Τύπος αρχείου(προεκταση): Use default command - Χρησιμοποιηση προεπιλεγμενων εντολων + Χρήση προεπιλεγμένων εντολών Command - Εντολη + Εντολή @@ -85,7 +90,8 @@ Sorry, can't determine system default command for this file - Συγγνωμη, δεν βρεθηκε μια προεπιλεγμενη εντολη για αυτο το αρχειο + Συγγνώμη, δεν βρέθηκε προεπιλεγμένη εντολή για αυτό το αρχείο + @@ -98,17 +104,17 @@ Search Criteria - Κριτηρια αναζητησης + Κριτήρια αναζήτησης Add a further search criterion. - Προσθηκη ενος κριτηριου αναζητησης + Προσθήκη κριτηρίου αναζήτησης Reset the search criteria. - Επαναφορα ενος κριτηριου αναζητησης + Επαναφορά κριτηρίου αναζήτησης @@ -128,7 +134,7 @@ Search - Αναζητηση + Αναζήτηση @@ -157,7 +163,7 @@ Family - Οικογενεια + Οικογένεια @@ -222,7 +228,7 @@ Description: - Περιγραφη: + Περιγραφή: @@ -262,22 +268,22 @@ Resize Images (< 1Mb) - Μέγεθος εικόνων (< 1Mb) + Αλλαγή μεγέθους εικόνων (< 1Mb) Resize Images (< 10Mb) - Μεγεθος εικόνων (< 10Mb) + Αλλαγή μεγέθους εικόνων (< 10Mb) Send Original Images - Αποστολη αυθεντικων εικονων + Αποστολή αυθεντικών εικόνων No Comments Allowed - Σχόλια που δεν επιτρέπονται + Δεν επιτρέπονται σχόλια @@ -287,12 +293,12 @@ Any Comments Allowed - Οποιαδήποτε σχόλια που επιτρέπονται + Επιτρέπονται όλα τα σχόλια Publish with Identity - Δημοσιεύσει με ταυτότητα + Δημοσίευση με ταυτότητα @@ -315,7 +321,7 @@ p, li { white-space: pre-wrap; }⏎ Add Photos - Προσθηκη φωτογραφιων + Προσθήκη φωτογραφιών @@ -335,7 +341,7 @@ p, li { white-space: pre-wrap; }⏎ Where were these taken? - Πού ήταν όλα αυτα; + Πού τραβήχτηκαν αυτές; @@ -359,7 +365,7 @@ p, li { white-space: pre-wrap; }⏎ TextLabel - Ετικετα κειμενου + Ετικέτα Κειμένου @@ -384,27 +390,27 @@ p, li { white-space: pre-wrap; }⏎ Where: - Όπου: + Πού: When - Όταν + Πότε Description: - Περιγραφη: + Περιγραφή: Share Options - Μοιρασμα ρυθμισεων + Ρυθμίσεις Διαμοιρασμού Comments - Σχολια + Σχόλια @@ -432,17 +438,17 @@ p, li { white-space: pre-wrap; }⏎ Add Photo - Προσθηκη φωτογραφίας + Προσθήκη φωτογραφίας Edit Photo - Επεξεργασία φωτογραφιας + Επεξεργασία φωτογραφίας Delete Photo - Διαγραφή φωτογραφιας + Διαγραφή φωτογραφίας @@ -455,7 +461,7 @@ p, li { white-space: pre-wrap; }⏎ Form - Φορμα + Φόρμα @@ -484,19 +490,19 @@ 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; font-weight:600;">Photographer :</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; font-weight:600;">Photographer :</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; font-weight:600;">Φωτογράφος :</span></p></body></html> AppearancePage - + Language - Γλωσσα + Γλώσσα @@ -511,7 +517,7 @@ p, li { white-space: pre-wrap; }⏎ Style - Στιλ + Μορφή @@ -534,26 +540,30 @@ p, li { white-space: pre-wrap; }⏎ Γραμμή εργαλείων - - + + On Tool Bar - + Στην γραμμή εργαλείων - - + On List Item - + Στην λίστα αντικειμένων - + Where do you want to have the buttons for menu? + Που θέλετε να έχετε τον πλήκτρο για το μενού? + + + + On List Ite&m - + Where do you want to have the buttons for the page? - + Που θέλετε να έχετε το πλήκτρο για την σελίδα? @@ -578,33 +588,45 @@ p, li { white-space: pre-wrap; }⏎ Choose the style of Tool Buttons. - + Επιλέξτε την εμφάνιση των πλήκτρων των εργαλείων. Choose the style of List Items. - + Επιλέξτε την εμφάνιση των αντικειμένων της λίστας. - + Icon Size = 8x8 Μέγεθος εικόνας = 8x8 - - + + Icon Size = 16x16 Μέγεθος εικόνας = 16x16 - - + + Icon Size = 24x24 Μέγεθος εικόνας = 24x24 - + + + Icon Size = 64x64 + Μέγεθος Εικόνας = 64x64 + + + + + Icon Size = 128x128 + Μέγεθος Εικόνας = 128x128 + + + Status Bar Γραμμή κατάστασης @@ -621,7 +643,7 @@ p, li { white-space: pre-wrap; }⏎ Hide Sound Status - + Απόκρυψη της κατάστασης ήχου @@ -634,8 +656,13 @@ p, li { white-space: pre-wrap; }⏎ - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 Μέγεθος εικόνας = 32x32 @@ -652,8 +679,8 @@ p, li { white-space: pre-wrap; }⏎ Warning: The services here are experimental. Please help us test them. But Remember: Any data here *WILL* be lost when we upgrade the protocols. - Προειδοποίηση: Οι υπηρεσίες εδώ είναι πειραματικές. Βοηθήστε μας δοκιμαζοντας. - Αλλά θυμηθείτε: Όλα τα δεδομένα εδώ * θα * να χαθούν όταν θα αναβαθμίσουμε τα πρωτόκολλα. + Προειδοποίηση: Οι υπηρεσίες εδώ είναι πειραματικές. Βοηθήστε μας να τις δοκιμάσουμε. + Αλλά θυμηθείτε: Όλα τα δεδομένα εδώ * θα * χαθούν όταν αναβαθμίσουμε τα πρωτόκολλα. @@ -696,7 +723,7 @@ p, li { white-space: pre-wrap; }⏎ Cancel Download - Διακοπη λυψης + Ακύρωση Λήψης @@ -714,7 +741,7 @@ p, li { white-space: pre-wrap; }⏎ Your Avatar Picture - + Η μικρογραφία σας @@ -729,18 +756,18 @@ p, li { white-space: pre-wrap; }⏎ Set your Avatar picture - + Ορισμός εικόνας Avatar Load Avatar - + Μεταφόρτωση μικρογραφίας AvatarWidget - + Click to change your avatar Πατηστε εδω για αλλαγη εικονιδιου @@ -748,7 +775,7 @@ p, li { white-space: pre-wrap; }⏎ BWGraphSource - + KB/s KB/s @@ -756,7 +783,7 @@ p, li { white-space: pre-wrap; }⏎ BWListDelegate - + N/A N/A @@ -764,20 +791,20 @@ p, li { white-space: pre-wrap; }⏎ BandwidthGraph - + RetroShare Bandwidth Usage RetroShare Χρήση εύρους ζώνης - + Show Settings Εμφανιση ρυθμισεων Reset - Επαναφορα + Επαναφορά @@ -817,7 +844,7 @@ p, li { white-space: pre-wrap; }⏎ Save - Αποθηκευση + Αποθήκευση @@ -825,14 +852,39 @@ p, li { white-space: pre-wrap; }⏎ Διακοπη - + Since: - Απο: + Από: Hide Settings - Αποκρυψη ρυθμισεων + Απόκρυψη ρυθμίσεων + + + + BandwidthStatsWidget + + + + Sum + Άθροισμα + + + + + All + Όλα + + + + KB/s + KB/s + + + + Count + Καταμέτρηση @@ -840,7 +892,7 @@ p, li { white-space: pre-wrap; }⏎ Name - Ονομα + Όνομα @@ -898,7 +950,7 @@ p, li { white-space: pre-wrap; }⏎ Recvd επιτρέπεται - + TOTALS ΣΥΝΟΛΑ @@ -913,6 +965,49 @@ p, li { white-space: pre-wrap; }⏎ Φορμα + + BwStatsWidget + + + Form + Φόρμα + + + + Friend: + Φίλος: + + + + Type: + Τύπος: + + + + Up + Πάνω + + + + Down + Κάτω + + + + Service: + Υπηρεσία: + + + + Unit: + Μονάδα: + + + + Log scale + + + ChannelPage @@ -928,7 +1023,7 @@ p, li { white-space: pre-wrap; }⏎ General - Γενικα + Γενικά @@ -941,14 +1036,6 @@ p, li { white-space: pre-wrap; }⏎ Άνοιγμα κάθε καναλιού σε νέα καρτέλα - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -959,27 +1046,42 @@ p, li { white-space: pre-wrap; }⏎ Change nick name - Αλλαγη ψευδονυμου + Αλλαγή ψευδώνυμου - + Mute participant Σίγαση συμμετέχοντα - + + Send Message + Αποστολή Μηνύματος + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Προσκληση φίλων στον προθαλαμο συνομιλιων - + Leave this lobby (Unsubscribe) Φυγη απο τον αυτό τον προθαλαμο συνομιλιων (Unsubscribe) Invite friends - Προσκληση φιλων + Πρόσκληση φίλων @@ -987,23 +1089,23 @@ p, li { white-space: pre-wrap; }⏎ Επιλέξτε τους φίλους που θελετε να προσκαλέσετε: - + Welcome to lobby %1 Καλως ηρθατε στον προθαλαμο %1 Topic: %1 - Θεμα: %1 + Θέμα: %1 - + Lobby chat Chat λόμπι - + Lobby management @@ -1035,7 +1137,7 @@ p, li { white-space: pre-wrap; }⏎ Θελετε να διαγραφθειτε απο τον προθαλαμο συνομιλιων? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1050,14 +1152,14 @@ p, li { white-space: pre-wrap; }⏎ δευτερόλεπτα - + Start private chat - + Έναρξη προσωπικής συνομιλίας - + Decryption failed. - + Αποτυχία αποκρυπτογράφησης. @@ -1067,7 +1169,7 @@ p, li { white-space: pre-wrap; }⏎ Unknown key - + Άγνωστο κλειδί @@ -1077,17 +1179,17 @@ p, li { white-space: pre-wrap; }⏎ Unknown error. - + Άγνωστο σφάλμα. Cannot start distant chat - + Αδυναμία εκκίνησης απομακρυσμένης συνομιλίας Distant chat cannot be initiated: - + Η απομακρυσμένη συνομιλία δεν δύναται να εκκινηθεί: @@ -1101,19 +1203,19 @@ p, li { white-space: pre-wrap; }⏎ ChatLobbyUserNotify - + Chat Lobbies Chat προθαλαμοι συνομιλιων You have %1 new messages - Έχετε %1 νεα μυνηματα + Έχετε %1 νέα μηνύματα You have %1 new message - Έχετε %1 νεο μυνημα + Έχετε %1 νέο μήνυμα @@ -1123,42 +1225,42 @@ p, li { white-space: pre-wrap; }⏎ %1 new message - νέο μήνυμα %1 + %1 νέο μήνυμα Unknown Lobby - + Άγνωστη Αίθουσα Remove All - Μετακινηση ολων + Αφαίρεση Όλων ChatLobbyWidget - + Chat lobbies Προθαλαμος συνομιλιων - - + + Name - Ονομα + Όνομα - + Count Υπολογισμος Topic - Θεμα + Θέμα @@ -1172,23 +1274,23 @@ p, li { white-space: pre-wrap; }⏎ - + Create chat lobby Δημιουργια προθαλαμου συνομιλιων - + [No topic provided] [Δεν υπαρχει κανενα θεμα] - + Selected lobby info Πληροφοριες επιλεγμενου προθαλαμου συνομιλιων - + Private Ιδιωτικα @@ -1197,13 +1299,18 @@ p, li { white-space: pre-wrap; }⏎ Public Δημοσια + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. Δεν έχετε εγγραφεί σε αυτο τον προθαλαμο συνομιλιων? Κάντε διπλό κλικ για να εισέλθετε και να κουβεντιάσετε. - + Remove Auto Subscribe @@ -1213,27 +1320,37 @@ p, li { white-space: pre-wrap; }⏎ - + %1 invites you to chat lobby named %2 - + %1 σας προσκαλεί στην αίθουσα συνομιλίας %2 - + Search Chat lobbies - + Αναζήτηση στις Αίθουσες Συνομιλίας - + Search Name Ανζήτηση Ονόματος - + Subscribed + Εγγεγραμμένος + + + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - + + Create a non anonymous identity and enter this lobby + + + + Columns Στήλες @@ -1248,14 +1365,14 @@ p, li { white-space: pre-wrap; }⏎ Όχι - + Lobby Name: - + Ονομασίας Αίθουσας Lobby Id: - + Αναγνωριστικό Αίθουσας: @@ -1267,6 +1384,11 @@ p, li { white-space: pre-wrap; }⏎ Type: Τυπος: + + + Security: + Ασφάλεια: + Peers: @@ -1277,19 +1399,20 @@ p, li { white-space: pre-wrap; }⏎ + TextLabel Ετικετα κειμενου - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1298,59 +1421,74 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies Chat προθαλαμοι συνομιλιων - + Leave this lobby - + Εγκατάλειψη της Αίθουσας - + Enter this lobby - + Είσοδος σε αυτή την αίθουσα Enter this lobby as... + Είσοδος σε αυτή την αίθουσα ως... + + + + Default identity is anonymous + Η προκαθορισμένη ταυτότητα είναι ανώνυμος + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. - + + No anonymous IDs + Δεν υπάρχουν ανώνυμες ταυτότητες + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Επιλέξτε μια ταυτότητα για αυτή την αίθουσα: - + Create an identity and enter this lobby - + Δημιουργήστε μια ταυτότητα και εισέλθετε σε αυτή την αίθουσα - + Show - + Εμφάνιση column - + στήλη @@ -1363,17 +1501,17 @@ Double click lobbies to enter and chat. Write a quick Message - Γραψτε ενα συντομο μυνημα + Γράψτε ένα σύντομο μήνυμα Send Mail - Αποστολη Mail + Αποστολή Mail Write Message - Εισαγωγη μυνηματος + Εισαγωγή μηνύματος @@ -1384,29 +1522,54 @@ Double click lobbies to enter and chat. Send - Αποστολη + Αποστολή Cancel - Διακοπη + Ακύρωση - + Quick Message - Συντομο μυνημα + Σύντομο μήνυμα ChatPage - + General - Γενικα + Γενικά - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Ρυθμισεις συνομιλιων @@ -1431,7 +1594,12 @@ Double click lobbies to enter and chat. Ενεργοποίηση προσαρμοσμένου μέγεθους γραμματοσειρων - + + Minimum font size + Ελάχιστο μέγεθος γραμματοσειράς + + + Enable bold Ενεργοποίηση bold @@ -1448,7 +1616,7 @@ Double click lobbies to enter and chat. Send message with Ctrl+Return - Αποστολη μυνηματος πατωντας τα πληκτρα Ctrl+Return + Αποστολή μηνύυματος πατώντας τα πλήκτρα Ctrl+Return @@ -1488,23 +1656,23 @@ Double click lobbies to enter and chat. Chat Font - Γραμματοσειρα συνομιλιας + Γραμματοσειρά συνομιλίας Change Chat Font - Αλλαγη της γραμματοσειρας συνομιλιας + Αλλαγή της γραμματοσειράς της συνομιλίας Chat Font: - Γραμματοσειρα συνομιλιας: + Γραμματοσειρά συνομιλίας: History - Ιστορικο + Ιστορικό @@ -1515,7 +1683,7 @@ Double click lobbies to enter and chat. Group chat - Ομαδα συνομιλιας + Ομαδική συνομιλία @@ -1529,25 +1697,25 @@ Double click lobbies to enter and chat. Author: - Δημιουργος: + Δημιουργός: Description: - Περιγραφη: + Περιγραφή: Private chat - Ιδιωτικη συνομιλια + Ιδιωτική συνομιλία - + Incoming - Εισερχομενα + Εισερχόμενα @@ -1567,7 +1735,7 @@ Double click lobbies to enter and chat. Incoming message - Εισερχομενα μυνηματα + Εισερχόμενο μήνυμα @@ -1582,17 +1750,27 @@ Double click lobbies to enter and chat. System - Συστημα + Σύστημα System message Μυνημα συστηματος + + + UserName + + + + + /me is sending a message with /me + + Chat - Συνομιλια + Συνομιλία @@ -1627,7 +1805,7 @@ Double click lobbies to enter and chat. Search by default - + Προκαθορισμένη Αναζήτηση @@ -1647,17 +1825,17 @@ Double click lobbies to enter and chat. Color All Text Found - + Χρωματισμός όλου του ευρεθέντος κειμένου Color of found text - + Χρώμα του ευρεθέντος κειμένου Choose color of found text - + Επιλογή χρώματος του ευρεθέντος κειμένου @@ -1672,38 +1850,38 @@ Double click lobbies to enter and chat. Default identity for chat lobbies: - + Προκαθορισμένη ταυτότητα για της αίθουσες συνομιλίας: Show Bar by default - + Προκαθορισμένη προβολή της μπάρας - + Private chat invite from - + Προσωπική πρόσκληση συνομιλίας απο Name : - + Όνομα: PGP id : - + Ταυτότητα PGP : Valid until : - + Έγκυρο μέχρι : ChatStyle - + Standard style for group chat Προκαθορισμενο στιλ για ομαδικες συνομιλιες @@ -1738,7 +1916,7 @@ Double click lobbies to enter and chat. Show Chat - Εμφανιση συνομιλιας + Εμφάνιση συνομιλίας @@ -1746,23 +1924,23 @@ Double click lobbies to enter and chat. Private Chat - Ιδιωτικη συνομιλια + Ιδιωτική συνομιλία ChatWidget - + Close Κλεισιμο - + Send - Αποστολη + Αποστολή - + Bold Bold @@ -1777,30 +1955,30 @@ Double click lobbies to enter and chat. Italic - + Attach a Picture - Ενσωματωση μιας φωτογραφιας + Επισύναψη φωτογραφίας - + Strike Ρηγμα Clear Chat History - Εκκαθαριση του ιστορικου συνομιλιων + Εκκαθάριση του ιστορικού συνομιλιών Disable Emoticons - Απενεργοποιηση εικονιδιων + Απενεργοποίηση εικονιδίων Save Chat History - Αποθηκευση του ιστορικου συνομιλιων + Αποθήκευση του ιστορικού συνομιλιών @@ -1815,7 +1993,7 @@ Double click lobbies to enter and chat. Delete Chat History - Διαγραφη του ιστορικου συνομιλιων + Διαγραφή του ιστορικού συνομιλιών @@ -1825,22 +2003,47 @@ Double click lobbies to enter and chat. Choose font - Επιλογη γραμματοσειρας + Επιλογή γραμματοσειράς Reset font to default - Επαναφορα της προεπιλεγμενης γραμματοσειρας + Επαναφορά προεπιλεγμένης γραμματοσειράς - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - γραφετε... + γράφει... - + Do you really want to physically delete the history? - Θελετε πραγματικα να διαγραφθει φυσικα το ιστορικο? + Θέλετε πραγματικά να διαγράψετε το ιστορικό; @@ -1855,15 +2058,15 @@ Double click lobbies to enter and chat. Save as... - Αποθηκευση ως... + Αποθήκευση ως... Text File (*.txt );;All Files (*) - Αρχειο κειμενου (*.txt );;Ολα τα αρχεια (*) + Αρχείο κειμένου (*.txt );;Όλα τα αρχεία (*) - + appears to be Offline. φαίνεται να είναι εκτός σύνδεσης. @@ -1888,7 +2091,7 @@ Double click lobbies to enter and chat. Είναι απασχολημένος και δεν μπορεί να απαντήσει - + Find Case Sensitively @@ -1910,27 +2113,27 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - + <b>Εύρεση Προηγούμενου </b><br/><i>Ctrl+Shift+G</i> <b>Find Next </b><br/><i>Ctrl+G</i> - <b>Βρες Επόμενο</b><br/><i>Ctrl+G</i> + <b>Εύρεση Επόμενου</b><br/><i>Ctrl+G</i> <b>Find </b><br/><i>Ctrl+F</i> - <b>Βρες</b><br/><i>Ctrl+F</i> + <b>Εύρεση</b><br/><i>Ctrl+F</i> - + (Status) (Κατάσταση) - + Set text font & color Καθορισμός γραμματοσειράς & χρώματος κειμένου @@ -1940,7 +2143,7 @@ Double click lobbies to enter and chat. Επισύναψη αρχείου - + WARNING: Could take a long time on big history. ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Μπορεί να πάρει πολλή ώρα για μεγάλο ιστορικό. @@ -1951,7 +2154,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Επισήμανση επιλεγμένου κειμένου</b><br><i>Ctrl+M</i> @@ -1963,12 +2166,12 @@ Double click lobbies to enter and chat. items found. - + στοιχεία βρέθηκαν. No items found. - + Δεν ευρέθησαν στοιχεία. @@ -1978,32 +2181,32 @@ Double click lobbies to enter and chat. Display Search Box - + Προβολή Πεδίου Αναζήτησης Search Box - + Πεδίο Αναζήτησης - + Type a message here Πληκτρολογείστε μήνυμα εδώ - + Don't stop to color after items found (need more CPU) - + στοιχεία ευρέθησαν (χρειάζεται περισσότερη Επεξεργαστική Ισχύ) - + Warning: - + Προειδοποίηση: @@ -2016,7 +2219,7 @@ Double click lobbies to enter and chat. Empty Circle - + Άδειος Κύκλος @@ -2024,7 +2227,7 @@ Double click lobbies to enter and chat. Showing details: - Εμφανιση λεπτομερειών: + Εμφάνιση λεπτομερειών: @@ -2035,7 +2238,7 @@ Double click lobbies to enter and chat. Name - Ονομα + Όνομα @@ -2046,7 +2249,7 @@ Double click lobbies to enter and chat. Personal Circles - Προσωπική κύκλοι + Προσωπικοί κύκλοι @@ -2061,7 +2264,7 @@ Double click lobbies to enter and chat. Status - Κατασταση + Κατάσταση @@ -2077,7 +2280,7 @@ Double click lobbies to enter and chat. Friends of Friends - Φίλοι των φίλων + Φίλοι φίλων @@ -2107,17 +2310,17 @@ Double click lobbies to enter and chat. Create Personal Circle - Δημιουργια προσωπικου κυκλου + Δημιουργία προσωπικού κύκλου Create External Circle - Δημιουργια εξωτερικόυ κύκλου + Δημιουργία εξωτερικού κύκλου Edit Circle - Επεξεργασια κύκλου + Επεξεργασία κύκλου @@ -2156,10 +2359,15 @@ Double click lobbies to enter and chat. Details - Λεπτομερειες + Λεπτομέρειες - + + Node info + Πληροφορίες Κόμβου + + + Peer Address Peer Διευθυνση @@ -2189,7 +2397,7 @@ Double click lobbies to enter and chat. Addresses list - Λιστα διευθυνσεων + Λίστα διευθύνσεων @@ -2218,12 +2426,12 @@ Double click lobbies to enter and chat. <html><head/><body><p align="justify">Retroshare periodically checks your friend lists for browsable files matching your transfers, to establish a direct transfer. In this case, your friend knows you're downloading the file.</p><p align="justify">To prevent this behavior for this friend only, uncheck this box. You can still perform a direct transfer if you explicitly ask for it, by e.g. downloading from your friend's file list. </p></body></html> - <html> <head/> <body> <p align="justify"> Retroshare πάντα περιοδικά φίλο σας παραθέτει για τα αρχεία με δυνατότητα περιήγησης που ταιριάζουν μετακινήσεις σας, για να διαπιστωθεί άμεση μεταφορά. Σε αυτή την περίπτωση, ο φίλος σας γνωρίζει είστε λήψη του αρχείου. </ P> <p align="justify"> Για να αποτραπεί αυτή η συμπεριφορά για το φίλο μόνο, αποεπιλέξτε αυτό το πλαίσιο. Μπορείτε ακόμα να εκτελέσετε μια άμεση μεταφορά αν ρητά ζητήσει, π.χ. με κατέβασμα αρχείων από τη λίστα φίλων σας. </ p> </ body> </ html> + <html> <head/> <body> <p align="justify"> Το Retroshare περιοδικά ελέγχει τη λιστα φιλων σας για αρχεία που ταιριάζουν στις μεταφορές σας, για να πραγματοποιήσει μια άμεση μεταφορά. Σε αυτή την περίπτωση, ο φίλος σας γνωρίζει ότι κάνετε λήψη του αρχείου. </ P> <p align="justify"> Για να αποτραπεί αυτή η συμπεριφορά μόνο για αυτό το φίλο, αποεπιλέξτε αυτό το πλαίσιο. Μπορείτε ακόμα να εκτελέσετε μια άμεση μεταφορά αν το ζητήσετε ρητά, για παράδειγμα κάνοντας λήψη από τη λίστα αρχείων του φίλου σας. </ p> </ body> </ html> Encryption - + Κρυπτογράφηση @@ -2243,32 +2451,27 @@ Double click lobbies to enter and chat. Retroshare node details - + Πληροφορίες κόμβου του Retroshare - - Location info - - - - + Node name : - + Όνομα κόμβου: Status : - + Κατάσταση: Last Contact : - + Τελευταία Επαφή: Retroshare version : - + Έκδοση του Retroshare : @@ -2287,6 +2490,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2309,12 +2517,12 @@ Double click lobbies to enter and chat. <p>This certificate contains: - + <p>Αυτό το πιστοποιητικό περιλαμβάνει: <li>a <b>node ID</b> and <b>name</b> - + <li>η <b>ταυτότητα του κόμβου</b> και <b>όνομα</b> @@ -2329,7 +2537,7 @@ Double click lobbies to enter and chat. <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <p>Μπορείτε να χρησιμοποιήσετε αυτό το πιστοποιητικό για να κάνετε νέους φίλους. Στείλτε το με email ή δώστε το σε αυτούς αυτοπροσώπως.</p> @@ -2342,7 +2550,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2354,12 +2562,12 @@ Double click lobbies to enter and chat. with - + με external signatures</li> - + εξωτερικές υπογραφές</li> @@ -2372,20 +2580,10 @@ Double click lobbies to enter and chat. Add a new Friend - Προσθήκη φίλου + Προσθήκη νέου φίλου - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Αυτός ο οδηγός θα σας βοηθήσει να συνδεθείτε με το φίλο σας (ες) στο RetroShare δίκτυο <br>Αυτοί οι τρόποι είναι δυνατόν να γίνει αυτό: - - - - &Enter the certificate manually - & Εισάγετε το πιστοποιητικό, χειροκίνητα - - - + &You get a certificate file from your friend & Μπορείτε να πάρετε ένα αρχείο πιστοποιητικού από το φίλο σας @@ -2395,19 +2593,7 @@ Double click lobbies to enter and chat. &Δημιουργια φίλου με επιλεγμένους φίλους από τους φίλους μου - - &Enter RetroShare ID manually - & Εισάγωγη το ID του RetroShare ID με μη αυτόματο τρόπο - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - & Αποστολη πρόσκλησης μέσω Email -(αυτος/η λαμβάνει ένα email με οδηγίες πώς να κατεβασει το RetroShare) - - - + Text certificate Πιστοποιητικό κείμενο @@ -2417,13 +2603,8 @@ Double click lobbies to enter and chat. Χρησιμοποιήστε αναπαράσταση σε μορφή κειμένου των πιστοποιητικών PGP. - - The text below is your PGP certificate. You have to provide it to your friend - Το παρακάτω κείμενο είναι το πιστοποιητικό σας PGP. Πρέπει να δώσετε στο φίλο σας - - - - + + Include signatures Περιλαμβάνουν υπογραφές @@ -2444,11 +2625,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below - Παρακαλώ, επικολλήστε το πιστοποιητικό PGP των φίλωνς σας στο παρακάτω πλαίσιο + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files Αρχεία πιστοποιητικού @@ -2485,12 +2671,12 @@ Double click lobbies to enter and chat. Friends of friends - Φίλοι των φίλων + Φίλοι φίλων Select now who you want to make friends with. - Επιλέξτε τώρα που θέλετε να κάνετε τους φίλους με. + Τώρα επιλέξτε με ποιούς θέλετε να γίνεται φίλος/η. @@ -2529,8 +2715,48 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + Το RetroShare είναι καλύτερο με Φίλους + + + + Invite your Friends from other Networks to RetroShare. + Προσκαλέστε τους φίλους σας από άλλα Δίκτυα στο RetroShare. + + + + GMail + GMail + + + + Yahoo + Yahoo + + + + Outlook + Outlook + + + + AOL + AOL + + + + Yandex + Yandex + + + + Email + + + + Invite Friends by Email - Προσκληση φιλων μεσω Email + Πρόσκληση φίλων μέ Email @@ -2554,10 +2780,10 @@ Double click lobbies to enter and chat. - + Friend request - Αίτημα φίλου + Αίτημα φιλίας @@ -2568,63 +2794,104 @@ Double click lobbies to enter and chat. - + Peer details Peer λεπτομέρειες - - + + Name: - Ονομα: + Όνομα: - - + + Email: Email: - - - Location: - Τοπος: + + Node: + Κόμβος: - + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + + Location: + Τοποθεσία: + + + - + Options Επιλογές - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + Εισάγεται το πιστοποιητικό χειρονακτικός + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: Προσθηκη φίλου στην Ομάδα: - - + + Authenticate friend (Sign PGP Key) Έλεγχος ταυτότητας φίλου (υπογραφη PGP κλειδίου) - - + + Add as friend to connect with Πρόσθηκη ως φίλο-για να συνδεθείτε με - - + + To accept the Friend Request, click the Finish button. Για να αποδεχθείε την αίτηση του φίλου, πατήστε το πλαισιο Τέλος. - + Sorry, some error appeared - Συγνώμη, κάποιο σφαλμα εμφανίστηκε + Συγγνώμη, εμφανίστηκς κάποιο σφαλμα @@ -2634,7 +2901,7 @@ Double click lobbies to enter and chat. Make Friend - Καντε φιλους + Κάντε φίλους @@ -2642,7 +2909,7 @@ Double click lobbies to enter and chat. Λεπτομέρειες σχετικά με τον φίλο σας: - + Key validity: Ισχύς κλειδιού: @@ -2698,12 +2965,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed Η φορτωση του πιστοποιητικου απετυχε - + Cannot get peer details of PGP key %1 Οι peer λεπτομέρειες του κλειδιου PGP key %1 δεν μπορουν να παρθουν. @@ -2738,12 +3005,13 @@ Double click lobbies to enter and chat. Peer id - + + RetroShare Invitation - RetroShare Προσκληση + Πρόσκληση RetroShare - + Ultimate Τελικη @@ -2769,7 +3037,7 @@ Double click lobbies to enter and chat. - + You have a friend request from Έχετε ένα αίτημα φίλιας από @@ -2784,14 +3052,14 @@ Double click lobbies to enter and chat. Αυτός ο ομότιμος %1 δεν είναι διαθέσιμος στο δίκτυό σας - + Use new certificate format (safer, more robust) - Χρησιμοποιήση νέας μορφής πιστοποιητικού (ασφαλέστερη, πιο ισχυρή) + Χρήση νέας μορφής πιστοποιητικού (ασφαλέστερη, πιο ισχυρή) Use old (backward compatible) certificate format - Χρήσιμοποιηση παλιου πιστοποιητικόυ (συμβατή) μορφή + Χρήση παλιάς μορφής πιστοποιητικού (συμβατή) @@ -2801,7 +3069,7 @@ Double click lobbies to enter and chat. RetroShare Invite - RetroShare Προσκληση + Πρόσκληση RetroShare @@ -2882,28 +3150,42 @@ Double click lobbies to enter and chat. *** Κανένας *** - + Use as direct source, when available Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + Διεύθυνση IP + + + Recommend many friends to each others Friend Recommendations + Συστάσεις Φίλων + + + + The text below is your Retroshare certificate. You have to provide it to your friend - + Message: Μήνυμα: - + Recommend friends Προτείνετε φίλους @@ -2923,17 +3205,12 @@ Double click lobbies to enter and chat. Παρακαλώ επιλέξτε τουλάχιστον ένα φίλο ως παραλήπτη. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2946,7 +3223,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2956,8 +3233,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2967,18 +3244,18 @@ even if you don't make friends. - - + + Require whitelist clearance to connect Add IP to whitelist - + Πρόσθεση του IP στην λίστα αποδοχής - + No IP in this certificate! @@ -2988,17 +3265,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3013,7 +3290,7 @@ even if you don't make friends. Connection Progress - + Πρόοδος Σύνδεσης @@ -3038,12 +3315,12 @@ even if you don't make friends. Connect Status - + Κατάσταση Σύνδεσης Contact Result - + Αποτέλεσμα Επαφής @@ -3090,7 +3367,7 @@ even if you don't make friends. Unknown State - + Άγνωστη Κατάσταση @@ -3293,7 +3570,7 @@ even if you don't make friends. Congratulations, you are connected - + Συγχαρητήρια, είστε συνδεδεμένοι @@ -3473,7 +3750,7 @@ p, li { white-space: pre-wrap; } Searching - + Γίνεται αναζήτηση @@ -3861,7 +4138,7 @@ p, li { white-space: pre-wrap; }⏎ Ποσταρισμα μυνηματος στο φορουμ - + Forum Φορουμ @@ -3871,7 +4148,7 @@ p, li { white-space: pre-wrap; }⏎ Θέμα: - + Attach File Επισύναψη αρχείου @@ -3901,12 +4178,12 @@ p, li { white-space: pre-wrap; }⏎ Έναρξη νέας μηνυματοσειράς - + No Forum Κανενα φόρουμ - + In Reply to Απάντηση στον @@ -3944,12 +4221,12 @@ p, li { white-space: pre-wrap; }⏎ - + Send Αποστολη - + Forum Message @@ -3960,9 +4237,9 @@ Do you want to reject this message? - + Post as - + Δημοσίευση ως @@ -3995,8 +4272,8 @@ Do you want to reject this message? - Security policy: - Πολιτική ασφάλειας: + Visibility: + @@ -4009,7 +4286,22 @@ Do you want to reject this message? Ιδιωτικα (μονο με πρόσκληση) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + Ασφάλεια: + + + Select the Friends with which you want to group chat. Επιλέξτε τους φίλους με τους οποιους θέλετε να κανετε μια ομαδική συζήτηση. @@ -4019,12 +4311,22 @@ Do you want to reject this message? Προσκληση φιλων - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: Επαφες: - + Identity to use: @@ -4183,7 +4485,12 @@ Do you want to reject this message? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT απενεργοποιημενο @@ -4205,8 +4512,8 @@ Do you want to reject this message? - DHT Error - DHT Σφαλμα + No peer found in DHT + @@ -4303,7 +4610,7 @@ Do you want to reject this message? DhtWindow - + Net Status Καθαρή θέση @@ -4333,7 +4640,7 @@ Do you want to reject this message? Peer Διευθυνση - + Name Ονομα @@ -4378,7 +4685,7 @@ Do you want to reject this message? RsId - + Bucket Κουβας @@ -4404,17 +4711,17 @@ Do you want to reject this message? - + Last Sent Τελευταία αποστολη - + Last Recv Τελευταία λήψη - + Relay Mode Λειτουργία του ρελέ @@ -4449,7 +4756,22 @@ Do you want to reject this message? Εύρος ζώνης - + + IP + IP + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4471,7 +4793,7 @@ Do you want to reject this message? External IP - + Εξωτερικό IP @@ -4591,7 +4913,7 @@ Do you want to reject this message? Searching - + Γίνεται αναζήτηση @@ -4601,7 +4923,7 @@ Do you want to reject this message? offline - + εκτός σύνδεσης @@ -4611,7 +4933,7 @@ Do you want to reject this message? ONLINE - + ΣΥΝΔΕΔΕΜΕΝΟΣ @@ -4626,7 +4948,7 @@ Do you want to reject this message? Disconnected - + Αποσυνδεδεμένος @@ -4654,7 +4976,7 @@ Do you want to reject this message? Άγνωστο - + RELAY END @@ -4688,35 +5010,42 @@ Do you want to reject this message? - + %1 secs ago - + %1 δευτερόλεπτα πριν - + %1B/s + %1B/s + + + + Relays - + 0x%1 EX:0x%2 - + 0x%1 EX:0x%2 never - + ποτέ - + + + DHT DHT - + Net Status: @@ -4753,12 +5082,12 @@ Do you want to reject this message? Online: - + Συνδεδεμένοι : Offline: - + @@ -4786,12 +5115,33 @@ Do you want to reject this message? - + + Filter: + Φίλτρο: + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4925,7 +5275,7 @@ you plug it in. ExprParamElement - + to @@ -5030,7 +5380,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map Κομμάτι χάρτη @@ -5189,7 +5539,7 @@ you plug it in. C++ - + C++ @@ -5199,13 +5549,13 @@ you plug it in. C - + C FlatStyle_RDM - + Friends Directories Καταλογοι φιλων @@ -5281,90 +5631,40 @@ you plug it in. FriendList - - - Status - Κατασταση - - - - - + Last Contact Τελευταια επαφη - - - Avatar - Εικονιδιο - - - + Hide Offline Friends Απόκρυψη αποσυνδεδεμενων φιλων - - State - Κράτος + + export friendlist + - Sort by State - Ταξινόμηση κατά κράτος + export your friendlist including groups + - - Hide State - Απόκρυψη κράτους - - - - - Sort Descending Order - Φθίνουσα σειρά ταξινόμησης - - - - - Sort Ascending Order - Αύξουσα σειρά ταξινόμησης - - - - Show Avatar Column - Εμφάνιση στήλης Εικονιδιου - - - - Name - Ονομα + + import friendlist + - Sort by Name - Ταξινόμηση κατά όνομα - - - - Sort by last contact - Ταξινόμηση κατά την τελευταία επαφή - - - - Show Last Contact Column - Εμφάνιση στήλης "τελευταία επαφής" - - - - Set root is Decorated - Ορισμός της ρίζας είναι διακοσμημένος + import your friendlist including groups + + - Set Root Decorated - Σύνολο ρίζα διακοσμημένων + Show State + @@ -5373,7 +5673,7 @@ you plug it in. Εμφάνιση ομάδων - + Group Ομάδα @@ -5414,7 +5714,17 @@ you plug it in. Προσθηκη σε ομαδα - + + Search + Αναζήτηση + + + + Sort by state + + + + Move to group Μετακίνηση σε ομάδα @@ -5444,52 +5754,117 @@ you plug it in. Σύμπτυξη όλων - - + Available Διαθέσιμα - + Do you want to remove this Friend? Θέλετε να διαγραψετε αυτόν τον φίλο? - - Columns - Στήλες + + + Done! + Έγινε! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + Έγινε εισαγωγή της λίστας φίλων σας από: + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + Αρχείο XML (*.xml);;Όλα τα Αρχεία (*) + + + + + + Error + Σφάλμα + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + Το αρχείο δεν είναι αναγνώσιμο! + + + + IP - + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect - + Προσπάθεια σύνδεσης Create new group - + Δημιουργία νέας ομάδας - + Display - + Εμφάνιση @@ -5497,12 +5872,7 @@ you plug it in. - - Sort by - Ταξινόμηση κατά - - - + Node @@ -5512,19 +5882,19 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group - + Αποστολή μηνύματος σε όλη την ομάδα @@ -5541,7 +5911,7 @@ you plug it in. Send message - + Αποστολή μηνύματος @@ -5570,30 +5940,35 @@ you plug it in. Αναζητηση : - - All - Όλους + + Sort by state + - None - Κανέναν - - - Name Ονομα - + Search Friends Αναζήτηση φίλων + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message Επεξεργασια μήνυματος κατάστασης @@ -5687,12 +6062,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network Δίκτυο @@ -5703,12 +6083,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5721,7 +6096,7 @@ you plug it in. Δημιουργία νέου προφίλ - + Name Ονομα @@ -5773,7 +6148,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5788,7 +6163,7 @@ anonymous, you can use a fake email. - + Port Υποδοχη @@ -5832,28 +6207,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5875,7 +6245,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5900,12 +6270,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5921,12 +6296,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5943,7 +6323,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6053,7 +6438,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6061,12 +6451,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6082,21 +6472,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6255,27 +6630,18 @@ p, li { white-space: pre-wrap; }⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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">⏎ -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:12pt; font-weight:600;">#</span><span style=" font-size:8pt; font-weight:600;"> Comments: 0</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + - - Connect To Friends - Συνδεθείτε με τους φίλους - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6286,28 +6652,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-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-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-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">⏎ -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;">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="-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>⏎ -<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;"> Tell RetroShare about your internet connection.</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;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Choose which files you share.</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;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Get started using RetroShare.</span></p></body></html> + - - Advanced: Open Firewall Port - Για προχωρημένους: Ανοιγμα της υποδοχης του Firewall + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6315,70 +6677,37 @@ p, li { white-space: pre-wrap; }⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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">⏎ -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: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-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-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-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-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-size:12pt;"></p>⏎ -<p style=" margin-top:0px; margin-bottom:0px; marg - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-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-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-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">⏎ -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;">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="-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>⏎ -<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;"> Tell RetroShare about your internet connection.</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;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Choose which files you share.</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;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Get started using RetroShare.</span></p></body></html> + - + + Connect To Friends + Συνδεθείτε με τους φίλους + + + + Advanced: Open Firewall Port + Για προχωρημένους: Ανοιγμα της υποδοχης του Firewall + + + + Further Help and Support + Περαιτέρω βοήθεια και υποστήριξη + + + Open RS Website Ανοιγμα της RS Ιστοσελιδας @@ -6455,7 +6784,7 @@ p, li { white-space: pre-wrap; }⏎ RetroShare Support - RetroShare Υποστηριξη + Υποστηριξη RetroShare @@ -6471,88 +6800,110 @@ p, li { white-space: pre-wrap; }⏎ Στατιστικά στοιχεία του δρομολογητή - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + Προορισμός + + + + Data status + + + + + Tunnel status + + + + + Data size + Μέγεθος δεδομένων + + + + Data hash + + + + + Received + Ελήφθησαν + + + + Send + Έστάλη + + + + Branching factor + + + + + Details + + + + Unknown Peer Άγνωστο Peer + + + Pending packets + + + + + Unknown + Άγνωστο + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - Προορισμος - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - Αποστολη - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Κάντε κλικ για να συρετε τους κόμβους γύρω από εδω, και μεγεθυνση με τον τροχό του ποντικιού ή τα '+' και '-' πληκτρα - - GroupChatToaster Show Group Chat - Εμφανιση ομαδικης συνομιλιας + Εμφάνιση ομαδικής συνομιλίας @@ -6565,22 +6916,22 @@ p, li { white-space: pre-wrap; }⏎ Family - Οικογενεια + Οικογένεια Co-Workers - Συναδελφοι + Συνάδελφοι Other Contacts - Αλλες επαφες + Άλλες επαφές Favorites - Αγαπημενα + Αγαπημένα @@ -6629,12 +6980,12 @@ p, li { white-space: pre-wrap; }⏎ No one can browse this directory - Κανείς να μην περιηγηθει σε αυτόν τον κατάλογο + Κανείς δεν μπορεί να περιηγηθει σε αυτόν τον κατάλογο No one can anonymously access this directory. - Κανείς δεν μπορεί να πρόσβαση ανώνυμα αυτόν τον κατάλογο. + Κανείς δεν μπορεί να έχει πρόσβαση ανώνυμα σε αυτό τον κατάλογο. @@ -6667,7 +7018,7 @@ p, li { white-space: pre-wrap; }⏎ Form - Φορμα + Φόρμα @@ -6685,7 +7036,7 @@ p, li { white-space: pre-wrap; }⏎ Contacts: - Επαφες: + Επαφές: @@ -6726,7 +7077,7 @@ p, li { white-space: pre-wrap; }⏎ GroupTreeWidget - + Title Τίτλος @@ -6738,7 +7089,7 @@ p, li { white-space: pre-wrap; }⏎ Description - Περιγραφη + Περιγραφή @@ -6746,14 +7097,14 @@ p, li { white-space: pre-wrap; }⏎ Αναζήτηση περιγραφής - + Sort by Name Ταξινόμηση κατά όνομα Sort by Popularity - Ταξινομηση κατα δημοτικοτητα + Ταξινόμηση κατά δημοτικότητα @@ -6761,12 +7112,17 @@ p, li { white-space: pre-wrap; }⏎ Ταξινόμηση κατά το τελευταιο ποσταρισμα - - Display + + Sort by Posts - + + Display + Εμφάνιση + + + You have admin rights @@ -6779,24 +7135,24 @@ p, li { white-space: pre-wrap; }⏎ GuiExprElement - + and και and / or - και / η + και / ή or - η + ή Name - Ονομα + Όνομα @@ -6821,7 +7177,7 @@ p, li { white-space: pre-wrap; }⏎ Size - Μεγεθος + Μέγεθος @@ -6877,7 +7233,7 @@ p, li { white-space: pre-wrap; }⏎ GxsChannelDialog - + Channels Κανάλια @@ -6885,41 +7241,62 @@ p, li { white-space: pre-wrap; }⏎ Create Channel - Δημιουργια καναλιου + Δημιουργία καναλιού - + Enable Auto-Download - Ενεργοποιηση αυτοματης λυψης + Ενεργοποίηση αυτόματης λήψης - + My Channels Τα κανάλια μου - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels Εγγεγραμμένα Κανάλια Popular Channels - Δημοφιλεις καναλια + Δημοφιλή κανάλια Other Channels - Αλλα καναλια + Άλλα κανάλια - + + Select channel download directory + + + + Disable Auto-Download - Απενεργοποιηση της αυτοματης λυψης + Απενεργοποίηση της αυτόματης λήψης - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -6928,12 +7305,12 @@ p, li { white-space: pre-wrap; }⏎ Form - Φορμα + Φόρμα Download - Λυψη + Λήψη @@ -6943,7 +7320,7 @@ p, li { white-space: pre-wrap; }⏎ Open folder - + Άνοιγμα φακέλου @@ -6968,12 +7345,12 @@ p, li { white-space: pre-wrap; }⏎ Are you sure that you want to cancel and delete the file? - + Είστε βέβαιοι ότι θέλετε να ακυρώσετε και να διαγράψετε το αρχείο; Can't open folder - + Ο φάκελος δεν ανοίγει @@ -6981,7 +7358,7 @@ p, li { white-space: pre-wrap; }⏎ Form - Φορμα + Φόρμα @@ -6991,7 +7368,7 @@ p, li { white-space: pre-wrap; }⏎ Size - Μεγεθος + Μέγεθος @@ -7001,12 +7378,12 @@ p, li { white-space: pre-wrap; }⏎ Published - + Δημοσιεύτηκε Status - Κατασταση + Κατάσταση @@ -7014,7 +7391,7 @@ p, li { white-space: pre-wrap; }⏎ Create New Channel - Δημιουργια ένος νέου κανάλιυ + Δημιουργία Νέου Καναλιού @@ -7044,7 +7421,7 @@ p, li { white-space: pre-wrap; }⏎ Create - Δημιουργια + Δημιουργία @@ -7052,28 +7429,28 @@ p, li { white-space: pre-wrap; }⏎ Copy RetroShare Link - Αντιγραφη του Λινκ + Αντιγραφή του Συνδέσμου RetroShare Subscribe to Channel - Εγγραφη στο καναλι + Εγγραφή στο Κανάλι Expand - Επεκταση + Επέκταση Remove Item - Απομακρυνση στοιχειου + Απομάκρυνση στοίχειου Channel Description - Περιγραφη καναλιου + Περιγραφή Καναλιού @@ -7083,12 +7460,12 @@ p, li { white-space: pre-wrap; }⏎ New Channel - Νεο καναλι + Νέο Κανάλι Hide - Αποκρυψη + Απόκρυψη @@ -7101,7 +7478,7 @@ p, li { white-space: pre-wrap; }⏎ Download - Λυψη + Λήψη @@ -7113,12 +7490,12 @@ p, li { white-space: pre-wrap; }⏎ Comments - Σχολια + Σχόλια Copy RetroShare Link - Αντιγραφη του Λινκ + Αντιγραφή του Συνδέσμου RetroShare @@ -7139,7 +7516,7 @@ p, li { white-space: pre-wrap; }⏎ Remove Item - Απομακρυνση στοιχειου + Απομάκρυνση στοιχείου @@ -7149,7 +7526,7 @@ p, li { white-space: pre-wrap; }⏎ Files - Αρχεια + Αρχεία @@ -7159,12 +7536,12 @@ p, li { white-space: pre-wrap; }⏎ Hide - Αποκρυψη + Απόκρυψη New - Νεο + Νέο @@ -7179,12 +7556,12 @@ p, li { white-space: pre-wrap; }⏎ I like this - + Μου αρέσει I dislike this - + Δεν μου αρέσει @@ -7222,7 +7599,7 @@ p, li { white-space: pre-wrap; }⏎ Search channels - + Αναζήτηση καναλιών @@ -7237,12 +7614,12 @@ p, li { white-space: pre-wrap; }⏎ Message - Μυνημα + Μήνυμα Search Message - + Αναζήτηση Μηνύματος @@ -7252,22 +7629,22 @@ p, li { white-space: pre-wrap; }⏎ Search Filename - + Αναζήτηση Ονόματος Αρχείου No Channel Selected - Κανενα καναλι δεν επιλεχθηκε + Δεν υπάρχει επιλεγμένο κανάλι - + Disable Auto-Download - Απενεργοποιηση της αυτοματης λυψης + Απενεργοποίηση αυτόματης λήψης Enable Auto-Download - Ενεργοποιηση αυτοματης λυψης + Ενεργοποίηση αυτόματης λήψης @@ -7280,24 +7657,24 @@ p, li { white-space: pre-wrap; }⏎ Εμφάνιση αρχείων - + Feeds Feeds Files - Αρχεια + Αρχεία - + Subscribers Description: - Περιγραφη: + Περιγραφή: @@ -7326,7 +7703,7 @@ p, li { white-space: pre-wrap; }⏎ Form - Φορμα + Φόρμα @@ -7336,7 +7713,7 @@ p, li { white-space: pre-wrap; }⏎ New - Νεο + Νέο @@ -7356,7 +7733,7 @@ p, li { white-space: pre-wrap; }⏎ Comment - Σχολιο + Σχόλιο @@ -7446,25 +7823,25 @@ p, li { white-space: pre-wrap; }⏎ You need to create an Identity before you can comment - Πρέπει να δημιουργήσετε μια ταυτότητα πριν να μπορείτε να σχολιάσετε + Πρέπει να δημιουργήσετε μια ταυτότητα για να μπορείτε να σχολιάσετε GxsForumGroupDialog - + Create New Forum Δημιουργια νέου φόρουμ Forum - Φορουμ + Φόρουμ Edit Forum - Επεξεργασια του φόρουμ + Επεξεργασία του φόρουμ @@ -7484,7 +7861,7 @@ before you can comment Create - Δημιουργια + Δημιουργία @@ -7503,7 +7880,7 @@ before you can comment Remove Item - Απομακρυνση στοιχειου + Απομάκρυνση στοιχείου @@ -7518,12 +7895,12 @@ before you can comment New Forum - Νεο φορουμ + Νέο φόρουμ Hide - Αποκρυψη + Απόκρυψη @@ -7553,7 +7930,7 @@ before you can comment Remove Item - Απομακρυνση στοιχειου + Αφαίρεση στοιχείου @@ -7573,7 +7950,7 @@ before you can comment Hide - Αποκρυψη + Απόκρυψη @@ -7581,15 +7958,15 @@ before you can comment Form - Φορμα + Φόρμα - + Start new Thread for Selected Forum Έναρξη νέας μηνυματοσειράς στο επιλεγμενο φόρουμ - + Search forums Αναζήτηση στα φόρουμ @@ -7610,7 +7987,7 @@ before you can comment - + Title Τίτλος @@ -7623,13 +8000,18 @@ before you can comment - + Author Δημιουργος - - + + Save image + + + + + Loading Φορτωση @@ -7651,7 +8033,7 @@ before you can comment Download all files - Λυψη ολων των αρχειων + Λήψη όλων των αρχείων @@ -7659,14 +8041,14 @@ before you can comment Επόμενο μη αναγνωσμένο - + Search Title Αναζήτηση τίτλου Search Date - Ημερομηνία της αναζήτησης + Ημερομηνία αναζήτησης @@ -7684,17 +8066,27 @@ before you can comment Αναζήτηση περιεχομένου - + No name Δεν υπάρχει όνομα - + Reply Απάντηση + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread Έναρξη νέας μηνυματοσειράς @@ -7712,7 +8104,7 @@ before you can comment Mark as read - Σήμανση ως αναγνωσμένα + Σήμανση ως αναγνωσμένο @@ -7732,9 +8124,9 @@ before you can comment Αντιγραφη του Λινκ - + Hide - Αποκρυψη + Απόκρυψη @@ -7742,7 +8134,38 @@ before you can comment Επεκταση - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous Ανώνυμος @@ -7762,41 +8185,67 @@ before you can comment [ ... Λείπει ενα μήνυμα...] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Δεν επιλεχθηκε ενα φορουμ - + + + You cant reply to a non-existant Message - Δεν μπορείτε να απαντήσετε σε ένα μήνυμα που δεν υπαρχει + Δεν μπορείτε να απαντήσετε σε ένα μήνυμα που δεν υπάρχει + You cant reply to an Anonymous Author Δεν μπορείτε να απαντήσετε σε έναν ανώνυμο δημιουργο - + Original Message - Αυθεντικο μήνυμα + Αρχικό μήνυμα From - Απο + Από Sent - Σταλθηκε + Στάλθηκε @@ -7809,9 +8258,9 @@ before you can comment Στις % 1, %2 έγραψε: - + Forum name - + Όνομα φόρουμ @@ -7824,22 +8273,22 @@ before you can comment - + Description - Περιγραφη + Περιγραφή By - + Από - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7855,7 +8304,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums Φόρουμ @@ -7863,7 +8317,7 @@ before you can comment Create Forum - Δημιουργια του φορουμ + Δημιουργία φόρουμ @@ -7878,17 +8332,12 @@ before you can comment Popular Forums - Δημοφιλες φόρουμ + Δημοφιλή φόρουμ Other Forums - Αλλα φορουμ - - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - + Άλλα φόρουμ @@ -7912,15 +8361,15 @@ before you can comment GxsGroupDialog - - + + Name - Ονομα + Όνομα - + Add Icon - Προσθηκη εικονίδιου + Προσθήκη εικονίδιου @@ -7933,7 +8382,7 @@ before you can comment Μοιρασμα δημοσιου κλειδίου - + check peers you would like to share private publish key with Ελέγξτε τους ομοτυμους που θα θέλατε να μοιραστείτε το ιδιωτικο σας κλειδι δημοσιευσης @@ -7943,38 +8392,38 @@ before you can comment Μοιρασμα κλειδιου με - - + + Description - Περιγραφη + Περιγραφή - + Message Distribution Μήνυμα διανομής - + Public Δημοσια - - + + Restricted to Group Περιορίσμος στην ομάδα - - + + Only For Your Friends Μόνο για τους φίλους σας - + Publish Signatures - Δημοσιευση υπογραφων + Δημοσίευση υπογραφών @@ -7994,15 +8443,15 @@ before you can comment Encrypted Msgs - Κρυπτογραφημενα μηνυμάτα + Κρυπτογραφημένα μηνύματα Personal Signatures - Προσωπικες υπογραφές + Προσωπικές υπογραφές - + PGP Required PGP που απαιτούνται @@ -8018,48 +8467,88 @@ before you can comment - + Comments - Σχολια + Σχόλια - + Allow Comments Επιτρέπεται ο σχολιασμός No Comments - Οχι σχόλια + Όχι σχόλια - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - Επαφες: + Επαφές: - + Please add a Name Προσθέστε ένα όνομα - + Load Group Logo Λογότυπο ομάδας φόρτωσης - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -8069,24 +8558,24 @@ before you can comment - + Set a descriptive description here - + Info - + Πληροφορίες Comments allowed - + Τα σχόλια επιτρέπονται Comments not allowed - + Τα σχόλια δεν επιτρέπονται @@ -8096,7 +8585,7 @@ before you can comment Last Post - Τελευταιο ποστ + Τελευταία Δημοσίευση @@ -8106,7 +8595,7 @@ before you can comment Posts - + Δημοσιεύσεις @@ -8121,7 +8610,7 @@ before you can comment GxsIdLabel - + GxsIdLabel @@ -8139,7 +8628,7 @@ before you can comment Print - Εκτυπωση + Εκτύπωση @@ -8147,7 +8636,7 @@ before you can comment Προεπισκόπηση εκτύπωσης - + Unsubscribe Καταργηση εγγραφης @@ -8157,42 +8646,42 @@ before you can comment Εγγραφη - + Open in new tab - Ανοιγμα σε νεα καρτελα + Άνοιγμα σε νέα καρτέλα - + Show Details - + Εμφάνιση Λεπτομερειών Edit Details - + Επεξεργασία Λεπτομερειών Copy RetroShare Link - Αντιγραφη του Λινκ + Αντιγραφή του RetroShare Συνδέσμου Mark all as read - Επισημάνετε ολα ως αναγνωσμένα + Επισήμανση όλων ως αναγνωσμένα Mark all as unread - Σήμανση όλων ως μη αναγνωσμένων + Επισήμανση όλων ως μη αναγνωσμένων - + AUTHD AUTHD - + Share admin permissions @@ -8200,36 +8689,43 @@ before you can comment GxsIdChooser - + No Signature - + Καμία υπογραφή Create new Identity - Δημιουργια νέας ταυτότητας + Δημιουργία νέας ταυτότητας GxsIdDetails - + Loading Φορτωση Not found - + Δεν βρέθηκε No Signature + Καμία υπογραφή + + + + + + [Banned] - + Authentication @@ -8244,7 +8740,7 @@ before you can comment - + Identity&nbsp;name @@ -8259,9 +8755,9 @@ before you can comment - + [Unknown] - + [Άγνωστο] @@ -8277,6 +8773,49 @@ before you can comment Δεν υπάρχει όνομα + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8343,7 +8882,7 @@ before you can comment Search - Αναζητηση + Αναζήτηση @@ -8388,7 +8927,7 @@ before you can comment Home - Αρχικη σελιδα + Αρχική σελίδα @@ -8430,7 +8969,7 @@ before you can comment Esc - ESC + Esc @@ -8472,43 +9011,7 @@ before you can comment Πληροφοριες - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li>⏎ -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li>⏎ -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li>⏎ -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li>⏎ -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a> - - - - + Authors Δημιουργοι @@ -8520,7 +9023,7 @@ p, li { white-space: pre-wrap; }⏎ Translation - Μεταφραση + Μετάφραση @@ -8561,10 +9064,31 @@ p, li { white-space: pre-wrap; } - - Libraries + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + Libraries + Βιβλιοθήκες + HelpTextBrowser @@ -8603,9 +9127,9 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details - + Προσωπικές Λεπτομέρειες @@ -8638,78 +9162,88 @@ p, li { white-space: pre-wrap; } - - Your Avatar - Click here to change your avatar + + Last used: - + + Your Avatar + Click here to change your avatar + Το άβατάρ σας + + + Reputation Φήμη - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - + + Your opinion: + Η άποψή σας: - - Opinion - - - - - Peers - Peers - - - - Edit Reputation - Επεξεργασια φήμης - - - - Tweak Opinion - - - - - Accept (+100) + + Neighbor nodes: - Positive (+10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Negative (-10) - - - - - Ban (-100) - + + Negative + Αρνητικό - Custom - Προσαρμογη - - - - Modify + Neutral - + + Positive + Θετικό + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8748,37 +9282,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + ΟΚ + + + + Banned + + IdDialog - + New ID Νέο ID - + + All Όλα - + + Reputation Φήμη - - - Todo - Todo - - Search Αναζητηση - + Unknown real name @@ -8788,80 +9343,37 @@ p, li { white-space: pre-wrap; } - + Create new Identity Δημιουργια νέας ταυτότητας - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - Peers - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - Προσαρμογη - - - - Modify - - - - + Edit identity - + Επεξεργασία Ταυτότητας Delete identity - + Διαγραφή Ταυτότητας @@ -8874,42 +9386,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Αποστολή μηνύματος - + Identity info - + Identity ID : - + Owner node name : @@ -8919,7 +9431,57 @@ p, li { white-space: pre-wrap; } Τυπος: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + Η άποψή σας: + + + + Neighbor nodes: + + + + + Negative + Αρνητικό + + + + Neutral + + + + + Positive + Θετικό + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8929,12 +9491,17 @@ p, li { white-space: pre-wrap; } Ανώνυμος - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8950,7 +9517,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8965,7 +9532,42 @@ p, li { white-space: pre-wrap; } - + + OK + ΟΚ + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8975,18 +9577,38 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar - + Το άβατάρ σας @@ -9004,7 +9626,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -9019,7 +9646,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -9029,17 +9656,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - Στήλες - - - + Distant chat refused with this person. @@ -9049,7 +9666,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -9064,29 +9681,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -9096,7 +9701,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9136,11 +9741,11 @@ p, li { white-space: pre-wrap; } New identity - + Νέα ταυτότητα - - + + To be generated @@ -9148,7 +9753,7 @@ p, li { white-space: pre-wrap; } - + @@ -9158,13 +9763,13 @@ p, li { white-space: pre-wrap; } N/A - + Edit identity - + Επεξεργασία Ταυτότητας - + Error getting key! @@ -9184,7 +9789,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9221,7 +9826,7 @@ p, li { white-space: pre-wrap; } Your Avatar Click here to change your avatar - + Το άβατάρ σας @@ -9239,7 +9844,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9307,7 +9912,7 @@ p, li { white-space: pre-wrap; } - + Copy Αντίγραφη @@ -9337,16 +9942,35 @@ p, li { white-space: pre-wrap; } Αποστολη + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Άνοιγμα αρχείου - + Open Folder Άνοιγμα φακέλου @@ -9356,7 +9980,7 @@ p, li { white-space: pre-wrap; } Επεξεργασια δικαιώματων κοινής χρήσης - + Checking... Έλεγχος... @@ -9405,7 +10029,7 @@ p, li { white-space: pre-wrap; } - + Options Επιλογές @@ -9439,12 +10063,12 @@ p, li { white-space: pre-wrap; } Οδηγός γρήγορης έναρξης - + RetroShare %1 a secure decentralized communication platform Το RetroShare %1 ειναι μια πλατφόρμα ασφαλούς αποκεντρωμένης επικοινωνίας - + Unfinished Ημιτελής @@ -9482,7 +10106,12 @@ p, li { white-space: pre-wrap; } Κοινοποιηση - + + Open Messenger + + + + Open Messages Ανοιγμα μυνηματων @@ -9532,7 +10161,7 @@ p, li { white-space: pre-wrap; } %1 νέα μηνύματα - + Down: %1 (kB/s) Κάτω: %1 (kB/s) @@ -9602,14 +10231,14 @@ p, li { white-space: pre-wrap; } - + Add Προσθηκη Statistics - + Στατιστικές @@ -9627,7 +10256,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9636,38 +10265,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose Συνθέση - - + Contacts Επαφές - - >> To - >> Να - - - - >> Cc - >> Cc - - - - >> Bcc - >> "Ιδιαίτ." - - - - >> Recommend - >> Ήθελα να συστήσω - - - + Paragraph Παράγραφος @@ -9748,7 +10356,7 @@ p, li { white-space: pre-wrap; } Υπογράμμιση - + Subject: Θέμα: @@ -9759,22 +10367,32 @@ p, li { white-space: pre-wrap; } - + Tags Ετικέτες - - Set Text color + + Address list: + + + Recommend this friend + + + + + Set Text color + Καθορίστε το χρώμα του κειμένου + Set Text background color - + Recommended Files Συνιστάμενα αρχεία @@ -9844,7 +10462,7 @@ p, li { white-space: pre-wrap; } Προσθέστε Blockquote - + Send To: Αποστολή σε: @@ -9869,47 +10487,22 @@ p, li { white-space: pre-wrap; } &Δικαιολογηση - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Γεια σας, <br>θα ήθελα να σαςσυστήσω ένα καλό φίλο μου, μπορείτε να τον εμπιστευθείτε πάρα πολύ όταν μπορείτε και με εμπιστεύεσται. <br> @@ -9935,12 +10528,12 @@ p, li { white-space: pre-wrap; } - + Save Message Αποθηκεύση μυνηματος - + Message has not been Sent. Do you want to save message to draft box? Μήνυμα δεν έχει σταλεί. @@ -9952,7 +10545,7 @@ Do you want to save message to draft box? Επικολληση του Λινκ - + Add to "To" Προσθηκη του "Σε" @@ -9972,12 +10565,7 @@ Do you want to save message to draft box? Προσθήκη ως προτείνομενο - - Friend Details - Λεπτομερειες για τον φιλο σας - - - + Original Message Αυθεντικο μήνυμα @@ -9987,19 +10575,21 @@ Do you want to save message to draft box? Απο - + + To Στον - + + Cc CC - + Sent Σταλθηκε @@ -10041,12 +10631,13 @@ Do you want to save message to draft box? Παρακαλώ εισάγετε τουλάχιστον έναν παραλήπτη. - + + Bcc Bcc - + Unknown Άγνωστο @@ -10156,7 +10747,12 @@ Do you want to save message to draft box? & Μορφή - + + Details + Λεπετομέρειες + + + Open File... Ανοιγμα αρχειου... @@ -10204,12 +10800,7 @@ Do you want to save message ? Προσθηκη επιπλεον αρχειου - - Show: - - - - + Close Κλεισιμο @@ -10219,39 +10810,64 @@ Do you want to save message ? Από: - - All - Όλους - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Ευχαριστούμε, <br> - + Distant identity: [Missing] - + [Λείπει] @@ -10267,7 +10883,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Ανάγνωση @@ -10282,7 +10918,7 @@ Do you want to save message ? Ανοιγμα μηνύματων σε - + Tags Ετικέτες @@ -10322,7 +10958,7 @@ Do you want to save message ? Ένα νέο παράθυρο - + Edit Tag Επεξεργασια ετικέτας @@ -10332,22 +10968,12 @@ Do you want to save message ? Μυνημα - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10628,7 +11254,7 @@ Do you want to save message ? MessagesDialog - + New Message Νέο μήνυμα @@ -10695,24 +11321,24 @@ Do you want to save message ? - + Tags Ετικέτες - - - + + + Inbox "Εισερχόμενα" - - + + Outbox Εξερχόμενα @@ -10724,14 +11350,14 @@ Do you want to save message ? - + Sent Σταλθηκε - + Trash Σκουπίδια @@ -10800,7 +11426,7 @@ Do you want to save message ? - + Reply to All Απάντηση σε όλους @@ -10818,12 +11444,12 @@ Do you want to save message ? - + From Απο - + Date Ημερομηνία @@ -10851,12 +11477,12 @@ Do you want to save message ? - + Click to sort by from Κάντε κλικ στο κουμπί για να ταξινομήσετε από από - + Click to sort by date Κάντε κλικ για να ταξινομήσετε κατά ημερομηνία @@ -10911,7 +11537,12 @@ Do you want to save message ? Αναζήτηση συνημμένων - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred Πρωταγωνίστησε @@ -10976,14 +11607,14 @@ Do you want to save message ? Άδειασμα απορριμάτων - - + + Drafts Σχέδια - + 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 gray star beside any message. Δεν ειναι διαθέσιμα μηνύματα με αστέρι. Τα Αστέρια σας αφήνουν να δώσει μηνύματα, ένα ειδικό καθεστώς για να τους διευκολύνετε την εύρεση. Για να πρωταγωνιστήσει ένα μήνυμα, κάντε κλικ στο φως γκρι αστέρι δίπλα σε κάθε μήνυμα. @@ -11003,7 +11634,12 @@ Do you want to save message ? Κάντε κλικ στο κουμπί για να ταξινομήσετε με βάση να - + + This message goes to a distant person. + + + + @@ -11012,18 +11648,18 @@ Do you want to save message ? Σύνολο: - + Messages - + Μηνύματα - + Click to sort by signature - + This message was signed and the signature checks @@ -11033,15 +11669,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -11064,7 +11695,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link Επικολληση του Λινκ @@ -11098,7 +11744,7 @@ Do you want to save message ? - + Expand Επεκταση @@ -11141,7 +11787,7 @@ Do you want to save message ? <strong>ΝΑΤ:</strong> - + Network Status Unknown Κατάσταση δικτύου άγνωστη @@ -11185,26 +11831,6 @@ Do you want to save message ? Forwarded Port Προωθημενη υποδοχη - - - OK | RetroShare Server - OK | RetroShare Διακομιστης - - - - Internet connection - Σύνδεση με το Διαδικτυο - - - - No internet connection - Καμμια συνδεση με το διαδικτυο - - - - No local network - Κανενα τοπικο δικτυο - NetworkDialog @@ -11318,7 +11944,7 @@ Do you want to save message ? Peer ID - + Deny friend Αρνησει φίλου @@ -11383,7 +12009,7 @@ For security, your keyring was previously backed-up to file Δεν είναι δυνατή η δημιουργία αντιγράφων ασφαλείας αρχείων. Έλεγχος για τα δικαιώματα στον κατάλογο PGP, χώρο στο δίσκο, κλπ. - + Personal signature Προσωπική υπογραφή @@ -11450,7 +12076,7 @@ Right-click and select 'make friend' to be able to connect. τον εαυτό σας - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Ασυνέπεια δεδομένων στην κλειδοθήκη. Αυτό είναι πιθανότατα ένα bug. Επικοινωνήστε με τους προγραμματιστές. @@ -11465,7 +12091,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11485,12 +12111,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11512,7 +12138,7 @@ Right-click and select 'make friend' to be able to connect. Search name - + Αναζήτηση ονόματος @@ -11520,7 +12146,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11589,7 +12215,7 @@ Reported error: NewsFeed - + News Feed Ειδησεογραφία @@ -11608,18 +12234,13 @@ Reported error: This is a test. Αυτό είναι μια δοκιμη. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed Ειδησεογραφία - + Newest on top @@ -11628,6 +12249,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11771,7 +12397,12 @@ Reported error: Αναβοσβήνει - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left Πάνω αριστερά @@ -11795,11 +12426,6 @@ Reported error: Notify Κοινοποιηση - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11849,7 +12475,7 @@ Reported error: NotifyQt - + PGP key passphrase PGP βασική φράση πρόσβασης @@ -11889,7 +12515,7 @@ Reported error: Αποθήκευση αρχείου ευρετηρίου... - + Test Δοκιμή @@ -11901,16 +12527,16 @@ Reported error: Unknown title - + Άγνωστος τίτλος - - + + Encrypted message - + Κρυπτογραφημένο μήνυμα - + Please enter your PGP password for key @@ -11962,24 +12588,6 @@ Gaming Mode: 25% standard traffic and TODO: reduced popups⏎ Low Traffic: 10% standard traffic and TODO: pauses all file-transfers - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -12003,12 +12611,22 @@ Low Traffic: 10% standard traffic and TODO: pauses all file-transfers - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -12043,33 +12661,51 @@ Low Traffic: 10% standard traffic and TODO: pauses all file-transfers - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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">⏎ <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;">Η υπογραφή του κλειδιου ενος φιλου είναι ένας τρόπος για να εκφράσετε την εμπιστοσύνη σας σε αυτό το φίλο, και σε αλλους φίλους σας. Εκτός αυτού, μόνο αν υπογραψετε θα λάβετε πληροφορίες για άλλους αξιόπιστους φίλους.</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;">Η υπογραφη ενος κλειδιου δεν μπορει να αναιρεθει.</p></body></html> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Υπογραφη PGP κλειδίου + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -12080,6 +12716,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Περιλαμβάνουν υπογραφές @@ -12134,7 +12775,7 @@ p, li { white-space: pre-wrap; } Η εμπιστοσύνη σας στο συγκεκριμένο ομότιμο δεν υπαρχει. - + This key has signed your own PGP key @@ -12302,18 +12943,18 @@ p, li { white-space: pre-wrap; } Send Message - + Αποστολή Μηνύματος PeerStatus - + Friends: 0/0 Φίλοι: 0/0 - + Online Friends/Total Friends Τους φίλους τους φίλους / online/σύνολο @@ -12681,7 +13322,7 @@ p, li { white-space: pre-wrap; }⏎ - + Error: instance '%1'can't create a widget @@ -12742,19 +13383,19 @@ p, li { white-space: pre-wrap; }⏎ Επιτρέπουν όλα τα plugins - - Loaded plugins - Φορτωμενα plugins - - - + Plugin look-up directories Plugin look-up καταλόγους - - Hash rejected. Enable it manually and restart, if you need. - Ο Κατακερματισμός απέρριφθηκε. Ενεργοποιήσετε με μη αυτόματο τρόπο και ξεκινήστε πάλι, αν χρειαστεί. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] + @@ -12762,27 +13403,36 @@ p, li { white-space: pre-wrap; }⏎ Δεν περεχετε αριθμός API. Παρακαλώ διαβάστε το εγχειρίδιο ανάπτυξης plugin. - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. Δεν παρεχετε αριθμός SVN. Παρακαλώ διαβάστε το εγχειρίδιο ανάπτυξης plugin. - + Loading error. Σφάλμα φόρτωσης. - + Missing symbol. Wrong version? Λείπει το σύμβολο. Λάθος έκδοση; - + No plugin object Κανένα αντικείμενο plugin - + Plugins is loaded. Plugins είναι φορτωμένο. @@ -12792,22 +13442,7 @@ p, li { white-space: pre-wrap; }⏎ Άγνωστη κατάσταση. - - Title unavailable - Ο τιτλος δεν ειναι διαθεσιμος - - - - Description unavailable - Μη διαθέσιμη περιγραφή - - - - Unknown version - Άγνωστη έκδοση - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12815,15 +13450,16 @@ malicious behavior of crafted plugins. Ελέγξτε αυτό για την ανάπτυξη των plugins. Αυτοί δεν θα ελεγχθεί για τον κατακερματισμό. Ωστόσο, υπό κανονικές συνθήκες, έλεγχος hash σας προστατεύει από κακόβουλη συμπεριφορά του δημιουργημένο plugins. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins Plugins - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - PopularityDefs @@ -12891,12 +13527,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12906,12 +13547,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12966,7 +13602,7 @@ malicious behavior of crafted plugins. Please add a Title - + Παρακαλώ προσθέστε Τίτλο @@ -12976,7 +13612,7 @@ malicious behavior of crafted plugins. Link - + Σύνδεσμος @@ -12992,7 +13628,12 @@ malicious behavior of crafted plugins. Καταχωρήθηκε - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -13016,11 +13657,6 @@ malicious behavior of crafted plugins. Other Topics Άλλα θέματα - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13042,12 +13678,12 @@ malicious behavior of crafted plugins. Create New Topic - + Δημιουργήστε Νέο Θέμα Edit Topic - + Επεξεργασία Θέματος @@ -13275,7 +13911,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview Μήνυμα του RetroShare - προεπισκόπηση εκτύπωσης @@ -13619,7 +14255,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Επιβεβαίωση @@ -13629,7 +14266,7 @@ p, li { white-space: pre-wrap; } Θέλετε αυτός ο σύνδεσμος να αντιμετωπιστεί από το σύστημά σας; - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13657,7 +14294,12 @@ and open the Make Friend Wizard. Θέλετε να επεξεργαστεί %1 συνδέσεις; - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. %1 από %2 eMule ομάδα + Ultra σύνδεσμο επεξεργασία. @@ -13824,7 +14466,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Απέτυχε να επεξεργαστεί το αρχείο συλλογής - + Deny friend Αρνησει φίλου @@ -13844,7 +14486,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Ακυρώθηκε η αίτηση αρχειου - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Αυτή η έκδοση του RetroShare χρησιμοποιεί το OpenPGP-SDK. Ως παρενέργεια, δεν χρησιμοποιεί το κοινό σύστημα διαχείρισης κλειδιών του PGP, αλλά έχει είναι δική ΜΠΡΕΛΟΚ συμμερίζονται όλες οι παρουσίες RetroShare. <br><br>Δεν φαίνεται να έχουν ένα τέτοιο μπρελόκ, αν και τα κλειδιά του PGP αναφέρονται από τους υπάρχοντες λογαριασμούς eMule ομάδα + Ultra, πιθανώς επειδή έχετε αλλάξει μόνο σε αυτήν την νέα έκδοση του λογισμικού. @@ -13875,7 +14517,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Παρουσιάστηκε μη αναμενόμενο σφάλμα. Παρακαλούμε να το αναφέρετε» RsInit::InitRetroShare απροσδόκητη επιστροφή κωδικός % 1». - + Multiple instances Πολλές εμφανίσεις @@ -13911,11 +14553,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13930,7 +14567,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13980,7 +14617,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13990,22 +14627,22 @@ Reported error is: - + enabled - + ενεργοποιημένο disabled - + απενεργοποιημένο - + Join chat lobby - + Move IP %1 to whitelist @@ -14020,49 +14657,56 @@ Reported error is: - + + %1 seconds ago - + %1 δευτερόλεπτα πριν + %1 minute ago - + %1 λεπτό πριν + %1 minutes ago - + %1 λεπτά πριν + %1 hour ago - + %1 ώρα πριν + %1 hours ago - + %1 ώρες πριν + %1 day ago - + %1 ημέρα πριν + %1 days ago %1 ημέρες πριν - + Subject: - + Θέμα: Participants: - + Συμμετέχοντες: @@ -14074,6 +14718,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -14085,6 +14735,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + Σφάλμα + + + + unable to parse XML file! + + QuickStartWizard @@ -14094,7 +14754,7 @@ Reported error is: Οδηγός γρήγορης έναρξης - + <!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; } @@ -14132,21 +14792,23 @@ p, li { white-space: pre-wrap; }⏎ - - + + + Next > Επόμενη > - - - - + + + + + Exit Έξοδος - + For best performance, RetroShare needs to know a little about your connection to the internet. Για καλύτερη απόδοση, το RetroShare πρέπει να ξέρει κατι για τη σύνδεσή σας με το διαδικτυο. @@ -14213,13 +14875,14 @@ p, li { white-space: pre-wrap; }⏎ - - + + + < Back < Πίσω - + <!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; } @@ -14246,7 +14909,7 @@ p, li { white-space: pre-wrap; }⏎ - + Network Wide Δίκτυο ευρείας @@ -14271,7 +14934,27 @@ p, li { white-space: pre-wrap; }⏎ Διαμοιράζονται αυτόματα τα Εισερχόμενα κατάλογο (συνιστάται) - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + Που θέλετε να έχετε το πλήκτρο για την σελίδα? + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14348,7 +15031,7 @@ p, li { white-space: pre-wrap; } Universal - + Παγκόσμιο @@ -14377,7 +15060,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 KB @@ -14413,7 +15096,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14444,7 +15127,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14466,7 +15149,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14486,7 +15169,7 @@ p, li { white-space: pre-wrap; } <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + <strong>Κάτω:</strong> 0.00 (kB/s) | <strong>Πάνω:</strong> 0.00 (kB/s) @@ -14575,7 +15258,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14600,7 +15283,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW ΝΈΑ @@ -14638,7 +15321,7 @@ p, li { white-space: pre-wrap; } Add IP to whitelist - + Πρόσθεση του IP στην λίστα αποδοχής @@ -14727,7 +15410,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Selected files : - + Επιλεγμένα αρχεία: @@ -14757,7 +15440,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace + - + + @@ -14800,7 +15483,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Real Size=%1 - + Πραγματικό Μέγεθος=%1 @@ -14816,7 +15499,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace What do you want to do? - + Τι θέλετε να κάνετε; @@ -14856,12 +15539,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace File already exists. - + Το αρχείο υπάρχει ήδη. <html><head/><body><p>Remove selected item from collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Del&gt;</span></p></body></html> - + <html><head/><body><p>Αφαιρέστε το επιλεγμένο στοιχείο από τη συλλογή.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Del&gt;</span></p></body></html> @@ -14912,7 +15595,7 @@ If you believe it is correct, remove the corresponding line from the file and re What do you want to do? - + Τι θέλετε να κάνετε; @@ -14932,13 +15615,13 @@ If you believe it is correct, remove the corresponding line from the file and re File already exists. - + Το αρχείο υπάρχει ήδη. RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? Η εικόνα είναι πολυ μεγαλη για μετάδοση. @@ -14956,7 +15639,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. Επαναφέρει όλα της αποθηκευμένα ρυθμίσεις της RetroShare. @@ -15001,17 +15684,17 @@ Reducing image to %1x%2 pixels? Δεν είναι δυνατή η ανοιχτό αρχείο καταγραφής '% 1': %2 - + built-in ενσωματωμένο - + Could not create data directory: %1 - + Revision @@ -15039,33 +15722,10 @@ Reducing image to %1x%2 pixels? Στατιστικές RTT - - SFListDelegate - - - B - Β - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Εισάγετε μια λέξη-κλειδί εδώ (τουλάχιστον 3 char μακρά) @@ -15246,12 +15906,12 @@ Reducing image to %1x%2 pixels? Λυψη επιλεγμενου - + File Name Ονομα αρχειου - + Download Λυψη @@ -15317,12 +15977,12 @@ Reducing image to %1x%2 pixels? Open Folder - + Άνοιγμα Φακέλου - + Create Collection... - + Δημιουργία Συλλογής ... @@ -15332,7 +15992,7 @@ Reducing image to %1x%2 pixels? View Collection... - + Εμφάνιση Συλλογής ... @@ -15340,7 +16000,7 @@ Reducing image to %1x%2 pixels? Λυψη απο συλλογη αρχειων... - + Collection Συλλογή @@ -15366,7 +16026,7 @@ Reducing image to %1x%2 pixels? IP address: - + Διεύθυνση IP: @@ -15583,12 +16243,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration Ρύθμιση δικτύου - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) Αυτόματη (UPnP) @@ -15603,7 +16273,7 @@ Reducing image to %1x%2 pixels? Με το χέρι διαβιβάση θύρας - + Public: DHT & Discovery Κοινό: DHT & ανακάλυψη @@ -15623,13 +16293,13 @@ Reducing image to %1x%2 pixels? Dark Net: καθολου - - + + Local Address Τοπική διεύθυνση - + External Address Εξωτερική διεύθυνση @@ -15639,28 +16309,28 @@ Reducing image to %1x%2 pixels? Δυναμικό DNS - + Port: Υποδοχη: - + Local network Τοπικό δίκτυο - + External ip address finder Αναζητηση εξωτερικής ip διεύθυνσης - + UPnP UPnP - + Known / Previous IPs: Γνωστα / προηγούμενα IPs: @@ -15683,13 +16353,13 @@ behind a firewall or a VPN. Επιτρέπει το eMule ομάδα + Ultra να ρωτήσω ip μου σε αυτούς τους ιστοχώρους: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15699,23 +16369,12 @@ behind a firewall or a VPN. - + Onion Address - + Διεύθυνση Onion - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15725,17 +16384,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15745,90 +16452,95 @@ HiddenServicePort 9191 127.0.0.1:9191 Εκκαθαριση - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test Δοκιμή - + Network Δίκτυο - + IP Filters - + IP blacklist - + IP range - - - + + + Status Κατασταση - - + + Origin - - + + Reason - - + + Comment Σχόλιο - + IPs - + IP whitelist - + Manual input @@ -15853,12 +16565,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15878,35 +16696,36 @@ HiddenServicePort 9191 127.0.0.1:9191 Added by you - + Προστέθηκαν από εσάς - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15936,99 +16755,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -16061,7 +16801,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -16076,13 +16816,13 @@ Check your ports! Δικαιώματα - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16346,7 +17086,7 @@ Select the Friends with which you want to Share your Channel. Λυψη - + Copy retroshare Links to Clipboard Αντιγραφη των retroshare Λινκ στο Clipboard @@ -16371,7 +17111,7 @@ Select the Friends with which you want to Share your Channel. Προσθήκη συνδέσεων σε σύννεφο - + RetroShare Link RetroShare Λινκ @@ -16387,9 +17127,9 @@ Select the Friends with which you want to Share your Channel. Προσθέστε το μερίδιο - + Create Collection... - + Δημιουργία Συλλογής ... @@ -16399,7 +17139,7 @@ Select the Friends with which you want to Share your Channel. View Collection... - + Εμφάνιση Συλλογής ... @@ -16410,9 +17150,9 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend - + Φίλος @@ -16427,26 +17167,32 @@ Select the Friends with which you want to Share your Channel. New Msg - + Νέο Μήνυμα Message - + Μήνυμα + Message arrived - + Download - + Λήψη Download complete + Η λήψη ολοκληρώθηκε + + + + Lobby @@ -16509,7 +17255,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile Φορτωση του προφιλ @@ -16751,12 +17497,12 @@ This choice can be reverted in settings. - + Connected Συνδέονται - + Unreachable Άπιαστος @@ -16772,18 +17518,18 @@ This choice can be reverted in settings. - + Trying TCP Δοκιμη του TCP - - + + Trying UDP Δοκιμη του UDP - + Connected: TCP Συνδεδεμένος: TCP @@ -16794,6 +17540,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown Συνδεδεμένος: άγνωστο @@ -16803,7 +17554,7 @@ This choice can be reverted in settings. DHT: Επικοινωνία - + TCP-in @@ -16813,7 +17564,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16823,7 +17574,7 @@ This choice can be reverted in settings. - + UDP @@ -16837,13 +17588,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -17044,7 +17805,7 @@ p, li { white-space: pre-wrap; }⏎ Subscribed - + Εγγεγραμμένος @@ -17060,7 +17821,7 @@ p, li { white-space: pre-wrap; }⏎ TBoard - + Pause Παύση @@ -17109,7 +17870,7 @@ p, li { white-space: pre-wrap; }⏎ ToasterDisable - + All Toasters are disabled @@ -17249,16 +18010,18 @@ p, li { white-space: pre-wrap; }⏎ TransfersDialog + Downloads Λήψεις + Uploads Προσθήκες - + Name i.e: file name @@ -17454,25 +18217,25 @@ p, li { white-space: pre-wrap; }⏎ - + Slower Πιο αργα - - + + Average Μέσος όρος - - + + Faster Πιο γρήγορα - + Random Τυχαία @@ -17497,7 +18260,12 @@ p, li { white-space: pre-wrap; }⏎ Καθορίσμος... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... Μετακίνηση στην ουρά... @@ -17523,39 +18291,39 @@ p, li { white-space: pre-wrap; }⏎ - + Failed Απέτυχε - - + + Okay Εντάξει - - + + Waiting Αναμονή - + Downloading Λυψη - + Complete Ολοκλήρωθηκε - + Queued Στην ουρά @@ -17591,7 +18359,7 @@ Try to be patient! Το RetroShare θα ζητήσει έναν λεπτομερή χάρτη των δεδομένων? θα συγκρίνει και θα ακυρώνει χαλασμένους τομείς, και να κατεβάσετε ξανά προσπαθήστε να είστε υπομονετικοί! - + Transferring Μεταφερεται @@ -17601,7 +18369,7 @@ Try to be patient! Φόρτωμα - + Are you sure that you want to cancel and delete these files? Είστε βέβαιοι ότι θέλετε να ακυρώσετε και να διαγράψετε αυτά τα αρχεία? @@ -17659,7 +18427,7 @@ Try to be patient! Παρακαλούμε εισάγετε ένα νέο--και έγκυρο--όνομα αρχείου - + Last Time Seen i.e: Last Time Receiced Data @@ -17697,12 +18465,12 @@ Try to be patient! Speed - + Ταχύτητα Show Speed Column - + Εμφάνιση της Στήλης Ταχύτητας @@ -17717,7 +18485,7 @@ Try to be patient! Sources - + Πηγές @@ -17765,7 +18533,7 @@ Try to be patient! - + Columns Στήλες @@ -17775,7 +18543,7 @@ Try to be patient! - + Path i.e: Where file is saved Διαδρομή @@ -17791,12 +18559,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17806,9 +18569,9 @@ Try to be patient! - + Create Collection... - + Δημιουργία Συλλογής ... @@ -17818,10 +18581,10 @@ Try to be patient! View Collection... - + Εμφάνιση Συλλογής ... - + Collection Συλλογή @@ -17831,19 +18594,19 @@ Try to be patient! Κοινή χρήση αρχείων - + Anonymous tunnel 0x - + Show file list transfers - + version: - + έκδοση: @@ -17877,7 +18640,7 @@ Try to be patient! DIR - + Friends Directories Καταλογοι φιλων @@ -17920,7 +18683,7 @@ Try to be patient! TurtleRouterDialog - + Search requests Αιτήσεις αναζήτησης @@ -17983,7 +18746,7 @@ Try to be patient! Στατιστικά στοιχεία του δρομολογητή - + Age in seconds Ηλικία σε δευτερόλεπτα @@ -17998,7 +18761,17 @@ Try to be patient! συνολικά - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Άγνωστο Peer @@ -18007,16 +18780,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition Αναζήτηση αιτήσεων κατανομή @@ -18192,7 +18960,7 @@ Try to be patient! Web parameters - + Παράμετροι δικτύου @@ -18215,10 +18983,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18229,11 +19007,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18423,7 +19196,7 @@ Try to be patient! Αναζητηση - + My Groups Οι ομάδες μου @@ -18443,7 +19216,7 @@ Try to be patient! Άλλες ομάδες - + Subscribe to Group Εγγραφείτε στην ομάδα @@ -18858,7 +19631,7 @@ Try to be patient! Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + Εικόνες (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_es.qm b/retroshare-gui/src/lang/retroshare_es.qm index 04aca6a9371d4c1dfb32958357a76a217b904258..3877042c7996f7948ab901f90c31536a34aeb937 100644 GIT binary patch delta 72962 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 delta 45933 zcmXV&cR)|y8^@n>?>YC}dq2u3n?%`LC3{q;kc^O#RVdjRg+3@03CYfu8KUgW3T0$u zlaW2L!q>|0>D-@xUiWi-#=U1e$`bqxzUIH3kX=BnyARnN)Ot0LeUPt^ zV?eDx3qW!Kwe}YPxf`ez%LAC@Kfqf4#S?!(wMqt{Ho#ip4jvKvL1oEtLH>I$vNh1lj|6#93uF&~ z8P5fIQ5ob|pcQk?c(5Nxt-gYENI!#HN+8dG(tV>KfA;|S5!l?~_k9G_7VntLAY0)b z@!=p_+avLN-ev;W9|W~dN#qw~Q-GRffX~}3sMhI?oQvnD05r7(W^48_4)$FTRQ$aG z9C0+EYFGRLUr?5=MdBK8d4kLZl7>TB z%nKI<`EVQLGvFU^Bs_wEj+uu{2D#T|fUdc~)>D9P%Ryd%Q`0>K=l`^WI3P1|NP75# z+-8CxoBIYC2JA{8Ku;XTE@uRZZ)HJRp^Kne3V)zy7LZF-0ebBKWe6^|J{Lf4+}~iE z-GXd3-VmN=5qLvLwdQ?*{tI#a^?MKCyA*h^3NRoT*gl-gf%Sk+@x$Oo)Houu5 ze;W!gBpqPxAwm9cB*17lkV^-E)E~E1omC)>EC6!xvY_g7Q3HpwY!c*AM98Xy5@Cfv&`h+RX*2s|C=6UBE}mKsQ7J z#10iCMH>WZo~S4_c=hC;CW&baApE z+gAWI$rmJGK=(16(@#JTcLH*z7cvib2W}xGzw{002?}&nM}x5!1bOqif~wUopqKDB z^7{hKp`f(P2YRh0D3d>ex%hw=*y9Nt!YBpk?ZvnQ@XLzX?XjRtx*4?l&tT1)2HQ9o z^vM=vwiOIESO3qe2InRTDxGme@q1O?1n9lNAom@F^N$DAy{W-vodntbN*yx=&Rc8eG zz3;%roC8)FKZoS^@xp>r(EgWo2R11h5wMK zN8knHYhE-O*s4Mxck#ix>Irfi^aE`%yxKv4$l z@FzR*d}mM{ZlVA01X`D4Kr2iHZN)Jl;X6V9SO~P<4naO_D3oZB2khKQC~>47fGk0Y z>`;(nDuZRxOkiGSPq4g$TkPyrDB0vEkdt%3>I!a^XDg9Ufjv0~mCnV2G-Lx*@khUK ze)z6PfrFt{olY)ZETqF;w~=&157p@!FFP)=0_`&=7fffv9Y zZ0Ary_>2H@?h({0b{?%tLOrzc$D zTXlwd8BUoWqWwVI9)SAAyQl7KgKfhE&2-Wq zsE^x*wzG%&8TiI_gQ0#7-eJ4d&;Uaxa5D??nVq14+Y69u&NApUS5R4HFUUQUpkady zU>hz$Q}Q1un=%A>=WuW=!V8x)aB_VP%5PU_k@f-&oh!7SR^1Fz3l&;NGy?h2SZM$8 zIj{*5xD-dZ?K!w$Y)IQjg3GO&04*ki%e{CYU7QW39|hNmXlkdP2G`|is48uQ&O0+e z4x0sCR%QS|w4j{dOOVz*D9Bug2=bu|z`d^dB!FE7a6kSJW4)Pz$}$z)-^lud#*ISV}N&jp(5C8#XRG5GHRcs5@Fu;-jvA8=-KBK&cGRHLT|w^B z2F%6(!3+9BcNzwAR5o-EJPBm;4THaz3(6kO&^_1n=4 zc&$7Gk~AN@lETq2#e>)Nb|C$I3*OGRFrm2y-km!EZRQK!9;1OSn*cqX2LU&CHbc)V z#aFxvdM!k!5K$R=4=w`k^96bzjzy<*1A1S)g?@da!P%FfPsBnXT86=tDT4I!L_tQ2x?Kkd}H0eZTJqR=p+k3k(Bp5dr;za4M#ZhJH)Ycg&Im z>G(?qr-m6^)me~5t%H6m(cYMEJ%Rq`qCpuL4gJq2Vl;dV`d?@X@_-M5wEuL2)9V^s za~b+);p+D6BFO8<8+2O^{V%OSZ@3!z7X|{!O#)w=0{~y%gKy`3z;0CnUku^dtw8YI zJ`bbnq2T-Q4Va}@6ntOf3AvgeZz6;5_uc5N+QWe1g}`ULfB}JPa6k8j0b^2uzdmB{ za}q}DZos?Fg#qChE&KH|ILQVE?2JceGa8u)k|`GkoT&-WcC*25lEDqT4@4| zT#1%(q8p6v8Uif*I*g7&|9<5q1nKE$FG@mC@qU+_A?PZg`#lC@Dq)hc`WcL|jRbOg zDva4-0T7uF!KrqjBm~05DJ~$BWe|dkl02LTQ_P9+z^nCzDff$jo*4wwcVi&AuC2ix z$06(~`uZAQU`EhP;NSgW<^a?QYG=UA1PmTe+=uX?&+SNXT9S(7_7U4=VsUtpGMuL~nXL4mRwu zK`CJ`Y#cidNI^Z=vLOWM)>g1J$`i<*FOcZa4&=JgX4w8C4x~Q+!H(%0fYhl9JKvWD z;@1#%ZCea<=r`E)7%f+qcaYTE6O;uDVeb}9q4D277fVobLSg^SY)}r|g5-R>;A#T| z*{&QoV1EyvP>KJKcceIUg%7L=G6NX@wl(vHV)xL!VxzGe*$x7Z5OHyw^z%?73U zML1e77U&*)T^|?GpKv%)S_gjc1Dv#T1b8nCD#M$>DMw7Zjvj+kgK%~Gy%(f)o(l5c zx8b~nD=@wS&O7IV^mH6#O)Lqt$5zPhT>$*?YPg))02Fg454c(yEz_baaP6KS@PCUT zH>&_(eE~d-$Ojhc4|z@)1+S_IkMFHTgEI-9MLGhxe;o2FVJz2S2jsWGaBW04$nR2! zVb=h7-h2-5i-GWJBc||vOW{?L9T5EN`#~8Xb;*H`mGJu)T!4=u$1whLGrnzNCP^-_s*6;f`Z_`YhFO(-oVcz`+#q&3jexWp(S({IkF9u)!~FSx(SdR zMN}IZRw>8ZFl-k7yK+A=b za)WTYjf*4|HrRvo{4%NZW*kU$r;{q9@P{VsB~`Z-fYf0Ysn*>er^bTV`dI_dvnAC# zMuIfLmsIbHbDH*zRKMZ{N{R!i{=FH7?+-~0>lZ*vJR)|{81oN0JO>=tt;3AtibUQIFn-{L@e^{)bQ zGfH~bN0?*G5t~VlFxbs+;D*Fe$X9vK*N2WX>}WZ)W1t#mUP zybJ}$65eF!k3k?;8$$g1;DzlvNCFD+f};nKQ5JY1mdvOeVow4gzmfNG2XQ z1Tak}Q`+DSgn5t|<1lRh`dg5et!p+8s(O(b)6f9D$R#uI2bq42nC&t_RrU~b?^pm| zD`I|(A=tCIB*N(_fLe=0%ys~^>{K%E8iv=)T95?~?xEMLNfx~P4WxzxiLQl-O{MoF z`iBRorF)QtJ=cKz<&7XM?LihE@CJIv{EEa_DP8f2rh3%s!y@ z*9G|nD{>{#3sbROXkKGh0At*^15 z;&z05T5$zr_f_QUWfRD6qRG$lsFHQ}CcoB30GlzD{BDv9BrAygUT#K%aN{)j{XPYF ziFM@fTn8Y(MhWtdUZluj6G$cPC9qwN8O$hT3c#r&g35ra5^0YDb+1|y`D+PqEJTvT z{|}VtQOpJ3HjtD}6>$+RmDGJbfYv`Mnd(jk+G(9+Sq+`gXfBm9N1+At=q#1~X%Fn! zSgG75HxwR|rSgt`Kxkd5(l<{~Oa7B;&%sctNp-1C87rXuD;k`zUaH#*W5tD;QvD$O zo}&|_`g9AEC`d1m`cFX17~Nj#Kidg7yC?PE9*@e!8_72gD0JWAxmR^VeED=Pztsj2g*5HDR`3y$Zr=2Qur%PaK+H+m!%*tI4e!u_zQDH ze`(S}7obi-g51Bc6rzOyS+hh6arQ*b*Ix>meI1}MP6|1A9>}QO(iD>ukTY`ysk!qH z<6vw9L1pD#X-ds)K$gFjraYa8UagEYH4zh&FJGjoSvf$yc9y0Uf5F#-(zF5$MhjJG zxgQMoC?l=ugK@zGkk$pG z?0V>elwh3?GL4ZEeuUuSeIc#C+8fx+$I`~W*1#^Gl{Q870a!Xn+Cpyuxj#hO`tm*o zpM}!4@JImb2gNjlS}IvebU~@)`B-T;hSO}pRcY_`2wb&qqXe}PU(0@HSGiyzdi;h#v6=VD9E$=NT>T2;t!UU z&ba5}+;0~oxnHF-m^1M1d!#eB@xnJPlFnTNkl0Nr!)qa?<=>?X4J!g1{Uv3~GFH#t zO4+Siq5_g8Wt)#oMq6GeT^?Qyb@}Ro+^Ldu1xG-VT&1hD9%_PKQcf*j+!gJmn`#OM zjn$=F$7`ZNIxF3&eF~(OSEM^*>w?mDks#NZbT8)^NdFS0M=kAvuC(-| z%`GfEZj+wgLf!HAKgs-TKLuDzrTjC8fHq$%Jzu#SCAS3W-Bq*)??a^bZ?=IPb5r{4 z)CqlnD##M=OW(5lVV2uo`uQ5~=*t%Aw>O5@m*+_TJZu1-TFP|lb0ClE$t-#y$e&*b z(o*5FdMy$|y~}dxQIi3dtT)S6C@PWv;^eY-%45>FK`vimFhIf%xyrfnz^|N?ZH}R6 zG@r=TTI>VKudQ5N#eLoGxNIMdtG$7PTyLfuy50S9!xfl8-Ay+5)kAK08N=_HW#q7Ci)&lS}00k`0i{pj$t7W(G%TfOgYbba5&ll@_Uu5?WS5d`kCMdlQl|8y( z&^cq3>~U)ukWGhW&t-mC7wRQ47qbzG!TyXD1o z(Lm)S%S(Hi6F_!WEqg%F+524Je3@MV2VJ#Q#tQO?tp?tDiBY?%_ zV3?gJU+>uo8xnTQw{K&f(0!PEwFKBNq*930?3Qv<)_&u zAZMS-Pv4q=yInKO`D?cVKb$W=#}X{d_my8Uo4Qno+}Id!8`eD9(uFsujFq|3~0#{^7jDT zc0beQADu8z+5KIRUT!AH!=}kU2JQm#^q2hKb4<-PKazjlFK$9uE&myVpMP^lE^?BA zcoZ2tzmiIh5vYKE_N4M)G&pT7sbbp*=vzCg#Nyoa2&CL21*_Rkhn|0_t^0D+|F2WKI5$kUE7Q8^-_WoqwEmiSTs*aC zL&qW@!w%7=gZ2TuvZhTR$=H9AK%0I&1rU)-o7sE=I$#`ie2wXPpT2@@(;nKqrw`B$ zKGbS*A(pEu{K*lVkZBS}~GEHck0YRYr=|BKs%1L!qvZ= zy3`*B5OaXKkITj|x&!qvCxbHZ6!ol%h9>P6^&Hy=_x*P2IS&Jl$s4KX(u$xA%A?&% zq=Hl;Sx`CQLAy1@ZQTA4?Ka(f56I`?cyJH+g;d(3;|rkEjvHJvhB$5v8ADy>BrMAcd%+H>UyJ#{=0=hX#ymgN4Vr zG~jvwK-ZQuaH$pAlMots`W8sdy3j!L>2G-Ood!u*a420`P_?*2$9UxfErDXlbyUB* z-lXH9Hz=`R1o?=Ebo}Zsz#AVi*!DRcpSS_LXy($1#TV*%i%y!I3q0F`PWnqhF6b{v zwIn*NnI$M~(rIYp;{fq#)Et(a3FNc`ikD5$$yA`T`eDO?>ti}Q1jFx;IR_{+JRE6OFtT;p(2uS zn#L@gi*9$UAPd+>WA+cn#)tN1AFtyFfRB>*KN+gKA>MTAp`@Ff7R&5DcGvBH;!(aoQM8D*p6=g;D-rAQ$abh zuON52LAN$SO{mFsx~=m$pta5kDhYOi{O%jNy*0MrtgKFVG{P|ZV?(+lTtZoNHQjkM z5#-wE47v{yWHUO@U8Z!9ZEw;&vEMty%W%zjXY2H4|N5ut)}}U`l0gqmL@OShH17;53bDz zNnJ`0p51^c-8Y&t&JE<5_34qZ*#Dze`$Lb;O2MkvLV7Z#4i426K|U;(o;~;$=!sGE z-1vH!N?Fo#6R=PnP=ThG&%p9oW14Qp6s)KoO<$4=#H%XJsEKwWX9&#*tqII+JH61~ z4ofrT=tU_Ni&rxQ`PFE8u>*$RRvOaW5~RX$;)Gf2p#nI~pgtwKdr1yCB_81X;zG24^`7D*H+rJnTnv zw!Z-8x`O7UTZ5{1qSsnsVPU2Pz2=SGFs;hbYj-m7MiS}uS`6rv(*~EWLe|7BR)d;v z+T#BIY@)Y@ZvpDOhu)fr&Lv<3y_B%d~Df8XG;w}P@mp`cpQi{4If z#YCpHAkAMxZ==1C1IN?bcQM{yR)XF=i5GCmh2H(+hNYK>f|6uy76+_SMM3VKXs}=j zy*J4RNaZ8+{@Fxqt)cYcT-1asrU=q{=}@TyVEx<(m}PJ zL*E2X##Ag-khf@L@M9(Vwl_w-54zHKtvaFei4i0-Jm|YHoPr-A^nHbJfQDIutnn54 z{^dE43;hIX*?9)dwr%MLEJ8}1qUe_|7{lG4DaiHn^jnk-kb&jtucUn#EFPf$u%f|# zg)vfyQS2x`Ce?Zma+y<1+Fyi?1sao1^aPCMm~4qRKxHO(M>XxN${5xONQet#6Ei_- zvzzfYsi+OlU}~GsVCI!aG0g*4>5OAcJ7^E2TRziG*xX z4Zg7I&9LXAMiQ(31=Xx9cUHr?9k5)&>^8RpY4BWTkL5NP`c;tsxx;E&{snn%b5?6D zws2gy%IZ}0!3xqDR>#)d2>8!WtnTkmz>ke$^>&5;yZDdQ&&~ij_$q4{y&Kr=U991A zG$={?S<_zrm`-0}&Hmux9MY0Gu8#+K#s%gSk5Y?IGINg9P;mS%NWq4+i1NbNF9wM> z^rkIqdnFcVNGXF+^;tW!R{`*+cC1|lDj8jqnX6?@AU7AVPWw^KE?6l@Ev~c9Uog~C zO0q7tIJBjku`XBe3o9>X?#`_M*3@U7r_onze8ak)#Hjc4Th{dnT13yG1}``Y@{x|L zn|&d=>pHC4L>!^6W@auv;QuPKZt*z8mfcym@9jWow~O_xiOhJ$db;Bm4Oq&0`C@&* z)`Iog?0|WDZ`OOxK%kpjF`pI~guaMleer^6v;XtOZPs7MuBmw)S%1rYKpVI--`bI& zblJ#!bAF;m+>s3ej2k*?W;Un=8k&K=Y?wJ8Q?6eupb2iPpq?yXI7%w+x7o;rnE+kh zvr#*7)gLKfqwW==n(fL)6$GG0ap(F9$e%jg2Xdkygn}Hs*XGkXz<0Y)n=Vz^nr-codq%(&YqMwWln27j`PF{LRL7 z8vyd;2W-5X4&-7BHh#nyHuIrwgOd)W>eQ-bbRa&o4Pv{_5YWi;(&z~8eCBO|6InVe@q2#+Q>pZ zurA;@n}v?g#-eg(7Ixhcq)O>5>_aMQKCjt~INYY?x)=<9DoAFJ6_lr}6;w-CWahRT zK_V5|+^eA|!Pv6MqS=6jom{ryT{GY*fh?+aA0Rz4Sd;?}T~HK@>WWfK`6+_@kfXuJ zRRz`32Uyh1o2VK8V^N#`135HIkT+||qLRCy;YnoC4%R5uE@#oN@p}hQws4mnO1M4P zqM2bp9$aIK7GnO-ORiyyjxIpwaEUFtgm;|xl*QD+JH7Lo#dOBG?`$PV?M;HLO{AdW zvdrN6YJ$9Ew!s#|SWJ>5umxDR4WW@7ZatRq|c$Gi=5 zvZ*XC7h|#C-&p*7D**2jY{jobprl=7E3MFi*^FhYPhpGRs6@8<R|KUJR8X!JFG!uk1bOMR%v}6N4AsO5wVE&6eJ%n>rW@OR;W@~Y zPO?2q%c4-wnC&U9`;X5QRIA0ZBsm(NXlTijIy^^j*G5oT{(~hg!?wC=yV*WvEAE!1 zY~Ryfz#DF7`!C?@>rpIu_ep>ag@SZrsF@w?l7U*REXa?RWhpM0M(2eIDvl>ust@j0 z*JyUQHO6+Kb=cwFxH!ki?C^NpwsX6&!#jRq@VZn`8N7%c-syl-*pVHL!91W+8$q?q zOO`hI7(Qyyft~8$kF8v-*y&a_IFjZ^>~yzqP!6tV7s_k|o)O0`ntV~YT*)qO#Rw+K z%(BksqRKUoWk1@6jR+OlrLmZlTF+yb2h2s~!|F zmiIFPq<@Xsi#uz8KFwpVnjQi;@sz#q{}T;LBli9m=60QA<_ z&w&`y&ELd6-)ERF^ks$N=(K{zvu_sT(EsOuXa6Ok$QS*Q{dThkxqlh<=g@y34SmA? zjzCd)?PylC`X)%f&5AVL5vW6VLB*wtARp08k*?!VcGeZ?$q0~M^-^R#59HWbg*8|M z(6Yb6TjP1ls|x?Q9F(HLirO73Ev=IkHI`!kUzh2Mmfsurf3uWQRVM@7vs22Y;T#92 zE0u?!x_vxLsoJCvAf=L^R4rbq`WaXM?3ap7ThsxvKPlC{v3%bwRH;Ex%>LF(sWHqA zW&K}@-4VQivo=c2MmXoM042y`p$_KLaG9rJzJ&m2M80oE`?H+x3G$ z(poBB3$W68b*|!d<|vR0AC(^EaKx@1RJ<#refY9SkoL(?%snsl0h$u7^zxnu)Hhe@ zHFiHhO&g^*MVT#kiqbn3C6?h|6`yJIfb6hW`X0dSw#GfB@AY}Ws*FG;;-bwFq-A<5 z{T8dJlAlrfov(;-g0&#cTdMf(NAFs1pdfE|&EPOgvoatIw^`|P%7Abyd^Eye8Gs`q z&p)9IBq+oE-K`Ajg;##vLmAu~FW^bGGB_NEc9e(WSG3zT51Q$X9CRf01|U{DIm*!K1y&)KSsE1V3>KTet8Z3*&6TR~dVMw#$9 z3wZNPWy-2h9QrHD)B|`UlZuq-Ww54Pcv1gTucoGYj^BT(`hr!?Ff@FEJRFA*jS%5acs64Q6{OvqH9Er^GQO z+%XUMc}9s|gt1~|1EpBwVL3IFCGo{y+)7z?@Fu9$A1ZO}3$a7Gqae$yET|k>r^K!M z4z%+DCH?{mncLbbD=e~5_8YFOVnyix%l%Q-U_%*fby3!uwt`%8y0UJn8~#v?l28_h zd~tx1;ELOG@JMC-6JJcBHY%I;Gy?k4O4&LZ`+i>MD_akvu-N>oQmmB7_8pXMPdlMz zbXSm$exz*skc*4)fwH|#JAirag0$>uWqX3TCf4a@D%%eq0)Bq4l4J@1scCs7xgKUR zomVOc@0JBt!Cgt&+8dk6$}6cBHGpk&GPv`GawKI7z|`@|u^}j}dJk68?6ApX?m;EZ z4YS_U!Ae?Zj4w*9RL)%v1{m^AklvjvsI2d$q?<=M10C2_xwsY+kK-+ri$@(Wr|Ya_ z#n(d17NKNqsD;j>hoD+}q;jcr5h%B+E0?2Y;^Olaq$RzT%O?+@JQt~4zKXlRJwdtZ zxeDkIvvT$M4pdftDaE<~+ZU%?548dQY>IN@;!j{V+A8MUlh`P9VVZL5whch+@0 zPas=&RqigGfW2GWmAoa`xzM?U@+2F#(WhZbzCW&hn}JIH?QbBrd8oW-ngO!ic!Le+ z3({a~LB%h@V0<${-cdH_Ue4gGF=pjeKisEH;*?kW9D#TTDsP%$=;f58yt#*&(Ozri zeb2_I19nnA79K}gZ?f{S2k}k7T9!l+k%q~%K`Jlsi|4#C1`gqqIq$U(*dr&d zW^4i8BA%O^P*M$f$xW^Bv5HQ|d5QY-(CwPJ z&wm&%$iLn&SeVbtO^U_-|6{yd&IoKo*e}Q%Z8Z4tF0b$bmC%OAdDSRf#LW_UHD^aq zesAKo4vE+y70av7DggRx9j{&d`GS?a?zmOB|5q;M^?qO%OQj3EeiT0E=a|hKP&;%! z4!k+Ok+)pLTX%R5boy|EYtfxQk+Dp-pSLBgf&6pl?e|1ra9Y4!XH)`ay2{;4q1%3Y zh^vJUU@Uwx2YTJxUv15p2~QowsAl>{1-#{29G$1eC@ zyx#|V;8$w#f%a1{2kglQ-E;;Pv6K(K6$|j)oBMTPAj#f*NURwZlWacx$_9}710Vit zEkM~UJ|Zk0)A&$6x_}pha$QQNaPUCsdNHfmC_7ObzE6&Xp zU66OFX7GI$AB$HGDTRWh@+gBxd@7!8ZF$csk}IWk%#x-yC&M;gNax8 z?oAYwzr*?NU;BWL?#uTKMlVaM@jcTp-bjt$N&6ZD+0x(4_g%;bwxcRf=5v60Y(QdI z?ePv70o1bv5>2V+JR}Avo;Q&5u?kj=9}HfBV$w^VQW4$s$w+?q98T5E{rqUTdq8{p z@ncc_v3cc`L7NHuEanBY#ZP{&I%ZN2O9}E|a}%E78wMX&T*ar=4B&u>_~9>#ND$I8jOtPPqK0`C@saGPD1-JE0I6<##T;`di+IBS)gCv z@K>$I0kgcoUms`>5^NGw4(0PVzCP&AXYqI4W3m5VtIgj{{)UyNLjHa-x>2i^{L|}n zd_xodS>yx5`RB9#*umhyf3(D6REs(M&v}ONeMkPM2;J)DCcJ3m8*EBVSD};_irKSN zNPh$JB72p%V}x^Wfhsk9fwiBef;=EbmEy1y^7sywmi&hL--qbp11vy3S6NRlpjG#& zN&*^^NB^m+1#YKH2UH7a1WI~Mwd6Yo?CBV)mTG|Qb3L=wQh)Y>a%{0$+7c@tZH}l` z#gF967gX!E?SS@8RjqGS!yd2eYQof?~sTzd*KiGsJ0$1pmaxMj&DGkYP{G_CqSpSK4X`Rrt&0K!JX)+asE)h9 zYn0l|I}_xg1J!1876MP5t~!>(k=ff>b^6r~6OIaka^z06&C*>UTe_$&W)+`cYT>22 z?COTvOpc)J<0Qzhc2wOgwxPmVq;`6awmV~u+Qk=beD`On`?#Y(oi+<{|6tX95mo-aq84MJF%$!RSm1N7hAci zo7EYRiskpQ>I`WiK!*Ns|Dw(>gBJ9_b9H_Vj1PWAsq@ouE$ptUMwi?NWa11p z`p6F;{+|rqGdrl!FWZ6gZk!tZX&!c^cnB&>Z>Z6K-B8Vz)P)sefUHPW7uCUNw{CBB z(HnF!FVCrqM__7Z7o^7G)6qoD5oEfR8e0v6Soy0O``!|mcS&_gQZ#nMR#jJ!j`(2fX8X&c`y7fdS9I+Sbw&gOA3RF$3><=)|McwY14|1KI>aL|t zKxy7k-F*z5&*6W3gQKtD1TQ8;$7bo$Aq%Kd^;khrze4)Z<&R^pbi+J^ptMke^!x z73UuYmoF0Jjy2SiF&Ad{EXeSF^uY0*IM|yot~9N2!+=tN@`iv%UE=txk|lOF%sbGY4x^`c|NAgN7dU$-GMBRRd0VpO}9j*dRN6S-V~%h8rlnJ z`hGRvu@81M&Q$X|J76bM8})UwpCApJuDR{h!pEu+O0_3PF?0R02h!jbs82UCB#VWUydZMDc2*@GNlZu31dH3gpltLAJ|Dvwpk{B>q4vJ2ehf?+RMQ7gI1mIcji@zgDFk z<`W$*XjKPXz=|o-jLvG#39VWmcTkpA(W<-I;SC3wwd#2l0m9B`HQsChHXvWKFJ%k7 z${)@CD&}(1e66P6J&>2AYc-!I08w6PwL@@~e`>Ea?1{Z2`*lH}IcpAyC_X!cYtEZ77>zey(VVy9!HP6N-tmss z>XaLbM7_1v!zTj&{#R?g$`6##wOU&@l-(<5Yi);MmV0iQ*7hoXVR}EUeLeJg?ayoN z@&92@ORd9ZTpLAOw2u97w}jQyTs~|7-s+p?`f?VqmeHEKRej)<95nYci!lCA@Dc~K zPd|g(q6GQ9Xsw$+Iv07SK{sYFuY@3()7Ientp>O6HhAcnpgc$wq>ioz`=R%NH4ay(ueF)|Uzn-SXRZ5Z`R zHrnW4s1uM1S|C}H*HdvM4+#dwaIbjaDX4l zTFA|LAXT5Q&1`%VSZk_<*Nz8r>6&Iv-i8mAtkWV&rUQAoRf}A=3A^9pv;~9EFa>VV z79`^;w|gtdY%ggG4%=g+K_e|{q&1L96}6~G4rrLtw1r1JvA6WP!IX}Ita49np&9>! zZGS0FDElWEJYuOWoz)WPsmWSgVmxlM7%e{GEhuY}wG{zZ(V4u}R+V~=L1elhf19kW zNgIF`&PQA8mjd$m@7mg17*~Xc3-UR)wS+DBxvBqYn;Hj$Y;{H3`WGW2+icCet+;B{ ztA>_{0fkh}RolJ*hcK;^wqwT^?1=s+$Qu+HY(7BSvBwLD-7;-&Z+n0_QG$GKRqcQ} z8Ew6#c3|j6bl)cJ;1YCd=22S89-O*)sn??eMip zC_a7DjyhxDQBKv4k3UojvnCJNF8CA1T5QI6y7v=eU+g52t*me%48 zs^43+(|_;|Tg}qWcx}P#`JN!F+EY+Teq}IinjrtKX=g&d0{>?A(auc8gD=grGoKSN z>pdZ;)>5>yGoAy>SgD;`dZe_EL&;}#n0BMhE>O(fCTTaT_Q6Fv zM7#OB9k$6d)NaLQ0!jR*J#fTGsPl8}(K-w^*Z66VKVua9)J}Wajp9@ApR}j_3xU`~ zYp?s@kk($Hz3ZO>q`bBE9^38t!({Ef4Qf7~J+=2!eSmDt5~ME6v=177@6asmD;7G; zwyI7pV6XRxY+Vj6!midlUELA^;BwL6iO#w<@ersb zdh7b=BwS2;b&Jg&K)pKZmL(*hgSzS^w_|tvgH^y=rDXETbptHotMZ^n0k= z4acDyazw8=${wEsSf$sD#3?&}K(D#M8bBH?$ZW&)dW~OzJa2*C@K-qSh-Z4EU8%sb z&+3hL)f-~^Z=iBy+R-1k6ttE z1acDclRhHD3OlD`1iD$$g|?jx<3XWAf3_u+gO9#Al6{(5J6^JWY8Qc$iYJQ zpLz>@MO}j-&kQbZrTZ5(LKSU@9^ht=e^}_M!HJ=IKy+&?Nc`0UlJNU`cNe6KL-c@s zXyE3X)AfLC9Lh_J^?-XQwO(@9M`pMHP5YydyzGPd`x$-II!6>3+UkMsR-jr`(gR0k zVSS*h9$b1eusy#8)f%6WTd+sOSx~jBgWQU*Ckv`}L-pWjtbT2Z738lz>f@IBVdgDqt-(>l1cA!D>~AK5?2G$hI~H9Z%|$>sVsWHeU~k2twhoo*r@?@1*%EeToUE zs(k}}8j{VqrcZOxu;Yp8)059(^Z6KkM*XsAN80MM121AWy+)sNHvpB>t@?r#%&tpw zJ^J}+eExTTw!W}=0a`j=eWCMgWS+igQ4Jtr=k!HqFw=RwL|>FX6dy>Oq{l3L3rxMH zFP`ELtlMCH*=f`X{$u)zxNuNfZPHh+McM9tEq&G9{dmC{`nrOz_@~+e^#mK-md%(T zAD*Bm+^UUH^GAK>>gO24Z6x~6bxT1SnWpbdYlTInSAxp%JNnL3(Ey1@^rTz(z~KBK zJ?Ymo6eR8R{pIpdC7-1yH?RijYp$NsZXQ0ae^@{C6Z8AvApMvLE#r>Mg7T2If^=|_ z!Hur^u^_Y;SuOOm7;^~Fku&fh1h}WJpR)DDB=mzp`>KMfpfLx&C7wM;lkH@0Z zDE;int7!W>>1UVBL8Y^?p5D?C#p_%>eIowwxF&i=sY)QXv(+hc#s&2l!A{xlle)^*-me^qQR)6Gxr5D%v`eT9?@5m44tHZe_sid{dM&31-LpZmlRYEU)29Q)(9k@o%%1k z-yqSg`k$~?C@@^p|1Q9Q;7XA8zp%|Xm zHCWwjYQRt-2`e%+tGEyU{@+YXle5=0P)6)FIq$+d9ah2QoKpwgrKhQNTUUU)R|UD0 zVrsJv=7eJCWn%sRYfjfJdx=y`@4<2qe zbzATP|8T)MgU)SDJ&tV!^7~XVasQ7xV)DM63$W#^sb~5yAlg4u@AX(vtZ>`pbG8Q1 zjy@)zN5hdDOnom-#L|kVAl?4l)UP~NIyxUV^*cNnb-rn){w2`go4ic@cZOm$T{C#N zn#ngI1)mo_Y8v8#_Tp!GQ$VqHG^T?oZ~?~u%qGJ$Ce90(^*hs86rK5Xb zP0l-PnsVztkb{3r)8erT*7=%gI?D7aA888fw;P}3vNnYeMa$R!iYYwqC)S8xndaKy z{$846im*g`Qr_7VQ3~URx)G+x7#Sm~I;Nxatoh6^Etc^@9HUK(y?X#Tmtb1T`T(pBH!VGl7iJqHNC)Q|ocL0Z z<-Rs8tBG?x=%Z9;QtvF>v|3#2;_k>W z?Tu@S7VwBEd3GYu(9QjJBwz~Zu~7!_L*(~L^=L`^J7Ow?FnEMt$c#uTH**kZ$$sIeuQsImOd zodLuo@B9A#-w(>&GIQt7y{A0qIp+@6_0}Ycx$%C9b$t=8#pL&`>*pUri?_hK{&qYi zUTtsP)Y*y1#oK6wAs4Os_FGs0+0DAW5rWdo-&l8DM9#NOAM2MMKT_1fQPwYSqHu26 zXWjkfF^bOVXWi2?0~10$tb4l$= zRnNVY@b)F^!9LTmYW1}B8-GMHUcB|Y?JF=BG|On2h-%hDnA_#fzGFSw4BhIh>DC|i z4xz;3!>z}bp-I2r&3b$VPW_sV))S{uE7qi0Pts2*TJW@}I{-;Z1Q3`dcp?IY$Xoqpf8#CQ)?JMC--BEEt6PSg-8fLs3IJ z7%f*P+Gxec)vZ6jnnTeSbFDw$T!C4&3D#dq(ct7RuwI*S8X?>;>#gBku?p^*^-dTf zq#k3fcXu^L{QqH+@q*2`Y`wc5BcPVa*5AY|^j^8v-{&ktC}p+&(FCLFskf~U?x7l; zI%%{tx5I2dUu(2H2G@Uij>Smln)R>a_*9G#%KF#&cPL@aMC)T6W#jT<>yulNXqYZo zpN+%;hRl|!{Cimc^Y~SnsZ)f7gfGd=DttDpb-&CO$8uN;yz|UhIcywSz<_CT*hEh> zXqj@g0t7ONKgqVSmvKgdWLwGPJfztc$+lNlBgJxFw(ZELMDGYWLPab$tdSfMjCv}~ zFx!w1A<_-b;i@6a?)sx8NVk9hsyX}NG{I#20c+Hoh!xqSePjKf#(Q4TZ%di%- zzdWYJF-l0-Bai8iVYuUrJO(qL!W#$V;*XL0jVr(w*LLFwd3?8c6v`Fy#Cek_rp*p{ z(pOk9mHMGvvgIJw55~(=mXP|tfw$$UF-s_B#5Q?)H8eO6?DF)s*giZW&)9%SXHGqN z#sd!7@XzEog?A9c?UCP9kl7ehLw*YfPJasWtaKdc7oW(bA;|yjZXuVhn}+2$fkrFV zJ8rgF*W|ewa}kLACBNGpom<%&`Q0r)BLA1XM_xdmrudaF$qU%ilz4NHyucocVRMqa z=&FMf#?WRv#U(FE#B|+>*X1Q;=yZ0sl$Z9!=r=82UOI&cRbzSS4SaH9*WcuiY9h$| zVVnF>9!65i%kr{-i}IS^3j2(w>nEU&JCLFn(z zjF$7dCa)QYkAHD2CWf-jh`j`F7Le2Tf2DC^Z5Q`B3} zWWC!8if-7@X!(^JYx(-xJF7HJm z;*R`Fj)DwIw0ylaVn4l$eEmEMm*A9dv~XcD+UxSKyCzfIcanUoE6&Wcm*iV{SlTsz zl>B=W3vNt6=kfbG%*Eb1YP6gx$oD36qqv7- z(r*e%`S9CHKiq6844SL-_n1Tpug_5iU{;KJRWw>YY?09lJK8G)hWb(5E?F5Ie}!Ti zB`Jebkr}N$Kp9-@L9ws)SB6f&CF#{$$yoIR1~~JStOF&VBV{s8$s%;xc6^YE10h!O zWX17o5+zJbR7UhbEx6QI$?23pG53}zIVbmGP52X|<%(WWMi$LN3TC`Aax9|fslH0? z`qwF@&p9Rk8AeY14k}IoshYlnjFy|dU2!)~qL>-Al_KwsSULHpGNxoHRxn?PP{y^+ zr;zMbUiuO@omsXi6B^)&oyIAXZZ@XqZ!JoRu!y41FHlNeabrT^4`niW#zRzNvmF&~ zwBpTb%4;bBlsK%9^4cSn;$lSQ&E{jJ1E6R$Hr_7xG8YSq7O3B-M zf5)|(pcw7Wnnp`cdt|iCy;DZZhy7x-!hrXUR?@yU+Zr>K*`M=h;g&0k_IQO+`z&I!HM>n?wEowwH1u z<|!p!ysw;^8;y~TL;11mD|yzUmxXeHYTrw+8V8}Asbsa#hp)9 z?$?gT`oF?i#tZJ%mCB!;(WbA z9Kp=!BIU0S67V_xZIx$16ESr&MP+OGP_)!n<+65C+`67Bclk$(YJN%;wjxe&KTriy zM|6TwMb;OCR#~;o_!;$o+X&Ue_jO8WHdys+5sgo;@>IPzgxPV2Ro|nj6z9=c^_RZD z8qn#gfAg;?nq8{~C}=TlHPzq{#P<+XAM^_7?f8=0uqu=U3C ze^hJwEu#2&3rZ%KLq*&WqYNOvUr{mE>ZCrwd z1LroWO)Lo%z5iFWNzY{np@yi<$c3xzP@8qVL^1Uysm-!+#!lW++eF~`t$tSH+aQ

_z-Kscs1#4dkiW!t0{MI&383Xdo6y5`+V1`sol}p44YxJ;^QJU z^`m%-{iU{=7D{90!y8-lC5IR_T`WTyE<;TpiFQQYsirT+wLg(#wpZR$OVYoXLb3g} zs(p+vma2UoA~(}3QSBEsjACE0tNl7$p}1{Ub#Skv6q90AhpMGm%|1*WItU90?!2rH z9e0ru9qr8azOD{^wt5f=- zT21~!ojQ9amR!DKwo|sM)3feTT-%oF%PBZ>DPxS5tyaTmxwALaS2l21N%gimQ{P8X zD~73arr@^zUL`Bl(mGcu`gTKgF*gZIDITedFLuNNLH*#_7D`NvS3j(c z7VHCF{qUPY1RAT;s*H!n7Mm~SvN_EdPqE`6+ml>2WxT(7LQX)lX+p*H`Aw_NWRS$SzJh6GI zdhlITvv23CUnfk*f`vcT??N#rbT~}?VG`z+n}4Dn3+jjb-+*)Kv5rX;-8)77u|M*3 zgS)DyA`m7gM5<>$Jw)**hp6X1`heoTuBZO;(`Cd5AF0>K6YY16Q12YsK+y;C)Vnni z3AIX4e{arBOBNg*ena20WJz%Z+YaW|U zA^x9xLsRB(6!l(|*?u(1Xt}FXG|l*YxaQLrO|b{7`4*zZ>$2T!^FG%61AfF5>kch+ zWJ|1WQ?&3rWJqVyS~!OF)Vc{;^+t#*)+TG!NA<^@PakUa5BO2y5M8Ew>hL%s`?$ny=wSqo~*N48Xjdf`hKeT~1J_1La zzF!-kbPv;Wt+bbZzf95d>KiTFa<(=BQ!ZR{Z*Af?1!(E)+N8E_ieC7OHsvV_>%hm_ z)J~{XuN}~)LIToyE3|2Y(Cq+Gepv`!^3d7~K z+8aJR>U%@&O{xw>)jY4gNh=gj=0c-oYn(D#F1U-)@{w)LwrRZC zcK$@0Gp!IywedL8Mm;uK$-9A8y5%*Bj((`kgKsG||A@BWcoN0()wPAe!zlXfNp0aP zsLsO@wf8ZHEOff6y?+NESW*&pQCocKHFTecwI%96jLjZtOEx2cu)kDWx*elb&(=oE zAKq-V!e>3qc1ug`1LSn*iEWIQ3*4@KPZ=3c*2_m3F&$MHa z*AY7987+K=ZCQFK|f_S5|$iXHf}c4j25^>;qnh2@VZ{=^pTiW|LK z`zzYj#)uV{i+MlnZ zU+>sJdptBBYd({-r@PTW*bn947T5WZ(uoO%YQt#1c|&Onte(NjrTGOX*O!hS*lhjO z6;bqh?bG^n>HDkZu773qS(*-HAE&T<3`OclS?_O1FHUwf_6VHi1!FmyW&|2aP8P zO<|WeBYQQa8dC+-IBF=BO*!xi1*Ppzob@Xtz2j9JR3UzA$E)Q~&eHGC`GsZSt3t|6 zxvf+fJ3U3o7q@VYBS zg&DVkr{@_LbsN9Qg>87I1H4A_e(P7Aa?_>nobWC6JQZDP`zfD}D}DQ??v^5BC=M#C z^u$ktp>Zki3Bxw?zNIN=QrR*pAHLlp2Cm<6=0}cBF16jOR=TyU1M8x4OP`fR(Du@Z ziy?4p3oC%nSA0XG=Oq_s!EkTR+sjTaje{@3v1Z}_`tbfmzDeoiOL9;l-cde&O&b@C8=CFNEm(i^@^QMf_0@pV zvsYUPaSdbQ>qM8%{yA`cCVdFr0Na>8pfqKax#ORQcBzi;k zP)B( zBNxvj5|T;Pgt!vg4+;_)4qow<{9xcT+QL+;2{)$Gtspg%KETkvu+BlpK({P97Gt8? zR7X5N#t?T@DR?7`t^>oeaO@kh=v+DnA{?|$OUrh|baB{Rj!Z|+7)K%WchG(H!r?SN zt$e~rdK#<8=F@lis?!8GP2q577;k||J)|1?ST|kFK#c{A=ccjrUJvk_N}qy7)943! z&6nv7EO@;}kJo)(r@OOy=uG;E0JGdQ2es$YMf&NvbTAuW!<)>&+jQVGjlthGYBWxj z13sKjH-p{taKJU^)05!ze0m9;5AFV-eK|5IFna+VLZ5)u3up)UETpsb2@B~xG(8i_ z-lYSe@B4IJX!|;?!q=-95171(RpEGlAv}(l7&|qRa#os^HYvFdd!eJgt-xOBcG!xY zMK0TLSB@h;tI(FxIR(^3H0UE1)3aH9(uZ_i!RsAkYHhf%4zww#%24KmOLAxhU6Wi= z;G^*-(jo3TG58%ZWp*-gI3Op!%QN1!tegcm^jkysicHUT6gq5U?Zt&QyUSrKa26KkWaK)~ zE1=IlNY%O2LkEshc<>sDlujONW)FJn-=J zOmk!wxpLga*jsK+W-*jCV?yE0R?O%6k~T~WiS7WWJ2Fj_DymC4_3%ziGza&SnA-IN zalT#nLxx>(ONr<$(klmVN$iqt>*#VhUAjjy6H4o=QkY*Y`r`piI~JTnm=^lCLzt%? z`ky(>SQJ%cN<2#He#LQ(}rQWw{8}Ia` zbD2&Iy!I~B9v-~QbkyHmz_g~dP%0Vcya;dFO=cK&<}(3Sk1jb`4qKYr?sh=?cNkyz zY9X@$?w@0-nO#kIkLk<6t4o+2@MEmSyG|~4Fv3_MbO)7p2zUd zS!QqKocjNMjvqP4Mb617{QGHh11z<{jtrZRcUrb{tgZbRyW8%vB{*}7^72W~{_y5f zyzM?qnZ|StDD$>Ngmk4+D#xQ5XLU`fa)vLRNRF#TKY}|8nW&&Z0g`$a#k`?=Gz4;nU*0H$fOcyP|;Lt^c)3LJlH>F{P>Y5q4_}HW&8r{D5@@eTRXMq0Tjd}k=4fEpvpo3aI2Vcu)Ce)5AKyH zeUo{PgEgy|8r5Gg2G~R8knr5rWN1`-Sae$q0N>S2yNK3!#a#TXHU7@Qwu50U2xQ4L zB+U)y*Dz!8?;@IC_bBbLEeJNPWf}(0oWyRPDIDa zycm7J($AQLx$%NO{Pr2sydD9q(0*($nWW;IbFzNzjHx57@~_Ji}~-h&@ar$lD}( zKtYZq!Ar4{FRa00HJG!9$%b)znE_b+f~K={-Gwlyc85_Ra32#6L-sMXMZ|nKY&V1_ z&>;}}0KvtoeT>=+K`wr5$^~&*BXAaSa0V*w(p*x*<{9c+zNiqrUJQfg`It6k^fDvRErGqlM0-?BD%B30 zSFm5Ni%bBt7(!Rubd`CH(K_LslmkRVa@+0T{b2Pk%mr`_K(p|6tRz5oJ4uzTcy*gS zE6e35EHpaN-@3-cdeQGe#3ROswNr!Pz+cSU2>7QwV*FszVr!-&#(UGZ$lrwIkk2zkC_Jp5Q)`L!kbE|PN zFKl5s;5F70n&bDDN^}69jbf`oUtcz`N=IQG4SglrS+S@@oQXaY<^I@{9SAmmoc38G zQ9r}CNHPq2ofG~!p!q&*Fnr;|#`6VuW+E!WUlT)NA+xv;$DP;OzxT33?d*H3F6(`QRHn#Z0It+ zB}kRnHL_|1i&R**=c+Oi)~@D4;6#5EiJeU>A_Q)eyh;zxs=;`;_0iph4KysN!G?op zH8xmpS&dyPF@7n37Z8|QkBx+T`-EVa+EA<%0%hP1uwwl7N42vjHAjA-lxOINq+%xIOP>3>oWj9oU zcmg6CPIN@%lEkLp#LIotf(?N?PCgi-zNY^v%`m1lYN&@ddR}6*!NUtD<$N=tI_;q! z@e#kJVOT9z)HlYn#WbA@G40rT`jB>PHce;h2imi*(X?CdmB60Cp67EX@n{Y2DS5Kg z91g_@{q#qd*}Al0Qs9Td>>wDvmiC4x1sF0t?2e|f=MdHg-rJ;rs_SQ3j)7CzP>8a# z(QH>L5#A2K@a1`&^xFa<*o$}oJ9QV`H<=d_v>dXted(X83h{$XHpJhKQGp}Jg~9Qd z90a`>Cl}VYCFr%X*ip2UP~^7R^RsL)$HBfqPyL6W@5y09QJHgLaYr!-Rx@bvdJLsK zjMx-S3C0A;1c5D z2-lH=cWHV!f-9?-D{}Yvp2!55lT4I|99;kBG*xd5ee&^tg%%c~W|~Y7=_wCilk*9< zC^F0kF&$&E4}uSJ1*2nhF{o&OiWX3A+_x04NpKJ?Jd)Q{yE6xa9Yg$RwmLk`V}z*A z*tHXt%tSFJEk(rm1$zZsvgk0w^#4-{>bcqXl&Y@2jIdmOFyyQtR1s}*Vq+A;0h}-N z=q^-eq|z$#pubtnHlp=ipx6l8>)2lyjqq3_-GcJ z3Q;@679h`I-@^#7>`%_GbmCFTTHA0Fh4{M;jDCxagWjcR3y+pzfU*cEi`)G|59ejJQD(@YxJo=``e{LTXLocc%*?bsajM${BImtf-f3SwJKpzp9BoTM;Tg~<+3B0n(eUVJF^@l z;CB|~XVo{p8t-)G*~aF$vyJcboJE8c$aXk#ZHS7^_v0<-B6BygW3YUIC=hW6 zWM&E7Nk|Z}YJ37ay%7|@qa)UNx`{lL@R81X!^}E}D0X#1rs}KBtS5U7EmYZNHVi__7>}?DTtK=f z%UED^O$-7$2pGCmss=S4prL;EQyfyp7Iwc_j(i|yE1L%SD}+$}-K{MCsSPwdux=X) z`7hhpd9>@_gMd%Avm1EWw}%}7Z|!9>s*-W~qrGh37g$WNpG2e3?jY-_zx@?^Kzre6 z{4R@m;giFs+4VFuOQSV?&Kb6mpMLdE_H`C!J!V_zb)K-Dc)c^rwc%if#0Ba%L~aPH zUzfRLMt`Dl)oA+M|6I;FUfgN8e2))=3Eo^&t+$~VM79ZLaF{6Jv^ScQg;rd;JCkw7 zXKrE}BBy5n2=Y~}e_KYfu+M)i6#l^7>BQ~pc>kMru|Ci)l~yb!*+o!nua|@%2=wJ{ z(YybBo@4yD01kFWa_{T&t8>R0{c%k$iq;p_=A4{9u>tptg=2BJ0b@}^Zj?pu)SBx@ z>uuU`@5xMfppFo~Is>y_;`+ei)`Fxr?ZtJW;k^{(>OM&2YFqLQJAsY^zDPm4>e~yy zXp_QL9Ozw#&noplqr#i1oHqiuZQ$k0M3}wsy@)x0*;lv#7?jTCS3NJV59c33+z6Ra z(`^yAWV$kP*Kykrn+)#5g`i_38dQO134mVQhkL1NXE<7a1y!in<&S7 z`*A(YgZ=w+!|={iSexMqBuI%9YQpY;TuVH;3OyGw)@=(M8w%t+<@VttF&aR=zF zdopnz|8^iEhsBv(i+}m}fP-s9$axRgn~Bo){JfOmoWxXlKP#KtO^YVH&w{}Yp*l<$ z$)(e8>PJR$`KsQon0s8?;Jcw+A{VR=|A6!58i!Kt(ZV>;6qo@N;os{~aa1h+)TuPR zO8d-AM}gZ`yIx#uY#o?=oD0&`<6K=jE)+54IKzIMkv2KM!9ULT=wQ#c)oxIEGL-bO zG=RCsIX`^TUPoO29P{#EzsdQRjv8(8)H-J6Adl!MC^Dg$c}>>|ZUt?mDxk(Gt{?v4 z@~&uP3($Mq#4(Ugp0ndp*SrFB7&&g^)JSi%=maX~AdO7oB$TPj+Y@>^vvP*Rtm9m8 zlTa!Nr-Qh;3b6G2mYz?Dn&cRP{&|eUxGN;MPjeyR$v6^X@NJ3erz8s`sZE^x=uYZ8}7ECQK-Vh1n> z=?6=yV<2*&jPvEmZMwm7k!#d|0R4(2CZW2Bji`VT3GS_6+)}4Tpo1L5Ig&S z%6Y@yt6U8RJN;KW&HHEW2I~5C4tKcxUo=+txXVrZKPaod<~J^hhU<@{no#{7mu>3p zzU!Q){?w2!e-~GY$)k7X|(KNjLHrtNPx95S^pJ)-go#c`L9&!^ZwK@TY zKH}8>H`Ue$J|dbx%&HM|t^SL9*?5P4x)Wx9%mu+WPdKY?f6TR`O-(}82`3-Us{X$X zLNUa0ylSol)DtHBIp0_76F#>d|>c@wgnJ-m-F4&hR-h7@~>&WHhe+zLH|cp zk74*xMAchCF^g*Obus$A)k_#JDCT$-`N!{V=xn2DgPrfxx zXX#&h@soJ{l|X)ps=rZ--)aq$kr$6gMe0EGxzcC~@$t3}nVGOOnh(O6G!IFrasZD9 zB$(ev2bX`Jih4=nk34Ki7NDvVknwm7p`3Yn7|imafl~Q7?JF-ydQ5j3SJXQ;;$s;& z+=OpG_a-Iqz1^;h-*oq1YU|1JE6e|#_b>kyq5{*gD!AT}vJRgAnivz&)U{0Pr7kwwL zAZ+T!{{?01@YNS3v;>Dmw8Q7lay6lDE8a(6*PVaF=xQ=wgSUAaj@$@S$@)>xGr>H` zq{XBS-D4e7>R!g_d=Mr6l1L9 zD&$i_g^-TPF~qZ&uG~N2Dx<-*4c_F4OZI1j*S8)MmY;Ad%J0O)Y($q zu1|U@w&gqUETaOUpeO@jR|2U(An|p5jJ|U+jcB|WdS8OeaF2Vq0M`7Bu9+?4HO7UK+@I@sU(-gxzGbK^H`N+=O62 zc_MN|Xa^G5lR%SnOUgJ*2DlKu8_h4ZSjzK|X)x%#6oP>!fljEbrIU|_y@ML@#~d^% zDANMepFn#@nD&zJfTUN#?~po_il7Yv8_*WsH`tJ80^Xjpi)3ub072XeCWwurnnHUo zyaiI%mOzF~P}3-^Y$Jmnfx{<=ugDnqQ2cHbs!aiYI)aMC)FrY18Te@hk%Tu6w-*T2 z6?1e%L9rV+RhP3dR5UE!&V|9^0VpWTUHqWxgvBT}22HL-MB+u{NZ1dpkZ)ly{$v>@ z*TO8w*3GO32sCv;D!siA0G?j)6mJek|L_bK_L5H^SPjaI5`p5Bv#Iq!|PbZ}e zMTG`HiNrvTC?3fH6XC)ohe-{jpeRr5A{Q&;a?xlR_U~U#ZU=W;p!L1(#rd-nP=v$2 z-~$Bzl8A=xM0_@qv+t6H~7NLe#;1;4fh9iPUc(zwZ z6n*m}lSR*h;a~Fo;oN*$hBmu-f6ULs?%@MyJ7n+XqYUb9-flj|YE~okAgTi?_gTLd zMk0!^TR2~&Lo;h&UirDdC02%{7+c~P%F7qvm%aQbze>l6U*sEx0+~f9*vH3_qP>L} z#_ilC3b5c2av6TPtiNBK=T!+tUuJ#6uw$4Vor7Fv7zyx9@Ki~LJwF3Z@8^3$g9CiH zLQL!P`iA`n_}+i3QuysZsNTkd{5JxY=uJ7y|EGEsvS=}MF^ETSorZQ}WN3bb55)kF zFh-`4HS-!3sT~r*8o{Doa)h5vV=1855Bxt1BwGBy?+R;=!5oR)O?HdWyyP{pP{d$A z2R3pCEJ1VSI7uy9OCqg-$wls7MUEoGD0MAnR4E9KEU%3}D z%rhBN6}O1534wm(C`R7R@e%vb?mk}=VwRvAY`%^6Ar}93D%VzD@+GIzurg9qH>Gjr z091(n1KsfY^FkoZ`GaqXrO(8P5wS8-XJGG2$1?0WK$7ftP#^GKkULe10VS844hc{A zp}jje3ekLGYS5XVi^v2GB3fSp-3v`PQ(l5<)Y!W6jHHdtp5es&p<#NRXlh+Hx2p&d zO;$yDW;CqH=c>VL-_g^N!#R@2y``jK#{^>8321_vPf^^Cg(KlNOBKBIpFM>Z9Zc?S z^kBiJr=$ryL)?<8XZ9AJa&+zgD#KGI2(>I`=^e4A?VWrhh~0z^J|!6oZyF2~@~uSo zh>oM+!D3HL1Poh@%eD9+E5WIO!bs>iNSIoB>|{&ckaG|Q3kl_cc6~@4j9lYy{e>V; z0|XFmEsvlXv}X9na*E7CkMQfbT6Km9OWK&`jI0C6{1I?MA_Zbr%&Y`4+GZt#30sJ7 zEimi}t{Tivk$fQbD9=H_P$3no&O>3=X1tYgm_o+6^lEPLsTNt8vLZrMwLhcu3%qV4 z`bTa@hKIw%bg*s0T=&3XLLzO0yZy0tVbd^SZaH~RLKs2^l3^NBSZR|8q(DJ}$#x-x zj`(*i-)k4n@N`31cbpBt%51Dkfpr_`YJmZyxX+bSU=(K;<=e;Db8_uitqS&R!7uI= zV?zPSBvxnv0WfAIyP3x)oNWcwN5YVZu40&BF8_YNE@LJLG%9O=wR`q8w5?-4xwH-G);xQD5y25gehkZpu+S3meU1Sl41^zT4v>U1mEvT$36rBI ztm%t@TkYYrBU*tl2d0h|j}X#W{q86si1w+CJSZu+B}qu)%_^qG+bccCjidSdq<}}B z(3`GV8dKm0%@2y6r5AqmfO7(G5iwvWB=jnox=s1QI9^Y53q5G78;Rxe;#=so0xNTN zrqdE;YGaKm=Ohpdg$UK(m@D&P=Mz}<=HO;2XgauAtk zVpl616&WsJB<)bP3dsh;6yP7{@`bvSg>3qlePV(N^;rvrzG3>9Ekd(E{p1m$ipL$B zEj;w`H-*%JFsz5j>A_vaGn~F4Nu0vKj9%hP`j%924F^}ZiEY8NpZHUhiUB0yWy8X^*q zfYVPF-At5M7GprKo5+G9|BPjin&gdoQ46KEybF9?2Z;c$iGmMU2Vr<>mcrVxWU}ob z(KpVtie_v{vJ|xpOhWJj!D8g(N+C1Eq6pTeV4-&fCv8Ezx^6Qc#G*(*+-=0;m^cn* zF-HRHo?*!&Gg$P&gUtXF%^%bpEPg1O_Am#I4i=MvIf~9Tc!byhGKPp_m0CERq;iyO z7^npohltIh$l1h#6GKX%Br&5E8NJr1EAc3Xh0ty&7GP!$6+iYek2B|o?C){Gqaj#} z*KwG*ywYTUY)nMCKKKq38^PX>P-lL(iwm$yV)RPJ2R1avI?Mb`tVd6x4;3-8X-^3! zOROi+KQkC4-;?9Wj+Zh6i;%dovUImXFxc#WH}i6)IN#TF&l|^z`R1$3-!R^K$8q8r zscPaH>Q50{n+LSHDER1aOcD3cFC5T+n)pf84|MBvG1o|St1$aKdZ)!Ni}C-c28|P$ z5M6vl>>@tz9I*39{hhbOfWMtyL;rK8SXTi@FUE&S>jYc_OD)niC~x~IBqrZ*fhbyV;XX=B@giQW zm5%+oo-Y)J0i?p3=o$%^%&O2_RH3+|ybtXJTMovN$wNc|#UyY8YP0Kz6b*B3ieV*H zcqmd-LUtm!(E1QdgK=)n(M3*oE8HM~Y^@Emg%0xrB*JhjAF^fk{6gYDGcnC+z{Cu) zHOX$65O=n-XoSIkA#3KUh&iKM#}ve4VBfybR#=poT_3}5XCBtGlrwTp0~%l;Z_;AK zL1)327O5t~PB$m}G(N)yE}avTjLKiLQW~asNC816vKoi*1UK`P&yS4+(m-1!pYkJj zo)_!zE>bk8Up+5&rV%>XKF6x`M!9q_zV3AdNi@qo%(^A}A_Oc5$7-s@Wg) zL6jNyWjqso>JTeqhG``BA<9P9I|o;yJWR#UjJzCt--WJTofrc`!<2uBEkQQ~E)v&C z2%h>dJ5Hz%gLn)N4(~_U=yOS|Tfa(Ga~1lKe2QGhxZ-GA*K)E0KZ4>*;=A6Fg%$gE z#@bzEB_pB1WpMz^{z;6|f4M9U-?f9EdD@kLPk;zb z3V|UvIU&h(Qe+pxb8#TA2{y~b8z8pVEb1lT(OxC&jqEtCz`&?TcDY=cwiMi5qleUx zTGFMztdOy0!)Dac_Q5VNlkt{R-7ME9Metq$<+|FymgaB}#e*eLQi%O9LTln5&G?T1 zD6)5tAT|e;h%Jf4%^5Aic_on|Szbcc5RXJQqL~{L$(%nwm&ENcMxQa@ zQh<;WCGq<2wIuu_^G$I@2ZswG<;Ej#A`_+rcFjk|kJv|?T|K3~RF?s62NvyYkCt5E zjFDdY`)O?hXgm#>g%Qs3(*RFHmM~75%Ic3AOCdDFX26bSQeQB_#Rbo3dETFx3CegP z*2KNd#6>^1XdV>7T4eQbE#U3uQj{TZ=A~A<4e`Gl^ zL4}`^u8o=uLs5B@787>kC7#P@`547EQXWiiBeiAd0kE%))G)|aF1F=M6>Y->F~zrfJd!Id z+oF(5YENmwQA-HqEx^_~F zh&UwhT40e+6Z}u?Nc*ZK)A-&F)fONL?s$U4$pr#W6WdFn0j8!9<40`#O+3>Be^TK5 zb*#{hyDLUQd`HO^MbHz`@8=lH0}m%_K{jTTV=j2PqtpuCc}9DaHEv`sY+K4!De#}+ zE!fhKhQ{rz#KhaO9K-EJx$c$~f(yQ#kg7S*S!#fk;=RsN9McxF4PB%jyeByo-tLaO zQ6g($MdaWv`07L#X(@dNo_3KEp=VR6UI^k0T=p^?);|UeL!XFs%JVPA$l$N0Xwhmm zlWg=r=+PC+HikBnJgcJuR^kM^;owaz#DtnbytVa6fOnhWs*UX`y=Co!X)JO{tR(^T zz+rIdz8LYm!Zo}<_C{R3fgOyf+?|cJtq32;YA)?2?ZE+}>2WmC6_#2VIEV40cb+Ximc9$MG?E~K> zp|jvpq(qA;4T$d{IYkP?h?}^7VwTB)exTiJcW5Y>(koaAhB1P6SFY#jDv&^`7 z1xhCY0)dA~!1t17!-ZbBa`Ela`AvA8luDnLL`a>3C6_f*aeqffsuYWR4U7?MWEm@{ zClWZ|5{4*7S7@D+QA<0)t_N%o9=>!nmLw*oOTpzNcsfyYIPxtD{O9RXQ}``is_SFA zcr!XI4-_DI4jY7f#7LUTjnTDNGs#aOK)^f-g9nH?Ce?#?drO`ydE&yCtuPje{16>- z^b$s#Hv=aGpJ`yJ-0Q_o{nv;BTJ@2NVPhX@8eOP2?<@7E^?CiIOX2z_W2IZ32Ex~u z&5*{)`tZ3@EmoK2OU)Y53`ub}fV^*|Why_3wWQu=ep2Zz>yzBKiz&>;$Aob3eHO1U+8oHS;_Ck@aF0{ z={8|5{o%%Woau^JG9+A(lB%8yhgxIy_vRMXs(*1oDtWQ|x9cV85YGws{(HuS1mrO5 zniLPo-LOa_2s$#9ep;x2rDT5W?H?cUYYaM*G`=&I;$g{S( zh5gK8@d+l;YbBU@OH!+mok`=%fjLola@)l0mv2LYb&cpCA5)SE{Xp=LNxJvQ#X{N? zizOh~IKI+;;h83~BOb-R8A*(+ooFXI-NtRZS+}K5&@&eww=jpbR3{#SU@EdL_t|YJ ztdtq&jX9~fACbsCx)W#EbD1as{;j?wNbDhn^CWU}L*N0v8aUfwmBZsZl4ohwso*MQ z5FRZhPmq6=0wYN*LA*He=v6k`R`?Kh`+rFNT)itrGE7`k-Q%9rP%_n}$7AWQkg6i6 zrv_RUE3l=eWivE>6&aCpWC!7edKPa@OE;;hR0pO>3f+22Ez6%4`uKk{y@oXIh_k$o zHHWyDw7x$klZH05WWcNvWX29OwA2?(GmHgDSVRJOU!vtCrETWSC*qP+?9CxImN;NX z>GgwQ(7lnRlR@tjqS^_o8d+|``;9FfFl`kVj?_`l3{l4H-*1gA4h!Ku42lx^HL)~- zlJjCPSi3W_g*asbfn1PMCWfH#vP0+(sDQW^&hc+|wwQBP=UIm_wQTU*K^ F{y+SkCeQ!? diff --git a/retroshare-gui/src/lang/retroshare_es.ts b/retroshare-gui/src/lang/retroshare_es.ts index d4311f827..1fdde840d 100644 --- a/retroshare-gui/src/lang/retroshare_es.ts +++ b/retroshare-gui/src/lang/retroshare_es.ts @@ -1,8 +1,8 @@ - + AWidget - + version versión @@ -21,12 +21,17 @@ Acerca de RetroShare - + About Acerca de - + + Copy Info + Copiar información + + + close Cerrar @@ -495,7 +500,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Idioma @@ -535,24 +540,28 @@ p, li { white-space: pre-wrap; } Barra de herramientas - - + + On Tool Bar En la barra de herramientas - - + On List Item Elemento en la lista - + Where do you want to have the buttons for menu? ¿Dónde quiere tener los botones para el menú? - + + On List Ite&m + Ele&mento en lista + + + Where do you want to have the buttons for the page? ¿Dónde quiere tener los botones para la página? @@ -588,24 +597,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 Tamaño del icono = 8x8 - - + + Icon Size = 16x16 Tamaño del icono = 16x16 - - + + Icon Size = 24x24 Tamaño del icono = 24x24 - + + + Icon Size = 64x64 + Tamaño de icono = 64x64 + + + + + Icon Size = 128x128 + Tamaño de icono = 128x128 + + + Status Bar Barra de estado @@ -635,8 +656,13 @@ p, li { white-space: pre-wrap; } Mostrar bandeja del sistema en la barra de estado - - + + Disable SysTray ToolTip + Deshabilitar sugerencia de bandeja de sistema + + + + Icon Size = 32x32 Tamaño del icono = 32x32 @@ -741,7 +767,7 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot AvatarWidget - + Click to change your avatar Pulse aquí para cambiar su avatar @@ -749,7 +775,7 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot BWGraphSource - + KB/s KB/s @@ -757,7 +783,7 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot BWListDelegate - + N/A N/A @@ -765,13 +791,13 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot BandwidthGraph - + RetroShare Bandwidth Usage Ancho de banda usado por RetroShare - + Show Settings Mostrar ajustes @@ -826,7 +852,7 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Cancelar - + Since: Desde: @@ -836,6 +862,31 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Ocultar ajustes + + BandwidthStatsWidget + + + + Sum + Agregado + + + + + All + Todo + + + + KB/s + KB/s + + + + Count + Recuento + + BwCtrlWindow @@ -899,7 +950,7 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Permitido recibidos - + TOTALS TOTALES @@ -914,6 +965,49 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Formulario + + BwStatsWidget + + + Form + Formulario + + + + Friend: + Amigo: + + + + Type: + Tipo: + + + + Up + Arriba + + + + Down + Abajo + + + + Service: + Servicio: + + + + Unit: + Unidad: + + + + Log scale + Escala logarítmica + + ChannelPage @@ -942,14 +1036,6 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Abrir cada canal en una nueva pestaña - - ChatDialog - - - Talking to - Hablando con - - ChatLobbyDialog @@ -963,17 +1049,32 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Cambiar nick - + Mute participant Participante silencioso - + + Send Message + Enviar mensaje + + + + Sort by Name + Ordenar por nombre + + + + Sort by Activity + Ordenar por actividad + + + Invite friends to this lobby Invitar a sus amigos a este grupo - + Leave this lobby (Unsubscribe) Dejar esta sala (anular suscripción) @@ -988,7 +1089,7 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Seleccione amigos para invitar: - + Welcome to lobby %1 Bienvenido a esta sala %1 @@ -998,13 +1099,13 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Tema: %1 - + Lobby chat Sala de chat - + Lobby management @@ -1036,7 +1137,7 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot ¿Quiere anular la suscripción a esta sala? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Clic con botón derecho para activar/desactivar a los participantes<br/>Doble clic para hablar a esta persona @@ -1051,12 +1152,12 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot segundos - + Start private chat Iniciar conversación privada - + Decryption failed. Fallo al descrifrar. @@ -1102,7 +1203,7 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot ChatLobbyUserNotify - + Chat Lobbies Salas de chat @@ -1141,18 +1242,18 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot ChatLobbyWidget - + Chat lobbies Salas de chat - - + + Name Nombre - + Count Cantidad @@ -1173,23 +1274,23 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot - + Create chat lobby Crear sala de chat - + [No topic provided] [Ningún tema propuesto] - + Selected lobby info Información sobre la sala - + Private Privado @@ -1198,13 +1299,18 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Public Público + + + Anonymous IDs accepted + Identificaciones anónimas aceptadas + You're not subscribed to this lobby; Double click-it to enter and chat. Usted no está suscrito a esta sala, Haga doble clic en ella para entrar y charlar. - + Remove Auto Subscribe Quitar autosuscripción @@ -1214,27 +1320,37 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Añadir autosuscripción - + %1 invites you to chat lobby named %2 %1 le invita a la sala de chat llamada %2 - + Search Chat lobbies Buscar salas de chat - + Search Name Buscar por nombre - + Subscribed Suscrito - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Salas de chat</h1> <p>Las salas de chat están distribuidas en cuartos de chat, y funcionan de modo bastante similar al IRC. Permiten que hable anónimamente con un montón de gente sin necesidad de hacer amigos.</p> <p>Una sala de chat puede ser pública (sus amigos la ven) o privada (sus amigos no pueden verla, a menos que les invite con <img src=":/images/add_24x24.png" width=%2/>). Una vez haya sido invitado a una sala privada, podrá verla cuando sus amigos la estén usando.</p> <p>La lista de la izquierda muestra salas de chat en las que sus amigos están participando. Puede bien <ul> <li>Hacer clic secundario para crear una nueva sala de chat</li> <li>Hacer doble clic en una sala de chat para entrar, chatear, y mostrárselo a sus amigos</li> </ul> Nota: Para que las salas de chat funcionen adecuadamente, su computadora tiene que estar en hora. ¡Así que compruebe el reloj de su sistema! </p> + + + + Create a non anonymous identity and enter this lobby + Crear una identidad no anónima y entrar en esta sala + + + Columns Columnas @@ -1249,7 +1365,7 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot No - + Lobby Name: Nombre de la sala: @@ -1268,6 +1384,11 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot Type: Tipo: + + + Security: + Seguridad: + Peers: @@ -1278,12 +1399,13 @@ Pero recuerde: Todos los estos datos *SE PERDERÁN* cuando se actualice los prot + TextLabel Texto de la etiqueta - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1292,7 +1414,7 @@ Seleccione las salas a la izquierda para mostrar los detalles. Haga doble clic en las salas para entrar y charlar. - + Private Subscribed Lobbies Salas suscritas privadas @@ -1301,23 +1423,18 @@ Haga doble clic en las salas para entrar y charlar. Public Subscribed Lobbies Salas suscritas públicas - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Salas de chat</h1> <p>Las salas de chat son espacios de chat distribuidos, y funcionan bastante parecido al IRC. Le permiten hablar de forma anónima con montones de personas sin necesidad de hacer amigos.</p> <p>Una sala de chat puede ser pública (sus amigos la ven) o privada (sus amigos no pueden verla, a menos que les invite con <img src=":/images/add_24x24.png" width=12/>). Una vez usted haya sido invitado a una sala privada, podrá comprobar cuando sus amigos la están usando.</p> <p>La lista de la izquierda muestra salas de chat en las que sus amigos están participando. Puede bien <ul> <li>Hacer clic secundario para crear una nueva sala de chat</li> <li>O doble clic en una sala de chat para entrar, charlar, y mostrársela a sus amigos.</li> </ul> Nota: Para que las salas de chat funcionen de forma adecuada, su computadora tiene que estar sincronizada, ¡Así que compruebe el reloj de su sistema! </p> - Chat Lobbies Salas de chat - + Leave this lobby Dejar esta sala - + Enter this lobby Entrar en esta sala @@ -1327,22 +1444,42 @@ Haga doble clic en las salas para entrar y charlar. Entrar en esta sala como... - + + Default identity is anonymous + La identidad predeterminada es anónima + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + No puede unirse a esta sala con su identidad predeterminada, ya que es anónima y la sala lo prohibe. + + + + No anonymous IDs + No se aceptan identificaciones anónimas + + + + You will need to create a non anonymous identity in order to join this chat lobby. + Tendrá que crear una identidad no anónima para unirse a esta sala de chat. + + + You will need to create an identity in order to join chat lobbies. Tendrá que crear una identidad para unirse a las salas de conversación. - + Choose an identity for this lobby: Elija una identidad para esta sala: - + Create an identity and enter this lobby Cree una identidad y entre en esta sala - + Show @@ -1395,7 +1532,7 @@ Haga doble clic en las salas para entrar y charlar. Cancelar - + Quick Message Mensaje instantáneo @@ -1404,12 +1541,37 @@ Haga doble clic en las salas para entrar y charlar. ChatPage - + General General - + + Distant Chat + Chat remoto + + + + Everyone + Todos + + + + Contacts + Contactos + + + + Nobody + Nadie + + + + Accept encrypted distant chat from + Aceptar chat remoto cifrado de + + + Chat Settings Ajustes del chat @@ -1434,7 +1596,12 @@ Haga doble clic en las salas para entrar y charlar. Habilitar tamaño de fuente personalizada - + + Minimum font size + Tamaño mínimo de fuente + + + Enable bold Habilitar negrita @@ -1548,7 +1715,7 @@ Haga doble clic en las salas para entrar y charlar. Chat privado - + Incoming Entrante @@ -1592,6 +1759,16 @@ Haga doble clic en las salas para entrar y charlar. System message Mensaje del sistema + + + UserName + Nombre de usuario + + + + /me is sending a message with /me + /me está enviando un mensaje con /me + Chat @@ -1683,7 +1860,7 @@ Haga doble clic en las salas para entrar y charlar. Mostrar Barra por defecto - + Private chat invite from Invitación a chat privado de @@ -1706,7 +1883,7 @@ Haga doble clic en las salas para entrar y charlar. ChatStyle - + Standard style for group chat Plantilla estándar del chat público @@ -1755,17 +1932,17 @@ Haga doble clic en las salas para entrar y charlar. ChatWidget - + Close Cerrar - + Send Enviar - + Bold Negrita @@ -1780,12 +1957,12 @@ Haga doble clic en las salas para entrar y charlar. Cursiva - + Attach a Picture Adjuntar una imagen - + Strike Tachado @@ -1836,12 +2013,37 @@ Haga doble clic en las salas para entrar y charlar. Restablecer la fuente por defecto - + + Quote + Citar + + + + Quotes the selected text + Cita el texto seleccionado + + + + Drop Placemark + Descartar marca de posición + + + + Insert horizontal rule + Insertar regla horizontal + + + + Save image + Guardar imagen + + + is typing... está escribiendo... - + Do you really want to physically delete the history? ¿Seguro que quiere borrar el historial? @@ -1866,7 +2068,7 @@ Haga doble clic en las salas para entrar y charlar. Archivos texto (*.txt );;Todos los archivos (*) - + appears to be Offline. parece estar fuera de línea. @@ -1891,7 +2093,7 @@ Haga doble clic en las salas para entrar y charlar. está ocupado e igual no contesta - + Find Case Sensitively Buscar discriminando mayúsculas/minúsculas @@ -1913,7 +2115,7 @@ Haga doble clic en las salas para entrar y charlar. No detenerse a colorear después de que X elementos se encontrasen (necesita más CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Buscar anterior</b><br/><i>Ctrl+Mayús+G</i> @@ -1928,22 +2130,22 @@ Haga doble clic en las salas para entrar y charlar. <b>Buscar </b><br/><i>Ctrl+F</i> - + (Status) (Estado) - + Set text font & color Configurar fuente de texto y color Attach a File - Adjuntar un fichero + Adjuntar un archivo - + WARNING: Could take a long time on big history. ADVERTENCIA: Podría llevar mucho tiempo con una historia amplia. @@ -1954,7 +2156,7 @@ Haga doble clic en las salas para entrar y charlar. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Marcar este texto seleccionado</b><br><i>Ctrl+M</i> @@ -1989,12 +2191,12 @@ Haga doble clic en las salas para entrar y charlar. Cuadro de búsqueda - + Type a message here Escriba un mensaje aquí - + Don't stop to color after No parar de colorear tras @@ -2004,7 +2206,7 @@ Haga doble clic en las salas para entrar y charlar. elementos encontrados (se necesita más CPU) - + Warning: Advertencia: @@ -2162,7 +2364,12 @@ Haga doble clic en las salas para entrar y charlar. Detalles - + + Node info + Información del nodo + + + Peer Address Dirección del vecino @@ -2246,15 +2453,10 @@ Haga doble clic en las salas para entrar y charlar. Retroshare node details - Detalles del nodo Retroshare + Detalles del nodo RetroShare - - Location info - Información de ubicación - - - + Node name : Nombre del nodo : @@ -2286,12 +2488,17 @@ Haga doble clic en las salas para entrar y charlar. Retroshare Certificate - Certificado de Retroshare + Certificado de RetroShare + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + <html><head/><body><p>Esta opción le permite descargar automáticamente un fichero que esté recomendado en un mensaje proveniente de este nodo. Esto se puede usar, por ejemplo, para enviar ficheros entre sus propios nodos.</p></body></html> + + + Auto-download recommended files from this node - Auto-descargar los ficheros recomendados de este nodo + Auto-descargar los archivos recomendados de este nodo @@ -2345,7 +2552,7 @@ Haga doble clic en las salas para entrar y charlar. Requiere limpiar la lista blanca - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> <html><head/><body><p>Este es el certificado <span style=" font-weight:600;">OpenSSL</span> de la identificación (ID) del nodo, que está firmada por la clave <span style=" font-weight:600;">PGP</span> de arriba. </p></body></html> @@ -2378,17 +2585,7 @@ Haga doble clic en las salas para entrar y charlar. Añadir un amigo nuevo - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Este asistente le ayudará a conectarse con su amigo(s) en la red de RetroShare.<br>Es posible hacer esto de varias formas: - - - - &Enter the certificate manually - Introducir los c&ertificados manualmente - - - + &You get a certificate file from your friend &Obtener un archivo de certificado de su amigo @@ -2398,19 +2595,7 @@ Haga doble clic en las salas para entrar y charlar. Hacer a&migos con los amigos de mis amigos seleccionados - - &Enter RetroShare ID manually - &Introducir la ID de RetroShare manualmente - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Enviar una invitación por correo electrónico - (El/ella recibirá un correo electrónico con instrucciones sobre cómo descargar RetroShare) - - - + Text certificate Certificado de texto @@ -2420,13 +2605,8 @@ Haga doble clic en las salas para entrar y charlar. Usar la representación de texto de los certificados GPG. - - The text below is your PGP certificate. You have to provide it to your friend - El texto siguiente es su certificado GPG. Tiene que ofrecérselo a su amigo - - - - + + Include signatures Incluir firmas @@ -2447,11 +2627,16 @@ Haga doble clic en las salas para entrar y charlar. - Please, paste your friends PGP certificate into the box below - Por favor, pegue el certificado GPG de sus amigos en el cuadro de abajo + Please, paste your friend's Retroshare certificate into the box below + Por favor, pegue el certificado Retroshare de su amigo en el recuadro de debajo - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + <html><head/><body><p>Este recuadro espera el certificado Retroshare de su amigo. ADVERTENCIA: Este es distinto de la clave PGP de su amigo. No pegue aquí la clave PGP de su amigo (ni siquiera una parte de ella), no va a funcionar.</p></body></html> + + + Certificate files Archivos de certificados GPG @@ -2532,6 +2717,46 @@ Haga doble clic en las salas para entrar y charlar. + RetroShare is better with Friends + RetroShare es mejor con amigos + + + + Invite your Friends from other Networks to RetroShare. + Invite a sus amigos de otras redes a RetroShare. + + + + GMail + GMail + + + + Yahoo + Yahoo + + + + Outlook + Outlook + + + + AOL + AOL + + + + Yandex + Yandex + + + + Email + Correo electrónico + + + Invite Friends by Email Invitar a amigos por correo electrónico @@ -2557,7 +2782,7 @@ Haga doble clic en las salas para entrar y charlar. - + Friend request Solicitud de amistad @@ -2571,61 +2796,104 @@ Haga doble clic en las salas para entrar y charlar. - + Peer details Detalles del vecino - - + + Name: Nombre: - - + + Email: Email: - - + + Node: + Nodo: + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Por favor, observe que RetroShare requerirá cantidades excesivas de ancho de banda, memoria y CPU si añade demasiados amigos. Puede añadir tantos amigos como quiera, pero más de 40 probablemente requerirá demasiados +recursos. + + + Location: Lugar: - + - + Options Opciones - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Este asistente le ayudará a conectar a su(s) amigo(s) a la red RetroShare.<br>Seleccione cómo desea añadir un amigo: + + + + Enter the certificate manually + Introduzca el certificado manualmente + + + + Enter RetroShare ID manually + Introduzca la identificación de RetroShare manualmente + + + + &Send an Invitation by Web Mail Providers + &Enviar una invitación mediante proveedores de correo web + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + &Enviar una invitación por correo electrónico +(Su amigo recibirá un correo con instrucciones sobre cómo descargar RetroShare) + + + + Recommend many friends to each other + Intercambie muchas recomendaciones de amigos con sus amigos + + + + Add friend to group: Añadir amigo a grupo: - - + + Authenticate friend (Sign PGP Key) Autenticar amigo (firmar la clave GPG) - - + + Add as friend to connect with Añadir como amigo al conectarse con - - + + To accept the Friend Request, click the Finish button. Para aceptar la solicitud de amigo, pulse en el botón Finalizar. - + Sorry, some error appeared Lo siento, ha ocurrido un error @@ -2645,7 +2913,7 @@ Haga doble clic en las salas para entrar y charlar. Detalles acerca de su amigo: - + Key validity: Validez de la llave: @@ -2701,12 +2969,12 @@ Haga doble clic en las salas para entrar y charlar. - + Certificate Load Failed Error al cargar el certificado - + Cannot get peer details of PGP key %1 No se puede obtener detalles de pares con llave GPG %1 @@ -2741,12 +3009,13 @@ Haga doble clic en las salas para entrar y charlar. ID del vecino - + + RetroShare Invitation Invitación de RetroShare - + Ultimate Máxima @@ -2772,7 +3041,7 @@ Haga doble clic en las salas para entrar y charlar. - + You have a friend request from Tiene una solicitud de amistad de @@ -2787,7 +3056,7 @@ Haga doble clic en las salas para entrar y charlar. Este vecino %1 no está disponible en su red - + Use new certificate format (safer, more robust) Usar el nuevo formato de certificado (más seguro y robusto) @@ -2885,13 +3154,22 @@ Haga doble clic en las salas para entrar y charlar. *** Ningúno *** - + Use as direct source, when available Utilizar como fuente directa, cuando esté disponible - - + + IP-Addr: + Dir-IP: + + + + IP-Address + Dirección-IP + + + Recommend many friends to each others Recomendar varios amigos a los demás @@ -2901,12 +3179,17 @@ Haga doble clic en las salas para entrar y charlar. Recomendaciones de amigo - + + The text below is your Retroshare certificate. You have to provide it to your friend + El texto de debajo es su certificado Retroshare. Tiene que proporcionárselo a su amigo. + + + Message: Mensage: - + Recommend friends Recomendar amigos @@ -2926,17 +3209,12 @@ Haga doble clic en las salas para entrar y charlar. Por favor, seleccione al menos un amigo como destinatario. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Por favor observe que si añade demasiados amigos RetroShare requerirá cantidades excesivas de ancho de banda, memoria y CPU. Puede añadir tantos amigos como quiera, pero más de 40 probablemente requerirán demasiados recursos. - - - + Add key to keyring Añadir al grupo de claves ('keyring') - + This key is already in your keyring Esta clave ya está en su grupo de claves ('keyring') @@ -2952,7 +3230,7 @@ mensajes distantes a este par ('peer') incluso si no hace amigos. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. El certificado tiene un número de versión incorrecto. Recuerde que las redes de v0.6 y v0.5 son incompatibles. @@ -2962,10 +3240,10 @@ incluso si no hace amigos. Identificación de nodo no válida. - - + + Auto-download recommended files - Auto-descargar los ficheros recomendados + Auto-descargar los archivos recomendados @@ -2973,8 +3251,8 @@ incluso si no hace amigos. Se puede usar como fuente directa - - + + Require whitelist clearance to connect Requiere limpiar la lista blanca para conectar @@ -2984,7 +3262,7 @@ incluso si no hace amigos. Añadir IP a la lista blanca - + No IP in this certificate! ¡No hay IP en este certificado! @@ -2994,19 +3272,19 @@ incluso si no hace amigos. <p>Este certificado no tiene IP. Dependerá del descubrimiento y la DHT (tabla distribuida de hashes) para encontrarlo. A causa de que usted requiere que se limpie la lista blanca, el par (peer) generará una advertencia de seguridad en la pestaña de Novedades (feed). Desde allí puede añadir su IP a la lista blanca.</p> - + Added with certificate from %1 Añadido con el certificado de %1 - + Paste Cert of your friend from Clipboard Pegar certificado de su amigo desde el Portapapeles - + Certificate Load Failed:can't read from file %1 - La carga del certificado falló: No se pudo leer del fichero %1 + La carga del certificado falló: No se pudo leer del archivo %1 @@ -3875,7 +4153,7 @@ p, li { white-space: pre-wrap; } Enviar mensaje al foro - + Forum Foro @@ -3885,7 +4163,7 @@ p, li { white-space: pre-wrap; } Asunto - + Attach File Archivo adjunto @@ -3915,12 +4193,12 @@ p, li { white-space: pre-wrap; } Iniciar nuevo tema - + No Forum Ningún foro - + In Reply to En respuesta a @@ -3958,12 +4236,12 @@ p, li { white-space: pre-wrap; } ¿De veras quiere generar %1 mensajes? - + Send Enviar - + Forum Message Mensaje del foro @@ -3975,7 +4253,7 @@ Do you want to reject this message? ¿Quiere rechazar este mensaje? - + Post as Publicar como @@ -4010,8 +4288,8 @@ Do you want to reject this message? - Security policy: - Política de seguridad: + Visibility: + Visibilidad: @@ -4024,7 +4302,22 @@ Do you want to reject this message? Privado (Solamente por invitación) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + <html><head/><body><p>Si marca esto, sólo se pueden usar las identificaciones firmadas-con-PGP para unirse y hablar en esta sala. Esta limitación previene el spam anónimo ya que se hace posible para, al menos algunas personas en la sala, localizar el nodo spammer.</p></body></html> + + + + require PGP-signed identities + requiere identidades firmadas-con-PGP + + + + Security: + Seguridad: + + + Select the Friends with which you want to group chat. Seleccione los amigos para el chat de grupo. @@ -4034,12 +4327,22 @@ Do you want to reject this message? Amigos invitados - + + Put a sensible lobby name here + Ponga un nombre de sala llamativo aquí + + + + Set a descriptive topic here + Establezca aquí un asunto descriptivo + + + Contacts: Contactos: - + Identity to use: Identidad a usar: @@ -4164,7 +4467,7 @@ Do you want to reject this message? Save certificate to file - Guardar certificado en un fichero + Guardar certificado en un archivo @@ -4198,7 +4501,12 @@ Do you want to reject this message? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + <p>Retroshare usar la DHT (tabla de hashes dinámica) de Bittorrent como un proxy (interpuesto) para conexiones. No "almacena" su IP en la DHT. En su lugar, la DHT es usada por sus amigos para llegar a usted mientras se procesan peticiones DHT estándar. El indicador de estado se volverá verde tan pronto como Retroshare obtenga una respuesta DHT de uno de sus amigos.</p> + + + DHT Off DHT Inactivo @@ -4220,8 +4528,8 @@ Do you want to reject this message? - DHT Error - Error de DHT + No peer found in DHT + No se encontró ningún par (peer) en la DHT @@ -4318,7 +4626,7 @@ Do you want to reject this message? DhtWindow - + Net Status Estado de la red @@ -4348,7 +4656,7 @@ Do you want to reject this message? Dirección del vecino - + Name Nombre @@ -4393,7 +4701,7 @@ Do you want to reject this message? ID Rs - + Bucket Cubo @@ -4419,17 +4727,17 @@ Do you want to reject this message? - + Last Sent Último enviado - + Last Recv Último recibido - + Relay Mode Modo del repetidor @@ -4464,7 +4772,22 @@ Do you want to reject this message? Ancho de banda - + + IP + IP + + + + Search IP + Buscar IP + + + + Copy %1 to clipboard + Copiar %1 al portapapeles + + + Unknown NetState EstadoRed desconocido @@ -4669,7 +4992,7 @@ Do you want to reject this message? Desconocido - + RELAY END FINAL REPETIDOR @@ -4703,19 +5026,24 @@ Do you want to reject this message? - + %1 secs ago Hace %1 seg. - + %1B/s %1B/s - + + Relays + Repetidores + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4725,13 +5053,15 @@ Do you want to reject this message? nunca - + + + DHT DHT - + Net Status: Estado de red: @@ -4801,12 +5131,33 @@ Do you want to reject this message? Repetidor: - + + Filter: + Filtro: + + + + Search Network + Buscar en la red + + + + + Peers + Pares + + + + Relay + Repetidor + + + DHT Graph Gráfica de la DHT - + Proxy VIA Proxy VIA @@ -4942,7 +5293,7 @@ los hashes al conectarlo. ExprParamElement - + to @@ -5047,7 +5398,7 @@ los hashes al conectarlo. FileTransferInfoWidget - + Chunk map Mapa de bloques @@ -5222,7 +5573,7 @@ los hashes al conectarlo. FlatStyle_RDM - + Friends Directories Carpetas de amigos @@ -5298,90 +5649,40 @@ los hashes al conectarlo. FriendList - - - Status - Estado - - - - - + Last Contact Último contacto - - - Avatar - Avatar - - - + Hide Offline Friends Ocultar amigos desconectados - - State - Estado + + export friendlist + exportar lista de amigos - Sort by State - Ordenar por estado + export your friendlist including groups + exportar su lista de amigos incluyendo grupos - - Hide State - Ocultar estado - - - - - Sort Descending Order - Orden descendente - - - - - Sort Ascending Order - Orden ascendente - - - - Show Avatar Column - Mostrar columna de Avatar - - - - Name - Nombre + + import friendlist + importar lista de amigos - Sort by Name - Ordenar por nombre - - - - Sort by last contact - Ordenar por último contacto - - - - Show Last Contact Column - Mostrar columna de último contacto - - - - Set root is Decorated - Mostrar lugares + import your friendlist including groups + importar su lista de amigos incluyendo grupos + - Set Root Decorated - Mostrar lugares + Show State + Mostrar estado @@ -5390,7 +5691,7 @@ los hashes al conectarlo. Mostrar grupos - + Group Grupo @@ -5431,7 +5732,17 @@ los hashes al conectarlo. Añadir a grupo - + + Search + Buscar + + + + Sort by state + Ordenar por estado + + + Move to group Mover a grupo @@ -5461,40 +5772,110 @@ los hashes al conectarlo. Contraer todos - - + Available Disponible - + Do you want to remove this Friend? ¿Quiere eliminar este amigo? - - Columns - Columnas + + + Done! + ¡Hecho! - - - + + Your friendlist is stored at: + + Su lista de amigos se almacena en: + + + + + +(keep in mind that the file is unencrypted!) + +(¡recuerde que el fichero no está cifrado!) + + + + + Your friendlist was imported from: + + Su lista de amigos se importó de: + + + + + Done - but errors happened! + Hecho - ¡pero hubo errores! + + + + +at least one peer was not added + +al menos un par no fue añadido + + + + +at least one peer was not added to a group + +al menos un par no fue añadido al grupo + + + + Select file for importing yoour friendlist from + Seleccione un fichero para importar su lista de amigos desde + + + + Select a file for exporting your friendlist to + Seleccione un fichero para exportar su lista de amigos a + + + + XML File (*.xml);;All Files (*) + Fichero XML (*.xml);;Todos los ficheros (*) + + + + + + Error + Error + + + + Failed to get a file! + ¡No se pudo obtener un fichero! + + + + File is not writeable! + + ¡El fichero no es escribible! + + + + + File is not readable! + + ¡El fichero no es legible! + + + + IP IP - - Sort by IP - Ordenar por IP - - - - Show IP Column - Mostrar columna IP - - - + Attempt to connect Intentando conectar @@ -5504,7 +5885,7 @@ los hashes al conectarlo. Crear nuevo grupo - + Display Mostrar @@ -5514,12 +5895,7 @@ los hashes al conectarlo. Pegar enlace de certificado - - Sort by - Ordenar por - - - + Node Nodo @@ -5529,17 +5905,17 @@ los hashes al conectarlo. Eliminar nodo amigo - + Do you want to remove this node? ¿Quiere eliminar este nodo? - + Friend nodes Nodos amigos - + Send message to whole group Enviar mensaje a todo el grupo @@ -5587,30 +5963,35 @@ los hashes al conectarlo. Buscar: - - All - Todo + + Sort by state + Ordenar por estado - None - Ninguna - - - Name Nombre - + Search Friends Buscar a amigos + + + Mark all + Mark todo + + + + Mark none + No marcar nada + FriendsDialog - + Edit status message Editar mensaje de estado @@ -5704,12 +6085,17 @@ los hashes al conectarlo. Llavero - - Retroshare broadcast chat: messages are sent to all connected friends. - Difusión de chat de Retroshare: Los mensajes se envían a todos los amigos conectados. + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Red</h1> <p>La pestaña de Red muestra sus nodos RetroShare amigos: los nodos RetroShare vecinos que están conectados a usted. </p> <p>Puede agrupar nodos juntos para permitir un nivel de regulación más fino del acceso a la información, por ejemplo para permitir que sólo algunos nodos vean algunos de sus archivos.</p> <p>A la derecha, encontrará 3 pestañas útiles: <ul> <li>Difusión envía mensajes a todos los nodos conectados a la vez</li> <li>Gráfica de red local muestra la red alrededor de usted, basándose en la información de descubrimiento</li> <li>El juego de claves contiene claves de nodos que ha recopilado, en su mayoría redirigidos hacia usted por sus nodos amigos</li> </ul> </p> - + + Retroshare broadcast chat: messages are sent to all connected friends. + Chat de difusión de RetroShare: Los mensajes se envían a todos los amigos conectados. + + + Network Red @@ -5720,12 +6106,7 @@ los hashes al conectarlo. Gráfica de la red - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Red</h1> <p>La pestaña Red muestra sus nodos Retroshare amigos: los nodos Retroshare vecinos que están conectados con usted.</p> <p>Puede juntar nodos agrupándolos para permitir un ajuste más fino en el nivel de acceso a la información, por ejemplo para permitir que sólo determinados nodos vean algunos de sus ficheros.</p> <p>A la derecha, encontrará 3 pestañas útiles: <ul><li>Broadcast envía mensajes a todos los nodos conectados a la vez</li> <li>La gráfica de red local muestra la red que le rodea, basándose en la información descubierta</li> <li>El juego de claves contiene las claves de nodos que ha recopilado, la mayoría reenviadas a usted por sus nodos amigos</li> </ul> </p> - - - + Set your status message here. Configure su mensaje de estado aquí. @@ -5738,7 +6119,7 @@ los hashes al conectarlo. Crear un nuevo perfil - + Name Nombre @@ -5792,7 +6173,7 @@ anonymous, you can use a fake email. Contraseña (comprobado) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/><body><p align="justify">Antes de continuar, mueve el ratón para que RetroShare recopile tanta aleatoriedad como pueda. Llenar la barra de progreso hasta el 20% es necesario, hasta el 100% es recomenable.</p></body></html> @@ -5807,7 +6188,7 @@ anonymous, you can use a fake email. Las contraseñas no coinciden - + Port Puerto @@ -5851,29 +6232,24 @@ anonymous, you can use a fake email. Nodo oculto no válido - - Please enter a valid address of the form: 31769173498.onion:7800 - Por favor introduzca una dirección válida de la forma: 31769173498.onion:7800 - - - + Node field is required with a minimum of 3 characters Se requiere que el campo del nodo tenga un mínimo de 3 caracteres - + Failed to generate your new certificate, maybe PGP password is wrong! ¡Fallo al generar su nuevo certificado, quizá la contraseña PGP está mal! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" Puede crear un perfil nuevo con este formulario. Como alternativa puede usar un perfil existente. Simplemente desmarque "Crear un nuevo perfil" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. Puede crear y ejecutar nodos de RetroShare usando el mismo perfil en distintas computadoras. Para hacerlo así tan solo exporte el perfil seleccionado, impórtelo en la otra computadora, y cree un nuevo nodo con él. @@ -5895,7 +6271,7 @@ Como alternativa puede usar un perfil existente. Simplemente desmarque "Cre - + Create a new profile Crear un nuevo perfil @@ -5920,12 +6296,17 @@ Como alternativa puede usar un perfil existente. Simplemente desmarque "Cre Crear un nodo oculto - + Use profile Usar perfil - + + hidden address + dirección oculta + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. Su perfil está asociado con un par de claves PGP. RetroShare actualmente ignora las claves DSA. @@ -5941,12 +6322,17 @@ Como alternativa puede usar un perfil existente. Simplemente desmarque "Cre <html><head/><body><p>Este es su puerto de conexión.</p><p>Cualquier valor entre 1024 y 65535 </p><p>debería estar bien. Puede cambiarlo más tarde.</p></body></html> - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + <html><head/><body><p>Esto puede ser una dirección onion de Tor con la forma: xa76giaf6ifda7ri63i263.onion <br/>o una dirección I2P con la forma: [52 caracteres].b32.i2p </p><p>Para obtener una, tiene que configurar bien Tor o I2P para crear un nuevo servicio oculto / túnel de servidor. Si aún no tiene uno, todavía puede continuar, y crearlo luego en el panel de configuración de Opciones-&gt;Servidor-&gt;Servicio Oculto de RetroShare.</p></body></html> + + + PGP key length Tamaño de clave PGP - + Create new profile @@ -5963,7 +6349,12 @@ Como alternativa puede usar un perfil existente. Simplemente desmarque "Cre Haga clic para crear su nodo y/o perfil - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + [Requerido] Dirección Tor/I2P - Ejemplos: xa76giaf6ifda7ri63i263.onion (obtenida por usted de Tor) + + + [Required] This password protects your private PGP key. [Requerido] Esta contraseña protege su clave PGP privada. @@ -6024,7 +6415,7 @@ Como alternativa puede importar un perfil (previamente exportado). Simplemente d RetroShare profile files (*.asc) - Ficheros de perfiles de RetroShare (*.asc) + Archivos de perfiles de RetroShare (*.asc) @@ -6080,7 +6471,12 @@ y usar el botón Importar para cargarlo Su perfil fue importado con éxito: - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + Por favor, introduzca una dirección válida con la forma 31769173498.onion:7800 o [52 caracteres].b32.i2p + + + PGP key pair generation failure @@ -6088,12 +6484,12 @@ y usar el botón Importar para cargarlo - + Profile generation failure Fallo al generar perfil - + Missing PGP certificate Certificado PGP desaparecido @@ -6111,21 +6507,6 @@ Cuando se le pida, escriba su contraseña PGP para firmar su nueva clave.You can create a new profile with this form. Puede crear un nuevo perfil con este formulario. - - - Tor address - Dirección de Tor - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - <html><head/><body><p>Esta es una dirección onion de Tor con la forma: xa76giaf6ifda7ri63i263.onion </p><p>Para obtener una, tiene que configurar Tor para crear un nuevo servicio oculto. Si aún no tiene una, todavía puede continuar y conseguirla más tarde en Opciones-&gt;Servidor-&gt;Tor del panel de configuración de RetroShare.</p></body></html> - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - [Requerida] Ejemplos: xa76giaf6ifda7ri63i263.onion (obtenida por usted de Tor) - GeneralPage @@ -6284,23 +6665,24 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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"> 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:12pt;">Cuando sus amigos le envíen sus invitaciones, pulse en Añadir amigos para abrir la ventana.</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: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-size:12pt;">Corte y pegue los &quot;Certificados ID&quot; de sus amigos en la ventana y añádalos como amigos.</span></p></body></html> +<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:12pt;">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"> +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:12pt;">Cuando sus amigos le envíen sus invitaciones, haga clic para abrir la ventana Añadir Amigos.</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: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-size:12pt;">Pegue los &quot;Certificados de identificación&quot; de sus amigos en la ventana, y añadales como amigos.</span></p></body></html> - - Connect To Friends - Conectar con amigos - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6311,12 +6693,50 @@ 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: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-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-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"> 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:12pt;">¡Estén en línea al mismo tiempo, y RetroShare automáticamente los conectará!</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: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-size:12pt;">Su cliente tiene que encontrar la Red RetroShare antes de que pueda hacer las conexiones.</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:12pt;">Esto tarda unos 5-30 minutos la primera vez que inicie 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: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-size:12pt;">El indicador DHT (en la barra de estado) se pone verde cuando se pueden hacer las conexiones</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: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-size:12pt;">Después de un par de minutos, el indicador NAT (también en la barra de estado) cambia a amarillo o verde.</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:12pt;">Si permanece rojo, entonces es que tiene un cortafuegos, con el que RetroShare luchará para conectarse a través de él.</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: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-size:12pt;">Busque en la sección de Ayuda adicional para obtener más consejos acerca de la conexión.</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:12pt;">¡Permanezca conectado al mismo tiempo que sus amigos, y Retroshare conectará automáticamente con usted!</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: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-size:12pt;">Su cliente necesita encontrar la red Retroshare antes de poder hacer conexiones.</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:12pt;">Esto lleva entre 5-30 minutos la primera vez que inicie 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: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-size:12pt;">El indicador de la DHT (en la barra de estado) se vuelve verde cuando puede realizar conexiones.</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: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-size:12pt;">Tras un par de minutos, el indicador de NAT (también en la barra de estado) cambia a amarillo o verde.</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:12pt;">Si permanece rojo, entonces tiene un cortafuegos molesto, con el que RetroShare lucha para conectar a través de él.</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: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-size:12pt;">Vea la sección Ayuda Adicional para más recomendaciones sobre cómo conectar.</span></p></body></html> - - Advanced: Open Firewall Port - Avanzado: Abrir el puerto del cortafuegos + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-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"> +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:12pt;">Puede mejorar su rendimiento de Retroshare abriendo un puerto externo. </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:12pt;">Esto acelerará las conexiones y permitirá a más personas conectar con usted. </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: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-size:12pt;">La forma más fácil de hacer esto es habilitando UPnP en su dispositivo inalámbrico o 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-size:12pt;">Como cada router es diferente, necesitará averiguar el modelo de su router y buscar las instrucciones en Internet.</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: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-size:12pt;">Si nada de esto tiene sentido para usted, no se preocupe por ello, Retroshare todavía funcionará.</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: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-size:8pt;"></p></body></html> @@ -6324,44 +6744,52 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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"> 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:12pt;">Puede mejorar el rendimiento de Retroshare abriendo un puerto externo. </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:12pt;">Esto acelerará las conexiones y permitirá que más gente se conecte con usted </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: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-size:12pt;">La forma más sencilla de hacerlo es activando UPnP en su modem o router wireless.</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:12pt;">Como cada router es diferente, necesita encontrar su modelo de router y buscar en Google para obtener instrucciones.</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: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-size:12pt;">Si nada de esto tiene sentido para usted, no se preocupe por ello, Retroshare seguirá funcionando.</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: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-size:8pt;"></p></body></html> - - - - Further Help and Support - Más ayuda y soporte técnico - - - - <!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: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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-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-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-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"> 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:12pt;">¿Tiene problemas para empezar a utilizar 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: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-size:12pt;">1) busque en el Wiki de preguntas frecuentes. Esto es un poco viejo, pero estamos tratando de ponerlo al día.</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: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-size:12pt;">2) eche un vistazo a los foros en línea. Haga preguntas y discuta las características.</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: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-size:12pt;">3) inténtelo en los foros internos de RetroShare </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">»- Estos estarán en línea una vez que se conecte a sus amigos.</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: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-size:12pt;">4) Si todavía está atascado. Envíenos un correo electrónico.</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: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-size:12pt;">Disfrute de 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:12pt;">¿Tiene problemas iniciándose con 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: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-size:12pt;">1) Mire al wiki de preguntas frecuentes (FAQ). Este es un poco antiguo, estamos tratando de actualizarlo.</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: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-size:12pt;">2) Revise los foros en línea. Formule preguntas y discuta características.</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: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-size:12pt;">3) Pruebe en los foros internos de RetroShare </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - Estos entran en línea una vez este conectado a amigos.</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: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-size:12pt;">4) Si aún está estancado, escríbanos un correo.</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: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-size:12pt;">Disfrute del Retrosharing</span></p></body></html> - + + Connect To Friends + Conectar con amigos + + + + Advanced: Open Firewall Port + Avanzado: Abrir el puerto del cortafuegos + + + + Further Help and Support + Más ayuda y soporte técnico + + + Open RS Website Abrir sitio web de RS @@ -6454,82 +6882,104 @@ p, li { white-space: pre-wrap; } Estadísticas del router - + + GroupBox + GroupBox + + + + ID + Identificación + + + + Identity Name + Nombre de la identidad + + + + Destinaton + Destino + + + + Data status + Estado de los datos + + + + Tunnel status + Estado del túnel + + + + Data size + Tamaño de los datos + + + + Data hash + Hash de los datos + + + + Received + Recibido + + + + Send + Enviado + + + + Branching factor + Factor de ramificado + + + + Details + Detalles + + + Unknown Peer Par desconocido + + + Pending packets + Paquetes pendientes + + + + Unknown + Desconocido + GlobalRouterStatisticsWidget - - Pending packets - Paquetes pendientes - - - + Managed keys Claves administradas - + Routing matrix ( Matriz de enrutado ( - - Id - Identificación + + [Unknown identity] + [Identidad desconocida] - - Destination - Destino - - - - Data status - Estado de los datos - - - - Tunnel status - Estado del túnel - - - - Data size - Tamaño de los datos - - - - Data hash - Identificador (hash) de los datos - - - - Received - Recibido - - - - Send - Enviar - - - + : Service ID = : Identificación del servicio = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Pulse y arrastre los nodos aquí, y haga zoom con la rueda del ratón o con las teclas '+' o '-' - - GroupChatToaster @@ -6709,7 +7159,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Título @@ -6729,7 +7179,7 @@ p, li { white-space: pre-wrap; } Buscar por la descripción - + Sort by Name Ordenar por nombre @@ -6743,13 +7193,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post Ordenar por última entrada + + + Sort by Posts + Ordenar por mensajes + Display Mostrar - + You have admin rights Tiene derechos de administrador @@ -6762,7 +7217,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and y @@ -6860,7 +7315,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Canales @@ -6871,17 +7326,22 @@ p, li { white-space: pre-wrap; } Crear canal - + Enable Auto-Download Activar descarga automática - + My Channels Mis canales - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Canales</h1> <p>Canales le permite publicar datos (ej. películas, música) que se difundirán por la red</p> <p>Puede ver los canales a los que sus amigos están suscritos, y redirigir automáticamente los canales a los que usted está suscrito a sus amigos. Esto promociona los buenos canales en la red.</p> <p>Sólo el creador del canal puede publicar en ese canal. Los otros pares en la red únicamente pueden leer de ellos, a menos que sea un canal privado. No obstante puede compartir los derechos de publicación o de lectura con nodos RetroShare amigos.</p> <p>Los canales pueden crearse anónimos, o adjuntos a una identidad RetroShare para que los lectores puedan contactar con usted si lo necesitan. Habilite "Permitir comentarios" si quiere permitir a los usuarios comentar sus publicaciones.</p> <p>Las publicaciones en el canal se borran después de %1 meses.</p> + + + Subscribed Channels Canales suscritos @@ -6896,14 +7356,30 @@ p, li { white-space: pre-wrap; } Otros canales - + + Select channel download directory + Seleccione el directorio de descarga del canal + + + Disable Auto-Download Desactivar descarga automática - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Canales</h1> <p>Los canales le permite publicar datos (ej. películas, música) que se diseminarán en la red</p> <p>Puede ver los canales a los que están suscritos sus amigos, y redirigir automáticamente los canales a los que se suscriba a sus amigos. Esto promociona buenos canales en la red.</p> <p>Sólo el creador del canal puede publicar en ese canal. Otros pares (peers) en la red sólo pueden leer de él, a menos que el canal sea privado. Sin embargo, puede compartir los derechos de publicación o de lectura con nodos RetroShare amigos.</p> <p>Los canales pueden hacerse anónimos, o adjuntos a una identidad de RetroShare para que los lectores puedan contactar con usted si lo necesitan. Habilite "Permitir comentarios" si quiere permitir a los usuarios comentar en sus publicaciones.</p> <p>Las publicaciones en el canal se borran después de %1 meses.</p> + + Set download directory + Establecer directorio de descarga + + + + + [Default directory] + [Directorio predeterminado] + + + + Specify... + Especificar... @@ -6951,7 +7427,7 @@ p, li { white-space: pre-wrap; } Are you sure that you want to cancel and delete the file? - ¿Está seguro de que quiere cancelar y borrar el fichero? + ¿Está seguro de que quiere cancelar y borrar el archivo? @@ -6969,7 +7445,7 @@ p, li { white-space: pre-wrap; } Filename - Nombre del fichero + Nombre del archivo @@ -7230,12 +7706,12 @@ p, li { white-space: pre-wrap; } Filename - Nombre del fichero + Nombre del archivo Search Filename - Buscar nombre de fichero + Buscar nombre de archivo @@ -7243,7 +7719,7 @@ p, li { white-space: pre-wrap; } Ningún canal seleccionado - + Disable Auto-Download Desactivar descarga automática @@ -7260,10 +7736,10 @@ p, li { white-space: pre-wrap; } Show files - Mostrar ficheros + Mostrar archivos - + Feeds Novedades (feeds) @@ -7273,7 +7749,7 @@ p, li { white-space: pre-wrap; } Archivos - + Subscribers Suscriptores @@ -7431,7 +7907,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum Crear nuevo foro @@ -7563,12 +8039,12 @@ before you can comment Formulario - + Start new Thread for Selected Forum Iniciar nuevo tema para el foro seleccionado - + Search forums Buscar foros @@ -7589,7 +8065,7 @@ before you can comment - + Title Título @@ -7602,13 +8078,18 @@ before you can comment - + Author Autor - - + + Save image + Guardar imagen + + + + Loading Cargando @@ -7638,7 +8119,7 @@ before you can comment Siguiente no leído - + Search Title Buscar por el título @@ -7663,17 +8144,27 @@ before you can comment Buscar por contenido - + No name Sin nombre - + Reply Responder + Ban this author + Excluir a este autor + + + + This will block/hide messages from this person, and notify neighbor nodes. + Esto bloqueará/ocultará mensajes de esta persona, y notificará a los nodos vecinos. + + + Start New Thread Iniciar nuevo tema @@ -7711,7 +8202,7 @@ before you can comment Copiar enlace de RetroShare - + Hide Ocultar @@ -7721,7 +8212,38 @@ before you can comment Expandir - + + This message was obtained from %1 + Este mensaje fue obtenido de %1 + + + + [Banned] + [Excluido] + + + + Anonymous IDs reputation threshold set to 0.4 + El umbral de reputación de identidades anónimas se estableció a 0,4 + + + + Message routing info kept for 10 days + La información de enrutamiento de mensaje se conserva durante 10 días + + + + + Anti-spam + Anti-spam + + + + [ ... Redacted message ... ] + [ ... Mensaje redactado ... ] + + + Anonymous Anónimo @@ -7741,29 +8263,55 @@ before you can comment [ ... Mensaje perdido ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + <p><font color="#ff0000"><b>El autor de este mensaje (con Identificación %1) está excluído.</b> + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + <UL><li><b><font color="#ff0000">Los mensajes de este autor no serán transmitidos. </font></b></li> + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + <li><b><font color="#ff0000">Los mensajes de este autor se reemplazan por este texto. </font></b></li></ul> + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + <p><b><font color="#ff0000">Puede forzar la visibilidad y transmisión de mensajes estableciendo una opinión diferente para esa identificación en la pestaña de Personas.</font></b></p> + + + + + + + RetroShare RetroShare - + No Forum Selected! ¡Ningún foro seleccionado! - + + + You cant reply to a non-existant Message No puede responder a un mensaje inexistente + You cant reply to an Anonymous Author No puede responder a un autor anónimo - + Original Message Mensaje original @@ -7788,7 +8336,7 @@ before you can comment En %1, %2 escribió: - + Forum name Nombre del foro @@ -7803,7 +8351,7 @@ before you can comment Posteos (en nodos vecinos) - + Description Descripción @@ -7813,12 +8361,12 @@ before you can comment Por - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> <p>Suscribirse al foro reunirá las publicaciones disponibles de sus amigos suscritos, y hará el foro visible para todos los demás amigos. </p><p>Posteriormente puede desuscribirse desde el menú contextual de la lista del foro a la izquierda.</p> - + Reply with private message Responder con un mensaje privado @@ -7834,7 +8382,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Foros</h1> <p>Los foros de RetroShare se parecen a los foros de Internet, pero funcionan de forma descentralizada</p> <p>Puede ver los foros a los que están suscritos sus amigos, y puede redireccionar los foros a los que usted está suscrito hacia sus amigos. Esto promociona foros interesantes en la red.</p> <p>Los mensajes del foro se borran después de %1 meses.</p> + + + Forums Foros @@ -7864,11 +8417,6 @@ before you can comment Other Forums Otros foros - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Foros</h1> <p>Los foros de RetroShare se parecen a los foros de Internet, pero funcionan de una forma descentralizada</p> <p>Usted ve los foros a los que sus amigos están suscritos, y redirige los foros a los que se suscribe a sus amigos. Esto promociona automáticamente foros interesantes en la red.</p> <p>Los mensajes del foro se borran después de %1 meses.</p> - GxsForumsFillThread @@ -7891,13 +8439,13 @@ before you can comment GxsGroupDialog - - + + Name Nombre - + Add Icon Añadir icono @@ -7912,7 +8460,7 @@ before you can comment Compartir llave pública - + check peers you would like to share private publish key with marcar los vecinos con los que le gustaría compartir privadamente su llave pública @@ -7922,36 +8470,36 @@ before you can comment Compartir llave con - - + + Description Descripción - + Message Distribution Distribución del mensaje - + Public Público - - + + Restricted to Group Restringida al grupo - - + + Only For Your Friends Sólo para sus amigos - + Publish Signatures Publicar firmas @@ -7981,7 +8529,7 @@ before you can comment Firmas personales - + PGP Required Requerido GPG @@ -7997,12 +8545,12 @@ before you can comment - + Comments Comentarios - + Allow Comments Permitir comentarios @@ -8012,33 +8560,73 @@ before you can comment Sin comentarios - + + Spam-protection + Protección-del-spam + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + <html><head/><body><p>Esto hace que el medio incremente el umbral de reputación hasta 0,4 para identidades anónimas, mientras lo mantiene en 0,0 para identidades vinculadas por PGP. Por tanto, las identidades anónimas aún pueden publicar mensajes, si su puntuación de reputación local está por encima de ese umbral.</p></body></html> + + + + Favor PGP-signed ids + Favorecer identificaciones firmadas con PGP + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + <html><head/><body><p align="justify">Esta característica permite a RetroShare mantener localmente un registro de quién le reenvió cada mensaje hasta usted, durante los últimos 10 días. Aunque inutil por si sola (y de cualquier modo estando ya disponible) esta información puede ser usada por un grupo de amigos de forma colaborativa para localizar con facilidad las fuentes de spam. Esto debe usarse con cuidado, ya que reduce significativamente el anonimato de remiones de mensajes.</p></body></html> + + + + Keep track of posts + Mantener seguimiento de remisiones + + + + Anti spam + Anti spam + + + + PGP-signed ids + Identificaciones firmadas con PGP + + + + Track of Posts + Seguimiento de remisiones + + + Contacts: Contactos: - + Please add a Name Por favor añadir un nombre - + Load Group Logo Cargar el logo del grupo - + Submit Group Changes Enviar cambios del grupo - + Failed to Prepare Group MetaData - please Review Fallo al preparar Metadatos del grupo - por favor revise - + Will be used to send feedback Se usará para enviar comentarios @@ -8048,12 +8636,12 @@ before you can comment Propietario: - + Set a descriptive description here Configure una descripción explicativa aquí - + Info Información @@ -8126,7 +8714,7 @@ before you can comment Vista previa de impresión - + Unsubscribe Anular suscripción @@ -8136,12 +8724,12 @@ before you can comment Suscribirse - + Open in new tab Abrir en una nueva pestaña - + Show Details Mostrar detalles @@ -8166,12 +8754,12 @@ before you can comment Marcar todo como no leído - + AUTHD Autentificado - + Share admin permissions Compartir permisos de administrador @@ -8179,7 +8767,7 @@ before you can comment GxsIdChooser - + No Signature Sin Firma @@ -8192,7 +8780,7 @@ before you can comment GxsIdDetails - + Loading Cargando @@ -8207,8 +8795,15 @@ before you can comment Sin Firma - + + + + [Banned] + [Excluido] + + + Authentication Autentificación @@ -8223,7 +8818,7 @@ before you can comment anónimo - + Identity&nbsp;name Nombre&nbsp;de&nbsp;identidad @@ -8238,7 +8833,7 @@ before you can comment Firmado&nbsp;por - + [Unknown] [Desconocida] @@ -8256,6 +8851,49 @@ before you can comment Sin nombre + + GxsTunnelsDialog + + + Authenticated tunnels: + Túneles autentificados: + + + + Tunnel ID: %1 + Identificador de túnel: %1 + + + + from: %1 + de: %1 + + + + to: %1 + a: %1 + + + + status: %1 + estado: %1 + + + + total sent: %1 bytes + total envd: %1 bytes + + + + total recv: %1 bytes + total recb: %1 bytes + + + + Unknown Peer + Par (peer) desconocido + + HashBox @@ -8451,48 +9089,7 @@ before you can comment Acerca de - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare es de código abierto y multiplataforma, </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-weight:600;">es una plataforma de comunicación descentralizada privada y segura.»</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-weight:600;">Que le permite compartir de forma segura con sus amigos, </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-weight:600;">usando una red de anillos de confianza para autenticar pares y OpenSSL para cifrar todas las comunicaciones. </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-weight:600;">RetroShare ofrece intercambio de archivos, chat, mensajes y canales</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-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; font-weight:600;">Enlaces externos útiles para obtener más información:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;"> -Página de Retroshare</span></a></li> - <li style=" font-size:12pt; 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"> -Wiki de Retroshare</a></li> - <li style=" font-size:12pt; 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"> -Foro de RetroShare</a></li> - <li style=" font-size:12pt; 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"> -Página del proyecto Retroshare</a></li> - <li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Blog del equipo de RetroShare</a></li> - <li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Twiter del desarrollo de RetroShare</a></li></ul></body></html> - - - + Authors Autores @@ -8552,7 +9149,44 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Polaco: </span>Maciej Mrug</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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</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 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-weight:600;">RetroShare es una plataforma de comunicación descentralizada, </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-weight:600;">privada y segura, de código abierto y transversal.</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-weight:600;">Le permite compartir de forma segura con sus amigos, </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-weight:600;">usando una (identidad) web-of-trust para autentificar pares (peers), y OpenSSL para cifrar todas las comunicaciones. </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-weight:600;">RetroShare proporciona intercambio de archivos, chat, mensajes y canales</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-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; font-weight:600;">Enlaces externos útiles para más información:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Página web de RetroShare</span></a></li> +<li style=" font-size:12pt; 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">Wiki de RetroShare</a></li> +<li style=" font-size:12pt; 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">Foro de RetroShare</a></li> +<li style=" font-size:12pt; 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">Página del proyecto RetroShare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Blog del equipo de RetroShare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Twitter de desarrollo de RetroShare</a></li></ul></body></html> + + + Libraries Librerías @@ -8587,14 +9221,14 @@ p, li { white-space: pre-wrap; } Error opening help file: - Error al abrir el fichero de ayuda: + Error al abrir el archivo de ayuda: IdDetailsDialog - + Person Details Detalles de la persona @@ -8629,78 +9263,108 @@ p, li { white-space: pre-wrap; } Identificación de la identidad : - + + Last used: + Último uso: + + + Your Avatar Click here to change your avatar Su avatar - + Reputation Reputación - - Overall - Total + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + <html><head/><body><p>La opinión media de los nodos vecinos acerca de esta identidad. Negativo es malo,</p><p>positivo es bueno. Cero es neutral.</p></body></html> - - Implicit - Implícito - - - - Opinion - Opinión - - - - Peers - Vecinos - - - - Edit Reputation - Editar reputación - - - - Tweak Opinion - Ajustar opinión - - - - Accept (+100) - Aceptar (+100) + + Your opinion: + Su opinión: - Positive (+10) - Positiva (+10) + Neighbor nodes: + Nodos vecinos: - Negative (-10) - Negativa (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Su propia opinión acerca de una identidad marca la pauta de la visibilidad de esa identidad para si mismo,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">y se comparte con sus amigos. Se calcula una puntuación final de acuerdo a una fórmula que recoge su propia opinión y las de sus amigos acerca de alguien:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = opinión_propia * a + opinión_de_amigos * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">El factor 'a' depende del tipo de identificación. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- identificaciones anónimas: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- identificaciones firmadas-con-PGP por claves PGP desconocidas: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La puntuación global se usa en salas de chat para decidir sobre las acciones a tomar para cada identidad específica:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Los mensajes no se guardan, ni se reenvían </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Los mensajes se ocultan, pero todavía se transmiten</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">La puntuación global se calcula de tal manera que no es posible para una sola persona cambiar determinísticamente el estado de alguien en nodos vecinos.</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;"><br /></p></body></html> - - Ban (-100) - Excluir (-100) + + Negative + Negativo - Custom - Personalizar + Neutral + Neutral - - Modify - Modificar + + Positive + Positivo - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + <html><head/><body><p>Puntuación de reputación global, contando la suya y las de sus amigos.</p><p>Negativo es malo, positivo es bueno, cero es neutral. Si la puntuación es demasiado baja,</p><p>la identidad se señalará como mala, y será rechazada en foros, salas de chat,</p><p>canales, etc.</p></body></html> + + + + Overall: + Global: + + + Unknown real name Nombre real desconocido @@ -8712,7 +9376,7 @@ p, li { white-space: pre-wrap; } Identity owned by you, linked to your Retroshare node - Identidad propiedad de usted, asociada a su nodo Retroshare + Identidad propiedad de usted, asociada a su nodo RetroShare @@ -8722,54 +9386,75 @@ p, li { white-space: pre-wrap; } Owned by a friend Retroshare node - Propiedad de un nodo Retroshare amigo + Propiedad de un nodo RetroShare amigo Owned by 2-hops Retroshare node - Propiedad de un nodo Retroshare a 2-saltos de distancia + Propiedad de un nodo RetroShare a 2-saltos de distancia Owned by unknown Retroshare node - Propiedad de un nodo Retroshare desconocido + Propiedad de un nodo RetroShare desconocido Anonymous identity Identidad anónima + + + +50 Known PGP + +50 PGP conocido + + + + +10 UnKnown PGP + +10 PGP desconocido + + + + +5 Anon Id + +5 Identificación anónima + + + + OK + Correcto + + + + Banned + Excluido + IdDialog - + New ID Nueva ID - + + All Todo - + + Reputation Reputación - - - Todo - Pendiente - - Search Buscar - + Unknown real name Nombre real desconocido @@ -8779,72 +9464,29 @@ p, li { white-space: pre-wrap; } ID anónima - + Create new Identity Crear nueva identidad - - Overall - Total + + Persons + Personas - - Implicit - Implícito + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + - - Opinion - Opinión - - - - Peers - Vecinos - - - - Edit reputation - Editar reputación - - - - Tweak Opinion - Ajustar opinión - - - - Accept (+100) - Aceptar (+100) - - - - Positive (+10) - Positiva (+10) - - - - Negative (-10) - Negativa (-10) - - - - Ban (-100) - Excluir (-100) - - - - Custom - Personalizar - - - - Modify - Modificar - - - + Edit identity Editar identidad @@ -8865,42 +9507,42 @@ p, li { white-space: pre-wrap; } Ejecuta un chat a distancia con este par (peer) - - Identity name - Nombre de la identidad - - - + Owner node ID : Identificación del nodo propietario : - + Identity name : Nombre de la identidad : - + + () + () + + + Identity ID Identificación de la identidad - + Send message Enviar mensaje - + Identity info Información de la identidad - + Identity ID : Identificación de la identidad : - + Owner node name : Nombre del nodo propietario : @@ -8910,7 +9552,57 @@ p, li { white-space: pre-wrap; } Tipo: - + + Send Invite + Enviar invitación + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + <html><head/><body><p>La opinión media de los nodos vecinos acerca de esta identidad. Negativo es malo,</p><p>positivo es bueno. Cero es neutral.</p></body></html> + + + + Your opinion: + Su opinión: + + + + Neighbor nodes: + Nodos vecinos: + + + + Negative + Negativo + + + + Neutral + Neutral + + + + Positive + Positivo + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + <html><head/><body><p>Puntuación de reputación global, contando la suya y las de sus amigos.</p><p>Negativo es malo, positivo es bueno, cero es neutral. Si la puntuación es demasiado baja,</p><p>la identidad se señalará como mala, y será rechazada en foros, salas de chat,</p><p>canales, etc.</p></body></html> + + + + Overall: + Global: + + + + Contacts + Contactos + + + Owned by you Propiedad de usted @@ -8920,12 +9612,17 @@ p, li { white-space: pre-wrap; } Anónimo - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identidades</h1> <p>En esta pestaña puede crear/editar pseudo-identidades anónimas. </p> <p>Las identidades se usan para identificar sus datos de forma segura: firmar posts en foros y canales, y recibir las reacciones usando el sistema de correo electrónico integrado de Retroshare, publicar comentarios a continuación de las publicaciones del canal, etc.</p> <p> Las identidades opcionalmente pueden ser firmadas por el certificado de su nodo Retroshare. Es más fácil conceder confianza a las identidades firmadas, pero son más fácilmente asociables a la dirección IP de su nodo. </p> <p> Las identidades anónimas le permiten interactuar anónimamente con otros usuarios. No pueden ser falseadas, pero nadie puede probar quién posee en realidad una determinada identidad. </p> + + ID + Identificación - + + Search ID + Buscar identificación + + + This identity is owned by you Esta identidad es propiedad de usted @@ -8941,9 +9638,9 @@ p, li { white-space: pre-wrap; } Identificación de clave desconocida - + Identity owned by you, linked to your Retroshare node - Identidad propiedad de usted, asociada a su nodo Retroshare + Identidad propiedad de usted, asociada a su nodo RetroShare @@ -8956,7 +9653,42 @@ p, li { white-space: pre-wrap; } Identidad anónima - + + OK + Correcto + + + + Banned + Excluido + + + + Add to Contacts + Añadir a contactos + + + + Remove from Contacts + Eliminar de contactos + + + + Set positive opinion + Establecer opinión positiva + + + + Set neutral opinion + Establecer opinión neutral + + + + Set negative opinion + Establecer opinión negativa + + + Distant chat cannot work El chat a distancia no pudo funcionar @@ -8966,15 +9698,35 @@ p, li { white-space: pre-wrap; } Código de error - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + Hola,<br>quiero que seamos amigos en RetroShare.<br> + + + + You have a friend invite + Tiene una invitación de amistad + + + + Respond now: + Responder ahora: + + + + Thanks, <br> + Gracias, <br> + + + + + People Personas - + Your Avatar Click here to change your avatar Su avatar @@ -8995,22 +9747,27 @@ p, li { white-space: pre-wrap; } Enlazado hacia nodos distantes - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identidades</h1> <p>En esta pestaña puede crear/editar identidades pseudo-anónimas. </p> <p>Las identidades se usan para identificar con seguridad sus datos: firmar publicaciones en foros y canales, recibir respuestas al usar el sistema de correo electrónico integrado de RetroShare, publicar comentarios tras las publicaciones en los canales, etc.</p> <p> Las identidades opcionalmente pueden ser firmadas por el certificado de su nodo RetroShare. Es más fácil confiar en las identidades firmadas, pero son más fácilmente vinculables a la dirección IP de su nodo. </p> <p> Las identidades anónimas le permiten interactuar anónimamente con otros usuarios. No se pueden suplantar, pero nadie puede probar quién posee en realidad una identidad dada. </p> + + + Linked to a friend Retroshare node - Enlazado hacia un nodo de Retroshare amigo + Enlazado hacia un nodo de RetroShare amigo Linked to a known Retroshare node - Enlazado hacia un nodo de Retroshare conocido + Enlazado hacia un nodo de RetroShare conocido Linked to unknown Retroshare node - Enlazado hacia un nodo Retroshare desconocido + Enlazado hacia un nodo RetroShare desconocido - + Chat with this person Conversar con esta persona @@ -9020,17 +9777,7 @@ p, li { white-space: pre-wrap; } Conversar con esta persona como... - - Send message to this person - Enviar mensaje a esta persona - - - - Columns - Columnas - - - + Distant chat refused with this person. Conversación distante rechazada con esta persona. @@ -9040,7 +9787,7 @@ p, li { white-space: pre-wrap; } Usado por última vez: - + +50 Known PGP +50 PGP conocidos @@ -9055,29 +9802,17 @@ p, li { white-space: pre-wrap; } +5 Identificaciones anónimas - + Do you really want to delete this identity? ¿De verdad quiere borrar esta identidad? - + Owned by Propiedad de - - - Show - Mostrar - - - - - column - columna - - - + Node name: Nombre del nodo: @@ -9087,7 +9822,7 @@ p, li { white-space: pre-wrap; } Identificación del nodo: - + Really delete? ¿Está seguro de borrar? @@ -9130,8 +9865,8 @@ p, li { white-space: pre-wrap; } Nueva identidad - - + + To be generated Para ser creada @@ -9139,7 +9874,7 @@ p, li { white-space: pre-wrap; } - + @@ -9149,13 +9884,13 @@ p, li { white-space: pre-wrap; } N/A - + Edit identity Editar identidad - + Error getting key! ¡Error obteniendo la llave! @@ -9175,7 +9910,7 @@ p, li { white-space: pre-wrap; } Nombre real desconocido - + Create New Identity Crear nueva identidad @@ -9227,10 +9962,10 @@ p, li { white-space: pre-wrap; } You can have one or more identities. They are used when you write in chat lobbies, forums and channel comments. They act as the destination for distant chat and the Retroshare distant mail system. - Puede tener una o más identidades. Se usan cuando escribe un salas de chat, foros y comentarios de canales. Actúan como el destinatario para conversaciones distanteds y el sistema de correo distante de RetroShare. + Puede tener una o más identidades. Se usan cuando escribe un salas de chat, foros y comentarios de canales. Actúan como el destinatario para conversaciones distantes y el sistema de correo distante de RetroShare. - + The nickname is too short. Please input at least %1 characters. El apodo es demasiado corto. Por favor, introduzca al menos %1 caracteres. @@ -9298,7 +10033,7 @@ p, li { white-space: pre-wrap; } - + Copy Copiar @@ -9328,16 +10063,35 @@ p, li { white-space: pre-wrap; } Enviar + + ImageUtil + + + + Save image + Guardar imagen + + + + Cannot save the image, invalid filename + No se puede guardar la imagen, nombre de fichero no válido + + + + Not an image + No es una imagen + + LocalSharedFilesDialog - + Open File Abrir archivo - + Open Folder Abrir carpeta @@ -9347,7 +10101,7 @@ p, li { white-space: pre-wrap; } Editar los permisos del recurso compartido - + Checking... Comprobando... @@ -9396,7 +10150,7 @@ p, li { white-space: pre-wrap; } - + Options Opciones @@ -9430,12 +10184,12 @@ p, li { white-space: pre-wrap; } Asistente para el inicio rápido - + RetroShare %1 a secure decentralized communication platform RetroShare %1 es una plataforma de comunicación descentralizada y segura - + Unfinished Incompleto @@ -9473,7 +10227,12 @@ p, li { white-space: pre-wrap; } Notificación - + + Open Messenger + Abrir mensajería instantánea + + + Open Messages Abrir mensajes @@ -9523,7 +10282,7 @@ p, li { white-space: pre-wrap; } %1 nuevos mensajes - + Down: %1 (kB/s) Recibiendo: %1 (kB/s) @@ -9593,7 +10352,7 @@ p, li { white-space: pre-wrap; } Matriz de permisos del servicio - + Add Añadir @@ -9618,7 +10377,7 @@ p, li { white-space: pre-wrap; } directorio está descenciendo (el límite actual es - + Really quit ? ¿Está seguro de salir? @@ -9627,38 +10386,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose Componer - - + Contacts Contactos - - >> To - >> A - - - - >> Cc - >> Cc - - - - >> Bcc - >> Bcc - - - - >> Recommend - >> Recomendar - - - + Paragraph Párrafo @@ -9739,7 +10477,7 @@ p, li { white-space: pre-wrap; } Subrayado - + Subject: Asunto: @@ -9750,12 +10488,22 @@ p, li { white-space: pre-wrap; } - + Tags Etiquetas - + + Address list: + Lista de direcciones: + + + + Recommend this friend + Recomendar este amigo + + + Set Text color Establecer color del texto @@ -9765,7 +10513,7 @@ p, li { white-space: pre-wrap; } Establecer color de fondo - + Recommended Files Archivos recomendados @@ -9835,7 +10583,7 @@ p, li { white-space: pre-wrap; } Añadir cita - + Send To: Enviar a: @@ -9860,47 +10608,22 @@ p, li { white-space: pre-wrap; } &Justificar - - Bullet List (Disc) - + + All addresses (mixed) + Todas las direcciones (mezcladas) - Bullet List (Circle) - + All people + Toda la gente - - Bullet List (Square) - + + My contacts + Mis contactos - - Ordered List (Decimal) - Lista ordenada (Decimal) - - - - Ordered List (Alpha lower) - Lista ordenada (menor alpha) - - - - Ordered List (Alpha upper) - Lista ordenada (mayor alpha) - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hola,<br>Le recomiendo a un buen amigo mío, puede confiar en él tanto como confía en mí. <br> @@ -9926,12 +10649,12 @@ p, li { white-space: pre-wrap; } - + Save Message Guardar mensaje - + Message has not been Sent. Do you want to save message to draft box? El mensaje no se ha enviado. @@ -9943,7 +10666,7 @@ Do you want to save message to draft box? Pegar enlace de RetroShare - + Add to "To" Añadir a "A" @@ -9963,12 +10686,7 @@ Do you want to save message to draft box? Añadir como recomendado - - Friend Details - Detalles del amigo - - - + Original Message Mensaje original @@ -9978,19 +10696,21 @@ Do you want to save message to draft box? De - + + To A - + + Cc Cc - + Sent Enviar @@ -10032,12 +10752,13 @@ Do you want to save message to draft box? Por favor, introduzca por lo menos un destinatario. - + + Bcc Bcc - + Unknown Desconocido @@ -10147,7 +10868,12 @@ Do you want to save message to draft box? &Formato - + + Details + Detalles + + + Open File... Abrir archivo... @@ -10195,12 +10921,7 @@ Do you want to save message ? Añadir otro archivo - - Show: - Mostrar: - - - + Close Cerrar @@ -10210,32 +10931,57 @@ Do you want to save message ? De: - - All - Todos - - - + Friend Nodes Nodos amigos - - Person Details - Detalles de la persona + + Bullet list (disc) + Lista con puntos (discos) - - Distant peer identities - Identidades de par distante + + Bullet list (circle) + Lista con puntos (círculos) - + + Bullet list (square) + Lista con puntos (cuadrados) + + + + Ordered list (decimal) + Lista ordenada (números decimales) + + + + Ordered list (alpha lower) + Lista ordenada (alfabeto en minúscula) + + + + Ordered list (alpha upper) + Lista ordenada (alfabeto en mayúsucula) + + + + Ordered list (roman lower) + Lista ordenada (números romanos en minúscula) + + + + Ordered list (roman upper) + Lista ordenada (números romanos en mayúscula) + + + Thanks, <br> Gracias, <br> - + Distant identity: Identidad distante: @@ -10258,7 +11004,27 @@ Do you want to save message ? MessagePage - + + Everyone + Todos + + + + Contacts + Contactos + + + + Nobody + Nadie + + + + Accept encrypted distant messages from + Aceptar mensajes distantes cifrados de + + + Reading Leyendo @@ -10273,7 +11039,7 @@ Do you want to save message ? Abrir mensajes en - + Tags Etiquetas @@ -10313,7 +11079,7 @@ Do you want to save message ? Una ventana nueva - + Edit Tag Editar etiqueta @@ -10323,22 +11089,12 @@ Do you want to save message ? Mensaje - + Distant messages: Mensajes distantes: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">El siguiente enlace permite a la gente en la red, poder enviarle mensajes cifrados, utilizando túneles. Para ello, necesitan su clave pública PGP, que pueden obtener usando el sistema de descubrimiento de Retroshare. </p></body></html> - - - - Accept encrypted distant messages from everyone - Aceptar mensajes cifrados distantes de todos - - - + Load embedded images Cargar imágenes incrustadas @@ -10619,7 +11375,7 @@ Do you want to save message ? MessagesDialog - + New Message Nuevo mensaje @@ -10686,24 +11442,24 @@ Do you want to save message ? - + Tags Etiquetas - - - + + + Inbox Bandeja de entrada - - + + Outbox Bandeja de salida @@ -10715,14 +11471,14 @@ Do you want to save message ? - + Sent Enviados - + Trash Papelera @@ -10791,7 +11547,7 @@ Do you want to save message ? - + Reply to All Responder a todos @@ -10809,12 +11565,12 @@ Do you want to save message ? - + From De - + Date Fecha @@ -10842,12 +11598,12 @@ Do you want to save message ? - + Click to sort by from Pulsar para ordenar por remitente - + Click to sort by date Pulsar para ordenar por fecha @@ -10902,7 +11658,12 @@ Do you want to save message ? Buscar por adjuntos - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>RetroShare tiene su propio sistema interno de correo electrónico. Puede recibir/enviar correos de/para nodos amigos conectados.</p> <p>También es posible enviar mensajes a las identidades de otras personas usando el sistema de enrutamiento global. Estos mensajes siempre se cifran y firman, y son repetidos por nodos intermedios hasta que alcanzan su destino final. </p> <p>Los mensajes distantes permanecen en su Bandeja de Salida hasta que llegue un acuse de recibo.</p> <p>Generalmente, puede usar mensajes para recomendar archivos a sus amigos pegando los enlaces de los archivos, o puede recomendar nodos amigos a otros nodos amigos para fortalecer su red, o enviar comentarios al propietario de un canal.</p> + + + Starred Con estrella @@ -10967,14 +11728,14 @@ Do you want to save message ? Vaciar papelera - - + + Drafts Borradores - + 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 gray star beside any message. No hay mensajes favoritos disponibles. Las estrellas permiten dar un estatus especial a los mensajes para que sean más fáciles de encontrar. Para marcar como favorito un mensaje, pulse en la estrella gris claro al lado de cualquier mensaje. @@ -10994,7 +11755,12 @@ Do you want to save message ? Pulsar para ordenar por destinatario - + + This message goes to a distant person. + Este mensaje va a una persona distante. + + + @@ -11003,18 +11769,18 @@ Do you want to save message ? Total: - + Messages Mensajes - + Click to sort by signature Haga clic en ordenar por firma - + This message was signed and the signature checks Este mensaje fue firmado y la firma comprobada @@ -11024,15 +11790,10 @@ Do you want to save message ? Este mensaje esta firmado, pero la firma no se ha comprobado - + This message comes from a distant person. Este mensaje viene de una persona distante. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Mensajes</h1> <p>RetroShare tiene su propio sistema de correo electrónico interno. Puede enviar/recibir correos de/a nodos amigos conectados.</p> <p>También es posible enviar mensajes a las Identidades de otra persona usando el sistema de enrutamiento global. Estos mensajes están siempre cifrados y son repetidos por nodos intermedios hasta que alcanzan su destino final. </p> <p>Se recomienda firmar criptográficamente mensajes distantes como prueba de su identidad, usando el <img width="16" src=":/images/stock_signature_ok.png"/> botón en la ventana de composición del mensaje. Los mensajes distantes permanecen en su Bandeja de Salida hasta que haya sido recibido un acuse de recibo.</p> <p>Habitualmente puede usar mensajes para recomendar ficheros a sus amigos pegando enlaces de ficheros, o recomendar nodos amigos a otros nodos amigos para reforzar su red, o enviar comentarios al propietario de un canal.</p> - MessengerWindow @@ -11055,7 +11816,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + Pegar como texto sin cifrar + + + + Spoiler + Spoiler + + + + Select text to hide, then push this button + Seleccione texto a ocultar, luego pulse este botón. + + + Paste RetroShare Link Pegar enlade de RetroShare @@ -11089,7 +11865,7 @@ Do you want to save message ? - + Expand Abrir @@ -11132,7 +11908,7 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown Estado de la red desconocido @@ -11176,26 +11952,6 @@ Do you want to save message ? Forwarded Port Puerto redirigido - - - OK | RetroShare Server - Servidor de RetroShare | Aceptar - - - - Internet connection - Conexión a Internet - - - - No internet connection - Sin conexión a Internet - - - - No local network - Ninguna red local - NetworkDialog @@ -11309,7 +12065,7 @@ Do you want to save message ? ID del vecino - + Deny friend Bloquear amigo @@ -11373,7 +12129,7 @@ Para mayor seguridad, su anillo de llaves fue previamente respaldado a una copia No se puede crear el archivo de respaldo. Compruebe los permisos en el directorio pgp, espacio en disco, etc. - + Personal signature Firma personal @@ -11440,7 +12196,7 @@ botón derecho y seleccione hacer amigo para conectar. usted mismo - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Inconsistencia de datos en el archivo de llaves. Esto es probablemente un error. Póngase en contacto con los desarrolladores. @@ -11455,7 +12211,7 @@ botón derecho y seleccione hacer amigo para conectar. Sólo claves de confianza - + Trust level Nivel de confianza @@ -11475,19 +12231,19 @@ botón derecho y seleccione hacer amigo para conectar. Identificación del certificado - + Make friend... Hacer amigo... - + Did peer authenticate you Le autentificó el par This column indicates trust level and whether you signed their PGP key - Esta columna indica el nivel de confianza y si firmó su clave PGP. + Esta columna indica el nivel de confianza y si usted firmó su clave PGP. @@ -11510,7 +12266,7 @@ botón derecho y seleccione hacer amigo para conectar. Buscar identificación del par - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11581,7 +12337,7 @@ Se informo del error: NewsFeed - + News Feed Novedades @@ -11600,18 +12356,13 @@ Se informo del error: This is a test. Esto es una prueba. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Novedades</h1> <p>Las novedades (feed) le muestran los últimos eventos de la red, ordenados por el momento en que los recibió. Esto le da un resumen de la actividad de sus amigos. Puede configurar los eventos a mostrar pulsando en <b>Opciones</b>. </p> <p>Los diferentes eventos a mostrar son: <ul><li>Intentos de conexión (útil para hacer amigos con gente nueva y controlar quién está intentando contactar con usted)</li> <li>Mensajes de canales y de foros</li> <li>Nuevos canales y foros a los que puede suscribirte</li> <li>Mensajes privados de sus amigos</li> </ul> </p> - News feed Novedades (feed) - + Newest on top Los más recientes arriba @@ -11620,6 +12371,11 @@ Se informo del error: Oldest on top Los más antiguos arriba + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Novedades</h1> <p>Las novedades muestran los últimos eventos en su red, ordenados por la hora a la que los recibió. Esto le proporciona un resumen de la actividad de sus amigos. Puede configurar qué eventos mostrar pulsando sobre <b>Opciones</b>. </p> <p>Los distintos eventos mostrados son: <ul> <li>Intentos de conexión (útil para hacer amigos con nuevas personas y controlar quién está tratando de llegar a usted)</li> <li>Publicaciones del canal y del foro</li> <li>Nuevos canales y foros a los que se puede suscribir</li> <li>Mensajes privados de sus amigos</li> </ul> </p> + NotifyPage @@ -11763,7 +12519,12 @@ Se informo del error: Parpadear - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notificar</h1> <p>RetroShare le notificará acerca de lo que ocurre en su red. Dependiendo de su uso, puede que quiera habilitar o deshabilitar algunas de las notificaciones. ¡Esta página está diseñada para eso!</p> + + + Top Left Parte superior izquierda @@ -11787,11 +12548,6 @@ Se informo del error: Notify Notificación - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare le notificará sobre lo que sucede en su red. Dependiendo de su uso, puede que quiera habilitar o deshabilitar algunas de las notificaciones. ¡Esta página está diseñada para eso!</p> - Disable All Toasters @@ -11841,7 +12597,7 @@ Se informo del error: NotifyQt - + PGP key passphrase Contraseña de la clave GPG @@ -11881,7 +12637,7 @@ Se informo del error: Guardando indice del archivo... - + Test Prueba @@ -11896,13 +12652,13 @@ Se informo del error: Título desconocido - - + + Encrypted message Mesaje criptado - + Please enter your PGP password for key Por favor introduzca su contraseña PGP para la clave @@ -11954,24 +12710,6 @@ Sin Anonimato D/S: desactiva el reenvío de archivos Tráfico Reducido: 10% del tráfico estándar y TODO: pausa todas las transferencias de archivos - - OutQueueStatisticsWidget - - - Outqueue statistics - Estadísticas de cola de salida - - - - By priority: - Por prioridad: - - - - By service : - Por servicio: - - PGPKeyDialog @@ -11995,12 +12733,22 @@ Sin Anonimato D/S: desactiva el reenvío de archivos Huella de validación de clave : - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + <html><head/><body><p>La huella de validación de clave PGP es una característica ---supuestamente infalsificable--- de la clave PGP. Para asegurarse de que está tratando con la clave correcta, compare las huellas de validación.</p></body></html> + + + Trust level: Nivel de confianza: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + <html><head/><body><p>El nivel de confianza es un parámetro local y opcional que puede establecer para recordar su opción acerca de una clave PGP concreta. De cualquier modo no se usa para autorizar conexiones. </p></body></html> + + + Unset No establecido @@ -12035,39 +12783,55 @@ Sin Anonimato D/S: desactiva el reenvío de archivos Firmas de clave : - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Firmar la clave de un amigo es una forma de expresar su confianza en este al resto de sus amigos. Las firmas de debajo atestiguan criptográficamente que los propietarios de las claves listadas reconocen la clave PGP actual como auténtica.</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:'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> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</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:'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;">Firmar la clave de un amigo es una forma de expresar su confianza en él a otros amigos. Además, sólo los pares (peers) firmados recibirán información sobre el resto de sus amigos de confianza.</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;">Firmar una clave no se puede deshacer, así que hágalo con prudencia.</p></body></html> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Firmar la clave de un amigo es una forma de expresar su confianza en este al resto de sus amigos. Les ayuda a decidir si permitir conexiones desde esa clave, en base a su propia confianza. Firmar una clave es absolutamente opcional y no se puede deshacer, así que hágalo con sabiduría.</span></p></body></html> - + Sign this PGP key Firmar esta clave PGP + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + <html><head/><body><p><span style=" font-size:10pt;">Firmar la clave de un amigo es una forma de expresar su confianza en este amigo al resto de sus amigos. Les ayuda a decidir si permitir conexiones desde esa clave en base a su propia confianza. Firmar una clave es absolutamente opcional y no puede deshacerse, así que hágalo con sabiduría.</span></p></body></html> + + + Sign PGP key Firmar clave GPG + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + <html><head/><body><p>Haga clic aquí si quiere rechazar conexiones a nodos autentificados por esta clave.</p></body></html> + + + Deny connections Denegar conexiones + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + <html><head/><body><p>Haga clic sobre esto si quiere que su nodo acepte conectarse a nodos RetroShare autentificados por esta clave PGP. Esto se realiza automáticamente al intercambiar su certificado RetroShare con alguien. Para hacer amigos, es mejor intercambiar certificados que aceptar conexiones desde una clave concreta, ya que el certificado también contiene información útil (IP, DNS, identificaciones SSL, etc.).</p></body></html> + + + Accept connections Aceptar conexiones @@ -12078,6 +12842,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + <html><head/><body><p>Este botón accionará la inclusión de firmas en la visualización ASCII de la clave PGP. Vea los comentarios acerca de firmas en la otra pestaña. </p></body></html> + + + Include signatures Incluir firmas @@ -12133,7 +12902,7 @@ p, li { white-space: pre-wrap; } No tiene confianza en este vecino. - + This key has signed your own PGP key Esta clave ha firmado su propia clave PGP @@ -12307,12 +13076,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 Amigos: 0/0 - + Online Friends/Total Friends Amigos conectados/Total @@ -12681,7 +13450,7 @@ p, li { white-space: pre-wrap; } la carpeta base %1 no existe, fallo la carga por defecto - + Error: instance '%1'can't create a widget Error: La instancia '%1' no puede crear un widget @@ -12698,12 +13467,12 @@ p, li { white-space: pre-wrap; } Error(installation): plugin file %1 doesn't exist - Error (instalación): El fichero del complemento %1 no existe + Error (instalación): El archivo del complemento %1 no existe Error: failed to remove file %1(uninstalling plugin '%2') - Error: Fallo al eliminar fichero %1(desinstalando complemento '%2') + Error: Fallo al eliminar archivo %1(desinstalando complemento '%2') @@ -12742,19 +13511,19 @@ p, li { white-space: pre-wrap; } Autorizar todos los plugins - - Loaded plugins - Plugins cargados - - - + Plugin look-up directories Directorios de búsqueda de plugin - - Hash rejected. Enable it manually and restart, if you need. - Hash rechazado. Activarlo manualmente y reiniciar, si es necesario. + + Plugin disabled. Click the enable button and restart Retroshare + Complemento deshabilitado. Haga clic en el botón habilitar y reinicie Retroshare + + + + [disabled] + [deshabilitado] @@ -12762,27 +13531,36 @@ p, li { white-space: pre-wrap; } No se ha suministrado el número del API. Por favor lea el manual de desarrollo del plugin. - + + + + + + [loading problem] + [problema al cargar] + + + No SVN number supplied. Please read plugin development manual. No se ha suministrado el número del SVN. Por favor lea el manual de desarrollo del plugin. - + Loading error. Error cargando. - + Missing symbol. Wrong version? Símbolo faltante. ¿Versión incorrecta? - + No plugin object Ningún objeto plugin - + Plugins is loaded. Los plugins están cargados. @@ -12792,22 +13570,7 @@ p, li { white-space: pre-wrap; } Estado desconocido. - - Title unavailable - Título no disponible - - - - Description unavailable - Descripción no disponible - - - - Unknown version - Versión desconocida - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12818,15 +13581,16 @@ condiciones normales, el control de hash le protege de un posible comportamiento malicioso de los plugins. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Complementos</h1> <p>Los complementos (plugins) se cargan desde los directorios que aparecen en la lista del fondo.</p> <p>Por razones de seguridad, los complementos aceptados se cargan automáticamente hasta que el ejecutable principal de RetroShare o la librería del complemento cambian. En tal caso, el usuario necesita confirmarlos de nuevo. Después de que se inicie el programa, puede habilitar un complemento manualmente haciendo clic en el botón "Habilitar", y luego reiniciar RetroShare.</p> <p>Si quiere desarrollar sus propios complementos, contacte con el equipo de desarrolladores ¡ellos estarán contentos de auxiliarle!</p> + + + Plugins Plugins - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Los complementos (plugins) se cargan desde los directorios listados en la lista del fondo.</p> <p>Por razones de seguidad, los complementos aceptados se cargan automáticamente hasta que el ejecutable principal de Retroshare, o la librería de complementos, cambien. En tal caso, el usuario tiene que confirmarlos de nuevo. Después de que el programa sea iniciado, puede habilitar un complemento manualmente haciendo clic en el botón "Habilitar", y reiniciando luego Retroshare.</p> <p>Si quiere desarrollar sus propios complementos, contacte con el equipo de desarrolladores ¡ellos se alegrarán de ayudarle!</p> - PopularityDefs @@ -12894,12 +13658,17 @@ de un posible comportamiento malicioso de los plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + Chat cerrado remotamente. Por favor, cierre esta ventana. + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. La persona con la que está hablando se ha borrado del túnel de chat seguro. Ahora puede quitar la ventana de chat. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Cerrando esta ventana finalizará la conversación, notifíqueselo al par y retire el túnel cifrado. @@ -12909,12 +13678,7 @@ de un posible comportamiento malicioso de los plugins. ¿Matar el túnel? - - Hash Error. No tunnel. - Error de identificador criptográfico (hash). No hay túnel. - - - + Can't send message, because there is no tunnel. No se pudo enviar el mensaje, porque no hay túnel. @@ -12995,7 +13759,12 @@ de un posible comportamiento malicioso de los plugins. Publicado - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Publicados</h1> <p>El servicio de publicados le permite compartir enlaces de Internet, que se difunden entre nodos RetroShare como foros y canales</p> <p>Los enlaces pueden ser comentados por usuarios suscritos. Un sistema de promoción también le da la oportunidad de destacar enlaces importantes.</p> <p>No hay restricción a los enlaces que pueden compartirse. Tenga cuidado cuando haga clic sobre ellos.</p> <p>Los enlaces publicados se borran después de %1 meses.</p> + + + Create Topic Crear tema @@ -13019,11 +13788,6 @@ de un posible comportamiento malicioso de los plugins. Other Topics Otros temas - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Publicado</h1> <p>El servicio publicado le permite compartir enlaces de Internet, que se diseminan entre los nodos RetroShare como foros y canales</p> <p>Los enlaces pueden ser comentados por usuarios suscritos. Un sistema de promoción también proporciona la oportunidad de destacar enlaces importantes.</p> <p>No hay restricciones sobre que enlaces pueden compartirse. Sea prudente con los enlaces sobre los que pulsa.</p> <p>Los enlaces publicados se borran después de %1 meses.</p> - PostedGroupDialog @@ -13278,7 +14042,7 @@ de un posible comportamiento malicioso de los plugins. PrintPreview - + RetroShare Message - Print Preview Mensaje de RetroShare - Vista previa @@ -13426,9 +14190,9 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'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;">Seleccione una clave de nodo Retroshare de la lista de debajo para que sea usada en otra computadora, y pulse &quot;Exportar clave seleccionada.&quot;</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Seleccione una clave de nodo RetroShare de la lista de debajo para que sea usada en otra computadora, y pulse &quot;Exportar clave seleccionada.&quot;</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;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Para crear un nuevo emplazamiento en una computadora distinta, seleccione el administrador de identidades en la ventana de inicio de sesión. Desde allí puede importar el fichero de clave y crear un nuevo emplazamiento para esa clave. </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Para crear un nuevo emplazamiento en una computadora distinta, seleccione el administrador de identidades en la ventana de inicio de sesión. Desde allí puede importar el archivo de clave y crear un nuevo emplazamiento para esa clave. </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;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Crear un nuevo nodo con la misma clave permite que sus nodos amigos le acepten automáticamente.</p></body></html> @@ -13634,7 +14398,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Confirmación @@ -13644,7 +14409,7 @@ p, li { white-space: pre-wrap; } ¿Quiere que este enlace sea tratado por su sistema? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13673,7 +14438,12 @@ and open the Make Friend Wizard. ¿Desea procesar %1 enlaces? - + + This file already exists. Do you want to open it ? + Este fichero ya existe. ¿Quiere abrirlo? + + + %1 of %2 RetroShare link processed. %1 de %2 enlace de RetroShare procesado. @@ -13839,7 +14609,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace No se pudo procesar el archivo de colección - + Deny friend Bloquear amigo @@ -13859,7 +14629,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Solicitud del archivo cancelada - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Esta versión de RetroShare está usando OpenPGP SDK. Como efecto secundario, no está utilizando el sistema de anillos de llaves PGP compartidas , pero tiene su propio anillo de llaves compartidos por todas las instancias RetroShare. <br><br>No parece que tenga un llavero, aunque las llaves GPG son mencionados por cuentas existentes de RetroShare, probablemente debido a que acaba de cambiar a esta nueva versión del programa. @@ -13890,7 +14660,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Ocurrió un error inesperado. Error: 'RsInit::InitRetroShare unexpected return code %1'. - + Multiple instances Instancias múltiples @@ -13928,11 +14698,6 @@ archivo bloqueado: Tunnel is pending... El túnel está pendiente... - - - Secured tunnel established. Waiting for ACK... - Túnel seguro establecido. Esperando ACK... - Secured tunnel is working. You can talk! @@ -13950,7 +14715,7 @@ El error reportado es: %2 - + Click to send a private message to %1 (%2). Hacer clic para enviar un mensaje privado a %1 (%2). @@ -14000,7 +14765,7 @@ El error reportado es: Datos reenviados - + You appear to have nodes associated to DSA keys: Parece que tiene nodos asociados a claves DSA: @@ -14010,7 +14775,7 @@ El error reportado es: Las claves DSA aún no están soportadas por esta versión de RetroShare. Todos estos nodos serán inutilizables. Lo sentimos por esto. - + enabled habilitado @@ -14020,12 +14785,12 @@ El error reportado es: deshabilitado - + Join chat lobby Unirse a sala de chat - + Move IP %1 to whitelist Mover IP %1 a la lista blanca @@ -14040,42 +14805,49 @@ El error reportado es: añadir a la lista blanca el rango completo %1 - + + %1 seconds ago hace %1 segundos + %1 minute ago hace %1 minuto + %1 minutes ago hace %1 minutos + %1 hour ago hace %1 hora + %1 hours ago hace %1 horas + %1 day ago hace %1 día + %1 days ago hace %1 días - + Subject: Sujeto: @@ -14094,6 +14866,13 @@ El error reportado es: Id: Identificación: + + + +Security: no anonymous IDs + +Seguridad: No hay identificaciones anónimas + @@ -14105,6 +14884,16 @@ El error reportado es: The following has not been added to your download list, because you already have it: Los siguientes no ha sido añadidos a su lista de descargas, porque ya los tiene: + + + Error + Error + + + + unable to parse XML file! + ¡no se pudo interpretar el fichero XML! + QuickStartWizard @@ -14114,7 +14903,7 @@ El error reportado es: Asistente para el inicio rápido - + <!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; } @@ -14152,21 +14941,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > Siguiente > - - - - + + + + + Exit Salir - + For best performance, RetroShare needs to know a little about your connection to the internet. Para un mejor rendimiento, RetroShare necesita saber algunos datos de su conexion a Internet. @@ -14233,13 +15024,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back < Atrás - + <!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; } @@ -14259,7 +15051,7 @@ p, li { white-space: pre-wrap; } - + Network Wide En toda la red @@ -14284,7 +15076,27 @@ p, li { white-space: pre-wrap; } Compartir automáticamente la carpeta de descargas incompletas (recommendado) - + + RetroShare Page Display Style + Estilo de presentación de la página de Retroshare + + + + Where do you want to have the buttons for the page? + ¿Dónde quiere tener los botones para la página? + + + + ToolBar View + Vista de barra de herramientas + + + + List View + Vista de lista + + + <!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; } @@ -14399,7 +15211,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 KB @@ -14435,7 +15247,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Permitido por defecto @@ -14466,8 +15278,8 @@ p, li { white-space: pre-wrap; } - Switched Off - Apagado + Globally switched Off + Apagados globalmente @@ -14488,7 +15300,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page Error al guardar la configuración en la página @@ -14597,8 +15409,8 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>Con la activación de la repetición ('relay'), permite a su nodo Retroshare actuar como un puente ('bridge') entre usuarios de Retroshare que no pueden conectarse directamente, ej. por estar detrás de un cortafuegos (firewall).</p> <p>Puede elegir actuar como un repetidor marcando <i>habilitar conexiones de repetidor</i>, o simplemente beneficiarse de otros pares ('peers') que actúan como repetidores, al marcar <i>usar servidores repetidor</i>. Para lo anterior, puede especificar el ancho de banda asignado al actuar como repetidor para sus amigos, para amigos de sus amigos, o para cualquiera en la red Retroshare.</p> <p>En cualquier caso, un nodo Retroshare que actúa como un repetidor no puede ver el tráfico repetido, ya que está cifrado y autentificado por los dos nodos para los que se está repitiendo ese tráfico.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Repetidores</h1> <p>Al activar los repetidores, permite a su nodo RetroShare actuar como un (repetidor) puente con usuarios de RetroShare que no pueden conectar directamente, ej. porque estén detrás de un cortafuegos (firewall).</p> <p>Puede escoger actuar como un repetidor marcando <i>Habilitar conexiones de repetidor</i>, o simplemente beneficiarse de otros pares (peers) que actúan como repetidor, marcando <i>Utilizar servidores de repetidor</i>. Para lo anterior, puede especificar el ancho de banda asignado cuando actúa como un repetidor para sus amigos, para amigos de sus amigos, o para cualquiera en la red RetroShare.</p> <p>En cualquier caso, un nodo RetroShare actuando como un repetidor no puede ver el tráfico repetido, ya que está cifrado y autentificado por los nodos cuyo tráfico repite entre si.</p> @@ -14622,7 +15434,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW NUEVO @@ -14747,7 +15559,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Selected files : - Ficheros seleccionados : + Archivos seleccionados : @@ -14792,7 +15604,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace File Count - Recuento de ficheros + Recuento de archivos @@ -14809,7 +15621,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Real File Count: Waiting child... - Recuento real de ficheros: Esperando descendientes... + Recuento real de archivos: Esperando descendientes... @@ -14826,12 +15638,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Real File Count=%1 - Recuento real de ficheros=%1 + Recuento real de archivos=%1 Save Collection File. - Guardar fichero de colección. + Guardar archivo de colección. @@ -14871,12 +15683,12 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace <html><head/><body><p>Change the file where collection will be saved.</p><p>If you select an existing file, you could merge it.</p></body></html> - <html><head/><body><p>Cambie el fichero donde se guardará la colección.</p><p>Si selecciona un fichero existente, podría fusionarlos.</p></body></html> + <html><head/><body><p>Cambie el archivo donde se guardará la colección.</p><p>Si selecciona un archivo existente, podría fusionarlos.</p></body></html> File already exists. - El fichero ya existe. + El archivo ya existe. @@ -14929,7 +15741,7 @@ Si crees que es correcto, elimina la correspondiente línea del archivo y reábr Save Collection File. - Guardar fichero de colección. + Guardar archivo de colección. @@ -14954,13 +15766,13 @@ Si crees que es correcto, elimina la correspondiente línea del archivo y reábr File already exists. - El fichero ya existe. + El archivo ya existe. RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? La imagen es demasiado grande para su transmisión. @@ -14978,7 +15790,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. Reiniciar todos los ajustes de RetroShare. @@ -15023,17 +15835,17 @@ Reducing image to %1x%2 pixels? No se puede abrir el archivo de registro '%1': %2 - + built-in integrado - + Could not create data directory: %1 No se pudo crear el directorio de datos: %1 - + Revision Revisión @@ -15061,33 +15873,10 @@ Reducing image to %1x%2 pixels? Estadísticas RTT - - SFListDelegate - - - B - B - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Introduzca una palabra clave aquí (como mínimo 3 letras) @@ -15269,12 +16058,12 @@ en la red (siempre informar de archivos disponibles) Descargar seleccionados - + File Name Nombre de archivo - + Download Descargar @@ -15343,7 +16132,7 @@ en la red (siempre informar de archivos disponibles) Abrir carpeta - + Create Collection... Crear colección... @@ -15363,7 +16152,7 @@ en la red (siempre informar de archivos disponibles) Descargar desde archivo de colección... - + Collection Colección @@ -15447,7 +16236,7 @@ en la red (siempre informar de archivos disponibles) <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> - <html><head/><body><p>Esta advertencia está aquí para protegerle contra ataques de interposición y reenvío de tráfico. </p><p><br/></p><p>Sin embargo, si sencillamente su IP cambia por alguna razón (algunos ISPs fuerzan cambios de IPs regularmente) esta advertencia sólo le dice que un amigo conectó a la nueva IP antes de que Retroshare notara el cambio de IP. No hay nada incorrecto en este caso.</p><p><br/></p><p>Puede suprimir fácilmente falsas advertencias añadiendo sus propias IPs a la lista-blanca (ej. el rango de su ISP), o deshabilitando completamente estas advertencias en Opciones-&gt;Notificar-&gt;Novedades (feed).</p></body></html> + <html><head/><body><p>Esta advertencia está aquí para protegerle contra ataques de interposición y reenvío de tráfico. </p><p><br/></p><p>Sin embargo, si sencillamente su IP cambia por alguna razón (algunos ISPs fuerzan cambios de IPs regularmente) esta advertencia sólo le dice que un amigo conectó a la nueva IP antes de que RetroShare notara el cambio de IP. No hay nada incorrecto en este caso.</p><p><br/></p><p>Puede suprimir fácilmente falsas advertencias añadiendo sus propias IPs a la lista-blanca (ej. el rango de su ISP), o deshabilitando completamente estas advertencias en Opciones-&gt;Notificar-&gt;Novedades (feed).</p></body></html> @@ -15585,7 +16374,7 @@ en la red (siempre informar de archivos disponibles) Missing/Damaged certificate. Not a real Retroshare user. - Certificado perdido/dañado. No es un usuario Retroshare real. + Certificado perdido/dañado. No es un usuario RetroShare real. @@ -15606,12 +16395,22 @@ en la red (siempre informar de archivos disponibles) ServerPage - + Network Configuration Configuración de la red - + + Network Mode + Modo de red + + + + Nat + NAT + + + Automatic (UPnP) Automático (UPnP) @@ -15626,7 +16425,7 @@ en la red (siempre informar de archivos disponibles) Puerto manualmente reenviado - + Public: DHT & Discovery Público: DHT & descubrimiento @@ -15646,13 +16445,13 @@ en la red (siempre informar de archivos disponibles) Red oscura: Niguno - - + + Local Address Dirección local - + External Address Dirección externa @@ -15662,28 +16461,28 @@ en la red (siempre informar de archivos disponibles) DNS dinámico - + Port: Puerto: - + Local network Red local - + External ip address finder Buscador de direcciónes IP externas - + UPnP UPnP - + Known / Previous IPs: IPs conocidas / anteriores: @@ -15709,13 +16508,13 @@ behind a firewall or a VPN. Permitir a RetroShare preguntarle mi ip a estos sitios web: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Rango de puertos aceptable desde 10 a 65535. Normalmente los puertos por debajo del 1024 están reservados por su sistema. @@ -15725,24 +16524,12 @@ behind a firewall or a VPN. Rango de puertos aceptable desde 10 a 65535. Normalmente los puertos por debajo del 1024 están reservados para su sistema. - + Onion Address Dirección onion - - Expected torrc Port Configuration: - Configuración de puerto en torrc esperada: - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - HiddenServiceDir </su/ruta/hacia/el/servicio/de/directorio/oculto> -HiddenServicePort 9191 127.0.0.1:9191 - - - + Discovery On (recommended) Descubrimiento activado (recomendado) @@ -15752,17 +16539,67 @@ HiddenServicePort 9191 127.0.0.1:9191 Descubrimiento inactivo - + + Hidden - See Config + Oculto - Ver configuración + + + + I2P Address + Dirección I2P + + + + I2P incoming ok + Entrada de I2P correcta + + + + Points at: + Apunta a: + + + + Tor incoming ok + Entrada de Tor correcta + + + + incoming ok + entrada correcta + + + + Proxy seems to work. El proxy parece funcionar. - + + I2P proxy is not enabled + El proxy I2P no está habilitado + + + + You are reachable through the hidden service. + Usted no es alcanzable mediante el servicio oculto. + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + El proxy no está habilitado o está estropeado. +¿¿Están todos los servicios en marcha y ejecutándose correctamente?? +¡Compruebe también sus puertos! + + + [Hidden mode] [Modo oculto] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> <html><head/><body><p>Esto limpia la lista de direcciones conocidas. Esta acción es útil si por algún motivo su lista de direcciones contiene una dirección no-válida/irrelevante/caducada que quiera evitar pasar a sus amigos como dirección de contacto.</p></body></html> @@ -15772,90 +16609,96 @@ HiddenServicePort 9191 127.0.0.1:9191 Limpiar - + Download limit (KB/s) Límite de descarga (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - <html><head/><body><p>Este límite de descarga cubre el total de la aplicación. Sin embargo, en algunas situaciones, como cuando transfiere muchos ficheros pequeños a la vez, el ancho de banda estimado se vuelve no fiable y el valor total informado por RetroShare podría exceder ese límite. </p></body></html> + <html><head/><body><p>Este límite de descarga cubre el total de la aplicación. Sin embargo, en algunas situaciones, como cuando transfiere muchos archivos pequeños a la vez, el ancho de banda estimado se vuelve no fiable y el valor total informado por RetroShare podría exceder ese límite. </p></body></html> - + Upload limit (KB/s) Límite de subida (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> <html><head/><body><p>El límite de subida cubre el total de la aplicación. Un límite de subida demasiado pequeño eventualmente podría bloquear servicios de prioridad baja (canales de foros). Un valor mínimo recomendado es 50 KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + <html><head/><body><p>Este botón simula una conexión SSL a su dirección oculta usando el correspondiente proxy (interpuesto). Si su nodo oculto es alcanzable, debe producir un error de toma de contacto (handshake) SSL, que RetroShare interpretará como un estado de conexión válido. Esta operación también podría causar varias &quot;advertencias de seguridad&quot; sobre conexiones desde la IP de su nodo local +(127.0.0.1) en la suscripción (feed) de noticias si la habilitó, que debe interpretar como un signo de buena comunicación.</p></body></html> + + + Test Prueba - + Network Red - + IP Filters Filtros de IP - + IP blacklist Lista negra de IPs - + IP range Rango de IPs - - - + + + Status Estado - - + + Origin Origen - - + + Reason Motivo - - + + Comment Comentario - + IPs IPs - + IP whitelist Lista blanca de IPs - + Manual input Introducción manual @@ -15880,12 +16723,133 @@ HiddenServicePort 9191 127.0.0.1:9191 Añadir a la lista blanca - + + Hidden Service Configuration + Configuración de servicio oculto + + + + Outgoing Connections + Conexiones salientes + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + <html><head/><body><p>Este es el puerto proxy Socks de Tor. Su nodo RetroShare puede usar este puerto para conectar a</p><p>nodos ocultos. El led de la derecha se vuelve verde cuando este puerto esté activo en su computadora. </p><p>Sin embargo esto no significa que su tráfico de RetroShare transite a través de Tor. Sólo lo hace si </p><p>conecta a nodos ocultos, o si usted mismo está ejecutando un nodo oculto.</p></body></html> + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + <html><head/><body><p>Este led a la izquierda será verde cuando el puerto de escucha esté activo en su computadora. No</p><p>significa que su tráfico de RetroShare transite a través de Tor. Sólo lo hará si</p><p>conecta a nodos ocultos, o si usted mismo está ejecutando un nodo oculto.</p></body></html> + + + + I2P Socks Proxy + Proxy I2P Socks + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + <html><head/><body><p>Este es el puerto proxy Socks de I2P. Su nodo RetroShare puede usar este puerto para conectar a</p><p>nodos ocultos. El led a la derecha se vuelve verde cuando este puerto esté activo en su computadora. </p><p>Sin embargo esto no significa que su tráfico de RetroShare transite a través de I2P. Sólo lo hace si </p><p>conecta a nodos ocultos, o si usted mismo está ejecutado un nodo oculto.</p></body></html> + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + <html><head/><body><p>Este led a la izquierda será verde cuando el puerto de escucha esté activo en su computadora. No</p><p>significa que su tráfico de RetroShare transite a través de I2P. Sólo lo hará si</p><p>conecta a nodos ocultos, o si usted mismo está ejecutando un nodo oculto.</p></body></html> + + + + I2P outgoing Okay + Salida de I2P correcta + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + Proxy Socks Tor predeterminado: 127.0.0.1:9050. Establézcalo en la configuración de torrc y actualícelo aquí. + +Proxy Socks I2P: vea http://127.0.0.1:7657/i2ptunnelmgr para el establecimiento de un túnel de cliente: +Asistente de túnel -> Cliente de túnel -> SOCKS 4/4a/5 -> introduzca un nombre -> deje 'Outproxies' vacío -> introduzca el puerto (¡memorice!) [puede que también quiera establecer la alcanzabilidad en 127.0.0.1] -> marque 'Auto-iniciar' -> ¡finalizado! +Ahora introduzca (ej. 127.0.0.1) y el puerto que ha seleccionado antes para el Proxy I2P. + +Puede conectarse a Nodos Ocultos, incluso si está ejecutando un Nodo Estándar, así que ¿por qué no instalar Tor y/o I2P? + + + + Incoming Service Connections + Conexiones de servicio entrantes + + + + + Service Address + Dirección del servicio + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + <html><head/><body><p>Esta es su dirección oculta. Debería parecerse a <span style=" font-weight:600;">[algo].onion</span> o <span style=" font-weight:600;">[algo].b32.i2p</span>. Si configuró un servicio oculto con Tor, la dirección onion es generada automáticamente por Tor. Por ejemplo, puede obtenerla en <span style=" font-weight:600;">/var/lib/tor/[nombredelservicio]/nombredelnodo</span>. Para I2P: Establezca un servidor de túneles ( http://127.0.0.1:7657/i2ptunnelmgr ) y copie su dirección base32 cuando esté iniciado (debe terminar con .b32.i2p)</p></body></html> + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + <html><head/><body><p>Esta es la dirección local a la que el servicio oculto apunta en su nodo local (localhost). La mayoría del tiempo <span style=" font-weight:600;">127.0.0.1</span> es la respuesta correcta.</p></body></html> + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + <html><head/><body><p>Este led se vuelve verde sólo si inicia un test activo usando el botón de arriba. </p><p>Cuando lo hace, significa que su nodo oculto puede ser alcanzado desde cualquier sitio, usando la red Tor o I2P</p><p>respectiva. ¡Felicidades!</p></body></html> + + + + incoming ok + entrada correcta + + + + Expected Configuration: + Configuración esperada: + + + + Please fill in a service address + Por favor, introduzca una dirección de servicio + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + Para recibir conexiones, primero tiene que establecer un servicio oculto Tor/I2P. +Para Tor: Vea torrc, y la documentación para los detalles del HOWTO (guía por pasos). +Para I2P: Vea http://127.0.0.1:7657/i2ptunnelmgr para establecer un servidor de túneles: +Asistente de túneles -> Servidor de túneles -> Estándar -> introduzca un nombre -> introduzca la dirección y puerto que su RS va a usar (vea arriba Dirección Local) -> marque 'Auto-iniciar' -> ¡finalizado! + +Una vez hecho esto, pegue la dirección onion/I2P (base32) en el recuadro de arriba. +Esta es su dirección externa en la red Tor/I2P. +Finalmente, asegúrese de que los puertos abiertos coinciden con la configuración. + +Si tiene problemas conectando sobre Tor, compruebe también los registros (logs) de Tor. + + + IP Range Rango de IPs - + Reported by DHT for IP masquerading Fue señalado por la DHT (tabla distribuida de hashes) para enmascaramiento de IP (IP masquerading) @@ -15908,32 +16872,33 @@ HiddenServicePort 9191 127.0.0.1:9191 Añadido por usted - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - <html><head/><body><p>Las IPs en lista blanca son reunidas desde las siguientes fuentes: IPs provenientes del interior de certificados intercambiados manualmente, rangos de IPs introducidos por usted en esta ventana, o en los elementos de seguridad de las novedades (feed).</p><p>El comportamiento predeterminado para Retroshare es (1) permitir siempre la conexión a los pares (peers) con IP en la lista blanca; (2) requerir opcionalmente que las IPs estén en la lista blanca. Puede cambiar este comportamiento en la ventana &quot;Detalles&quot; de cada nodo RetroShare. </p></body></html> + <html><head/><body><p>Las IPs en lista blanca son reunidas desde las siguientes fuentes: IPs provenientes del interior de certificados intercambiados manualmente, rangos de IPs introducidos por usted en esta ventana, o en los elementos de seguridad de las novedades (feed).</p><p>El comportamiento predeterminado para RetroShare es (1) permitir siempre la conexión a los pares (peers) con IP en la lista blanca; (2) requerir opcionalmente que las IPs estén en la lista blanca. Puede cambiar este comportamiento en la ventana &quot;Detalles&quot; de cada nodo RetroShare. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> <html><head/><body><p>La DHT (tabla dinámica de hashes) le permite responder a las peticiones de conexión de sus amigos usando la DHT de BitTorrent. Esto mejora enormemente la conectividad. No se almacena en realidad información en la DHT, sólo se usa como un proxy (interpuesto) del sistema para ponerse en contacto con otros nodos RetroShare.</p><p>El servicio de Descubrimiento envía el nombre del nodo y las identificaciones de sus contactos de confianza a pares (peers) conectados, para ayudarles a elegir nuevos amigos. Sin embargo, el establecimiento de amistad nunca es automático, y ambos pares todavía necesitan confiar el uno en el otro para permitir la conexión. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> <html><head/><body><p>El indicador se vuelve verde tan pronto como RetroShare logra obtener su propia IP de los sitios web listados debajo, si habilita esa acción. RetroShare también usará otros medios para averiguar su propia IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> <html><head/><body><p>Esta lista se rellena automáticamente con información reunida en múltiples fuentes: pares con enmascaramiento de los que informó la DHT, rangos de IPs introducidos por usted, y rangos de IPs de los que informaron sus amigos. La configuración predeterminada debe protegerle contra la repetición de tráfico a gran escala.</p><p>Conjeturar automáticamente si las IPs son de enmascaramiento puede incluir las IPs de sus amigos en la lista negra. En ese caso, use el menú contextual para incluirlas en la lista blanca.</p></body></html> - + activate IP filtering activar el filtrado de IPs - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> <html><head/><body><p>Esto es muy drástico, tenga cuidado. Como las IPs de enmascaramiento (masquerading) podrían de verdad ser IPs reales, esta opción podría causar la desconexión efectiva, y probablemente forzarle a añadir las IPs de sus amigos a la lista blanca.</p></body></html> @@ -15963,111 +16928,20 @@ HiddenServicePort 9191 127.0.0.1:9191 Excluir automáticamente rangos de IPs de enmascaramiento de la DHT comenzando en - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - <html><head/><body><p>Este nodo RetroShare se está ejecutando en &quot;Modo Oculto&quot;. Eso significa que sólo puede alcanzarse a través de la red Tor.</p><p>Como tal, algunas opciones de red están deshabilitadas.</p></body></html> - - - - Tor Configuration - Configuración de Tor - - - - Outgoing Tor Connections - Conexiones de Tor salientes - - - + Tor Socks Proxy Proxy Socks de Tor - + Tor outgoing Okay Salida de Tor correcta - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - Proxy Socks de Tor predeterminado: 127.0.01:9050. Añádalo al fichero de configuración torrc y actualice aquí. - -Puede conectar a nodos ocultos, incluso si está corriendo -un nodo estándar, así que ¿por qué no configurar Tor? - - - - Incoming Tor Connections - Conexiones de Tor entrantes - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - <html><head/><body><p>Este botón simula una conexión SSL a su dirección de Tor usando el proxy Tor. Si su nodo Tor es alcanzable, debería producir un error de toma de contacto (handshake) SSL, que RetroShare interpretará como un estado de conexión válido. Esta operación también podría causar varias "advertencia de seguridad" acerca de conexiones desde la IP local (127.0.0.1) de su equipo en las Novedades (feed), si las habilitó,</p></body></html> - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - <html><head/><body><p>Esta es su dirección onion. Debería parecerse a <span style=" font-weight:600;">[algo].onion. </span>Si configuró un servicio oculto con Tor, la dirección onion es generada automáticamente por Tor. Por ejemplo, puede averiguarla en <span style=" font-weight:600;">/var/lib/tor/[nombre del servicio]/nombre del nodo</span></p></body></html> - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - <html><head/><body><p>Esta es la dirección local a la que el servicio oculto de Tor apunta localmente (localhost). La mayoría de las veces, <span style=" font-weight:600;">127.0.0.1</span> es la respuesta correcta.</p></body></html> - - - - Tor incoming ok - Entrada de Tor correcta - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - Para recibir conexiones, primero tiene que configurar un servicio oculto de Tor. -Revise la documentación de Tor si quiere un HOWTO (tutorial) detallado. - -Una vez hecho esto, pegue la dirección onion en el campo de arriba. -Esta es su dirección externa en la red Tor. -Finalmente asegúrese de que los puertos coinciden con los de la configuración de Tor. - -Si tiene problemas conectando sobre Tor, compruebe los registros (logs) de Tor. - - - - Hidden - See Tor Config - Oculto - Vea la configuración de Tor - - - + Tor proxy is not enabled El proxy de Tor no está habilitado - - - - You are reachable through Tor. - Usted es alcanzable a través de Tor. - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - El proxy de Tor no está habilitado o está estropeado. -¿Está corriendo un servicio oculto de Tor? -¡Compruebe sus puertos! - ServicePermissionDialog @@ -16089,7 +16963,7 @@ Check your ports! Auto-download recommended files - Auto-descargar los ficheros recomendados + Auto-descargar los archivos recomendados @@ -16100,7 +16974,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions PermisosServicio @@ -16114,16 +16988,16 @@ Check your ports! Permissions Permisos - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permisos</h1> <p>Permisos te permite controlar que servicios están disponibles para tus amigos</p> <p>Cada interruptor muestra dos lices, indicando si tu o tus amigos tienen habilitado ese servicio. Ambos necesitáis estar ON (mostrando <img height=20 src=":/images/switch11.png"/>) para permitir una combinación de transferencia del servicio/amigo.</p> <p>Para cada servicio, el interruptor global <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> te permite cambiar un servicio ON/OFF para todos tus amigos a la vez.</p> <p>Ten cuidado: Algunos servicios dependen de otros. Por ejemplo apagando el servicio Turtle también apagarás las transferencias anónimas y el chat con amigos de amigos.</p> - hide offline ocultar fuera de línea + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permisos</h1> <p>Los permisos le permiten controlar qué servicios están disponibles para qué amigos.</p> <p>Cada interruptor muestra dos luces indicando si usted o su amigo ha habilitado ese servicio. Ambas tienen que estar en ACTIVO (mostrando <img height=20 src=":/images/switch11.png"/>) para permitir la transferencia de información para una combinación específica servicio/amigo.</p> <p>Para cada servicio, el interruptor global <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> le permite accionar un servicio ACTIVO/INACTIVO para todos los amigos a la vez.</p> <p>Tenga mucho cuidado: Algunos servicios dependen unos de otros. Por ejemplo, desactivar turtle también detendrá todas las transferencias anónimas, chat a distancia, y mensajería a distancia.</p> + Settings @@ -16386,7 +17260,7 @@ Seleccione los amigos con los que quiere compartir su canal. Descargar - + Copy retroshare Links to Clipboard Copiar enlace de RetroShare al portapapeles @@ -16411,7 +17285,7 @@ Seleccione los amigos con los que quiere compartir su canal. Añadir enlaces a la nube - + RetroShare Link Enlace de RetroShare @@ -16427,7 +17301,7 @@ Seleccione los amigos con los que quiere compartir su canal. Compartir archivos - + Create Collection... Crear colección... @@ -16450,7 +17324,7 @@ Seleccione los amigos con los que quiere compartir su canal. SoundManager - + Friend Amigo @@ -16476,11 +17350,12 @@ Seleccione los amigos con los que quiere compartir su canal. + Message arrived El mensaje llegó - + Download Descargar @@ -16489,6 +17364,11 @@ Seleccione los amigos con los que quiere compartir su canal. Download complete Descarga completa + + + Lobby + Sala + SoundPage @@ -16549,7 +17429,7 @@ Seleccione los amigos con los que quiere compartir su canal. SplashScreen - + Load profile Cargar perfil @@ -16663,7 +17543,7 @@ Esta elección puede revertirse en la configuración. Your PGP password will not be stored. This choice can be reverted in settings. - La contraseña hacia su certificado SSL (su nodo) se almacenará cifrada en el fichero keys/help.dta . Esto no es seguro. + La contraseña hacia su certificado SSL (su nodo) se almacenará cifrada en el archivo keys/help.dta . Esto no es seguro. Su contraseña PGP no se almacenará. @@ -16809,12 +17689,12 @@ Esta elección puede revertirse en la configuración. - + Connected Conectado - + Unreachable Inaccesible @@ -16830,18 +17710,18 @@ Esta elección puede revertirse en la configuración. - + Trying TCP Intentando TCP - - + + Trying UDP Intentando UDP - + Connected: TCP Conectado: TCP @@ -16852,6 +17732,11 @@ Esta elección puede revertirse en la configuración. + Connected: I2P + Conectado: I2P + + + Connected: Unknown Conectado: Deconocido @@ -16861,7 +17746,7 @@ Esta elección puede revertirse en la configuración. Contacto por DHT - + TCP-in TCP-entrante @@ -16871,7 +17756,7 @@ Esta elección puede revertirse en la configuración. TCP-saliente - + inbound connection conexión entrante @@ -16881,7 +17766,7 @@ Esta elección puede revertirse en la configuración. conexión saliente - + UDP UDP @@ -16895,13 +17780,23 @@ Esta elección puede revertirse en la configuración. Tor-out Tor-saliente + + + I2P-in + I2P-entrante + + + + I2P-out + I2P-saliente + unkown Desconocido - + Connected: Tor Conectado: Tor @@ -17118,7 +18013,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Pausar @@ -17167,7 +18062,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled Todas las notificaciones están deshabilitadas @@ -17245,27 +18140,27 @@ p, li { white-space: pre-wrap; } <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Streaming </span>provoca que la transferencia requiera 1 MB de pedazos del fichero en orden desde el principio, para facilitar la previsualización durante la descarga. <span style=" font-weight:600;">Aleatoria</span> es puramente aleatoria y favorece un comportamiento de enjambre. <span style=" font-weight:600;">Progresiva</span> es un equilibrio, selecciona el siguiente pedazo aleatoriamente dentro de los 50 MB posteriores al final de un fichero parcial. Eso permite cierta aleatorización a la vez que previene grandes tiempos de inicialización de ficheros vacíos.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>provoca que la transferencia requiera 1 MB de pedazos del archivo en orden desde el principio, para facilitar la previsualización durante la descarga. <span style=" font-weight:600;">Aleatoria</span> es puramente aleatoria y favorece un comportamiento de enjambre (subir y bajar el archivo simultáneamente). <span style=" font-weight:600;">Progresiva</span> es un equilibrio, selecciona el siguiente pedazo aleatoriamente dentro de los 50 MB posteriores al final de un archivo parcial. Eso permite cierta aleatorización a la vez que previene grandes tiempos de inicialización de archivos vacíos.</p></body></html> <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> - <html><head/><body><p>RetroShare suspenderá todas las transferencias y configurará el guardado de ficheros si el espacio de disco baja de este límite. Esto previene la pérdida de información en algunos sistemas. Una ventana emergente le alertará cuando eso suceda.</p></body></html> + <html><head/><body><p>RetroShare suspenderá todas las transferencias y configurará el guardado de archivos si el espacio de disco baja de este límite. Esto previene la pérdida de información en algunos sistemas. Una ventana emergente le alertará cuando eso suceda.</p></body></html> <html><head/><body><p>This value controls how many tunnel request your peer can forward per second. </p><p>If you have a large internet bandwidth, you may raise this up to 30-40, to allow statistically longer tunnels to pass. Be very careful though, since this generates many small packets that can significantly slow down your own file transfer. </p><p>The default value is 20. If you're not sure, keep it that way.</p></body></html> - <html><head/><body><p>Este valor controla cuantas peticiones de túneles puede repetir por segundo su par (peer). </p><p>Si tiene un gran ancho de banda para Internet, puede elevar esto hasta 30-40, para estadísticamente permitir pasar a túneles más largos. No obstante tenga mucho cuidado, ya que esto genera muchos paquetes pequeños que pueden ralentizar significativamente su propia transferencia de ficheros. </p><p>El valor por defecto es 20. Si no está seguro, déjelo así.</p></body></html> + <html><head/><body><p>Este valor controla cuantas peticiones de túneles puede repetir por segundo su par (peer). </p><p>Si tiene un gran ancho de banda para Internet, puede elevar esto hasta 30-40, para estadísticamente permitir pasar a túneles más largos. No obstante tenga mucho cuidado, ya que esto genera muchos paquetes pequeños que pueden ralentizar significativamente su propia transferencia de archivos. </p><p>El valor por defecto es 20. Si no está seguro, déjelo así.</p></body></html> File transfer - Transferencia de ficheros + Transferencia de archivos <html><head/><body><p>You can use this to force RetroShare to download your files rather <br/>than cache files for as many slots as requested. Setting that number <br/>to be equal to the queue size above will always prioritize your files<br/>over cache. <br/><br/>It is however recommended to leave at least a few slots for cache files. For now, cache files are only used to transfer friend file lists.</p></body></html> - <html><head/><body><p>Puede usar esto para forzar a RetroShare a descargar sus ficheros en lugar <br/>de guardar en caché ficheros para cuantas puestos lo requieran. Establecer ese número <br/>para que sea igual al tamaño de la cola de arriba siempre priorizará sus ficheros<br/>sobre el guardado en caché. <br/><br/>Sin embargo, se recomienda dejar al menos unos pocos puestos para guardar ficheros en caché. Por ahora, guardar ficheros en caché sólo se usa para transferir listas de ficheros de amigos.</p></body></html> + <html><head/><body><p>Puede usar esto para forzar a RetroShare a descargar sus archivos en lugar <br/>de guardar en caché archivos para cuantas puestos lo requieran. Establecer ese número <br/>para que sea igual al tamaño de la cola de arriba siempre priorizará sus archivos<br/>sobre el guardado en caché. <br/><br/>Sin embargo, se recomienda dejar al menos unos pocos puestos para guardar archivos en caché. Por ahora, guardar archivos en caché sólo se usa para transferir listas de archivos de amigos.</p></body></html> @@ -17300,16 +18195,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Descargas + Uploads Enviando - + Name i.e: file name @@ -17505,25 +18402,25 @@ p, li { white-space: pre-wrap; } - + Slower Más lento - - + + Average Normal - - + + Faster Más rápido - + Random Aleatorio @@ -17548,7 +18445,12 @@ p, li { white-space: pre-wrap; } Especificar... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Transferencia de archivos</h1> <p>RetroShare tiene dos formas de transferir archivos: transferencias directas desde sus amigos, y transferencias distantes anónimas por túnel. Además, la transferencia de archivos es desde múltiples-fuentes y permite comportamiento de enjambre (puede ser fuente a la vez que descarga)</p> <p>Puede compartir archivos usando el <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icono del lado izquierdo de la barra lateral. Estos archivos se listarán en la pestaña Mis Archivos. Puede decidir para cada grupo de amigos si pueden o no ver estos archivos en su pestaña de Archivos de Amigos</p> <p>La pestaña de búsqueda informa de archivos de las listas de archivos de sus amigos, y de archivos distantes que se pueden alcanzar de forma anónima usando la sistema de tunelización de múltiples-saltos.</p> + + + Move in Queue... Mover en la lista de espera... @@ -17574,39 +18476,39 @@ p, li { white-space: pre-wrap; } - + Failed Fallido - - + + Okay Bien - - + + Waiting Esperando - + Downloading Descargando - + Complete Completo - + Queued Esperando @@ -17649,7 +18551,7 @@ bloques defectuosos y los descargará de nuevo. ¡Trate de ser paciente! - + Transferring Transfiriendo @@ -17659,7 +18561,7 @@ bloques defectuosos y los descargará de nuevo. Enviando - + Are you sure that you want to cancel and delete these files? ¿Está seguro que quiere cancelar y borrar estos archivos? @@ -17717,7 +18619,7 @@ bloques defectuosos y los descargará de nuevo. Por favor, introduzca un nuevo - y válido - nombre de archivo - + Last Time Seen i.e: Last Time Receiced Data Última vez vista @@ -17823,7 +18725,7 @@ bloques defectuosos y los descargará de nuevo. Mostrar columna, Última vez vista - + Columns Columnas @@ -17833,7 +18735,7 @@ bloques defectuosos y los descargará de nuevo. Transferencia de archivos - + Path i.e: Where file is saved Ruta @@ -17849,15 +18751,9 @@ bloques defectuosos y los descargará de nuevo. Mostrar columna de ruta - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Transferencia de archivos</h1> <p>Retroshare tiene dos posibilidades para transferir archivos: transferencias directas de sus amigos, y transferencias distantes canalizadas anónimamente. Además, la transferencia de archivos es multi-fuente y permite formar un enjambre (puede ser una fuente mientras descarga)</p> <p>Puede compartir archivos mediante el <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icono de la barra lateral izquierda. Estos archivos aparecerán en la pestaña Mis archivos. Usted puede decidir para cada grupo de amigo si pueden o no ver estos archivos en la pestaña Archivos de amigos -</p><p>La pestaña Búsqueda le informa de los archivos en las listas de archivos de sus amigos, y los archivos remotos que se pueden alcanzar anónimamente usando el sistema de túneles de múltiples saltos.</p> - - - + Could not delete preview file - No se pudo borrar el fichero de vista previa + No se pudo borrar el archivo de vista previa @@ -17865,7 +18761,7 @@ bloques defectuosos y los descargará de nuevo. ¿Intentarlo de nuevo? - + Create Collection... Crear colección... @@ -17880,7 +18776,7 @@ bloques defectuosos y los descargará de nuevo. Ver colección... - + Collection Colección @@ -17890,17 +18786,17 @@ bloques defectuosos y los descargará de nuevo. Compartición de archivos - + Anonymous tunnel 0x Túnel anónimo 0x - + Show file list transfers - Mostrar transferencias de listas de ficheros + Mostrar transferencias de listas de archivos - + version: versión: @@ -17936,7 +18832,7 @@ bloques defectuosos y los descargará de nuevo. DIR - + Friends Directories Carpetas de amigos @@ -17979,7 +18875,7 @@ bloques defectuosos y los descargará de nuevo. TurtleRouterDialog - + Search requests Peticiones de búsqueda @@ -18042,7 +18938,7 @@ bloques defectuosos y los descargará de nuevo. Estadística del encaminador - + Age in seconds Edad en segundos @@ -18057,7 +18953,17 @@ bloques defectuosos y los descargará de nuevo. total - + + Anonymous tunnels + Túneles anónimos + + + + Authenticated tunnels + Túneles autentificados + + + Unknown Peer Vecino desconocido @@ -18066,16 +18972,11 @@ bloques defectuosos y los descargará de nuevo. Turtle Router Router Turtle - - - Tunnel Requests - Solicitudes de túnel - TurtleRouterStatisticsWidget - + Search requests repartition Reparto de solicitudes de búsqueda @@ -18274,10 +19175,20 @@ bloques defectuosos y los descargará de nuevo. Nota: estas configuraciones no afectan a retroshare-nogui (aplicación en línea de comandos sin interfaz gráfica). retroshare-nogui tiene un parámetro de línea comandos para activar la interfaz web. - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Interfaz web</h1> <p>La interfaz web le permite controlar Retroshare desde el navegador. Múltiples dispositivos pueden compatir el control sobre una instancia Retroshare. Así que podría iniciar una conversación en una tableta y posteriormente usar una computadora de escritorio para continuarla.</p> <p>Advertencia: No exponga la interfaz web hacia Internet, porque no hay control de acceso ni cifrado. Si quiere usar la interfaz web sobre Internet, use un túnel SSH o un proxy para asegurar la conexión.</p> + + + Webinterface not enabled Interfaz web no habilitada + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + La interfaz web no está habilitada. Habilítela en Configuración -> Interfaz web + failed to start Webinterface @@ -18288,11 +19199,6 @@ bloques defectuosos y los descargará de nuevo. Webinterface Interfaz web - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Interfaz web</h1> <p>La interfaz web le permite controlar RetroShare desde el navegador. Múltiples dispositivos pueden compartir el control sobre una misma instancia de Retroshare. De modo que puede iniciar una conversación en una tableta y luego usar una computadora de escritorio para continuarla.</p> <p>Advertencia: No exponga la interfaz web hacia Internet porque no hay control de acceso y no está cifrada. Si quiere usar la interfaz web sobre Internet, utilice un túnel SSH o un proxy (interpuesto) para dotar de seguridad a la conexión.</p> - WikiAddDialog @@ -18482,7 +19388,7 @@ bloques defectuosos y los descargará de nuevo. Buscar - + My Groups Mis grupos @@ -18502,7 +19408,7 @@ bloques defectuosos y los descargará de nuevo. Otros grupos - + Subscribe to Group Suscribirse al grupo diff --git a/retroshare-gui/src/lang/retroshare_fi.qm b/retroshare-gui/src/lang/retroshare_fi.qm index 9db9b6af412129f2f1b13e1759a3f3210f773eeb..816983fac359dccbd06cf2deb7ccce9c54fc6ddd 100644 GIT binary patch delta 22741 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 ZrVsj%{TF#(QXQIJR5da|zTp4> diff --git a/retroshare-gui/src/lang/retroshare_fi.ts b/retroshare-gui/src/lang/retroshare_fi.ts index 507ca3ccc..1a42c065f 100644 --- a/retroshare-gui/src/lang/retroshare_fi.ts +++ b/retroshare-gui/src/lang/retroshare_fi.ts @@ -1,15 +1,15 @@ - + AWidget - + version -versio RetroShare version - + Retrosharen versio @@ -21,12 +21,17 @@ Tietoja RetroSharesta - + About Tietoja - + + Copy Info + + + + close sulje @@ -494,7 +499,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Kieli @@ -534,24 +539,28 @@ p, li { white-space: pre-wrap; } Työkalupalkki - - + + On Tool Bar Työkalupalkissa - - + On List Item Luettelonimikkeessä - + Where do you want to have the buttons for menu? Mihin haluat laittaa valikon painikkeet? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? Mihin haluat laittaa sivun painikkeet? @@ -587,24 +596,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 Kuvakkeen koko = 8x8 - - + + Icon Size = 16x16 Kuvakkeen koko = 16x16 - - + + Icon Size = 24x24 Kuvakkeen koko = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar Tilarivi @@ -634,11 +655,16 @@ p, li { white-space: pre-wrap; } - - - Icon Size = 32x32 + + Disable SysTray ToolTip + + + + Icon Size = 32x32 + Kuvakkeen koko = 32x32 + ApplicationWindow @@ -740,7 +766,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar Paina vaihtaaksesi avatarkuvasi @@ -748,7 +774,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -756,7 +782,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A Ei sovellu @@ -764,13 +790,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage RetroSharen kaistanleveyden käyttö - + Show Settings Näytä asetukset @@ -825,7 +851,7 @@ p, li { white-space: pre-wrap; } Peru - + Since: Alkaen: @@ -835,6 +861,31 @@ p, li { white-space: pre-wrap; } Piilota asetukset + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -898,7 +949,7 @@ p, li { white-space: pre-wrap; } Sallittu vastaanotettu - + TOTALS YHTEENSÄ @@ -913,6 +964,49 @@ p, li { white-space: pre-wrap; } Lomake + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -941,14 +1035,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -962,17 +1048,32 @@ p, li { white-space: pre-wrap; } Vaihda nimimerkki - + Mute participant Mykistä osanottaja - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Kutsu ystäviä keskusteluaulaan - + Leave this lobby (Unsubscribe) Poistu aulasta @@ -987,7 +1088,7 @@ p, li { white-space: pre-wrap; } Valitse kutsuttavat ystävät: - + Welcome to lobby %1 Tervetuloa aulaan %1 @@ -997,13 +1098,13 @@ p, li { white-space: pre-wrap; } Aihe: %1 - + Lobby chat Aulakeskustelu - + Lobby management @@ -1035,7 +1136,7 @@ p, li { white-space: pre-wrap; } Haluatko varmasti poistua tästä keskusteluaulasta? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Käytä hiiren oikeaa painiketta mykistääksesi osanottajan tai päinvastoin<br/>Tuplaklikkaa kohdistaaksesi viestisi tietylle henkilölle<br/> @@ -1050,12 +1151,12 @@ p, li { white-space: pre-wrap; } sekuntia - + Start private chat - + Decryption failed. @@ -1101,7 +1202,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies Keskusteluaulat @@ -1140,18 +1241,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies Keskusteluaulat - - + + Name Nimi - + Count Lkm @@ -1172,23 +1273,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby Luo keskusteluaula - + [No topic provided] [Ei aihetta] - + Selected lobby info Tietoja valitusta aulasta - + Private Yksityinen @@ -1197,13 +1298,18 @@ p, li { white-space: pre-wrap; } Public Julkinen + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. Et ole tilannut aulaa: tuplaklikkaa siirtyäksesi keskustelemaan - + Remove Auto Subscribe Poista automaattinen tilaus @@ -1213,27 +1319,37 @@ p, li { white-space: pre-wrap; } Lisää automaattinen tilaus - + %1 invites you to chat lobby named %2 %1 kutsuu sinut keskusteluaulaan nimeltä %2 - + Search Chat lobbies Hae keskusteluauloista - + Search Name Hae nimeä - + Subscribed Tilattu - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns Sarakkeet @@ -1248,7 +1364,7 @@ p, li { white-space: pre-wrap; } Ei - + Lobby Name: Aulan nimi: @@ -1267,6 +1383,11 @@ p, li { white-space: pre-wrap; } Type: Tyyppi: + + + Security: + + Peers: @@ -1277,12 +1398,13 @@ p, li { white-space: pre-wrap; } + TextLabel TekstiMerkki - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1291,7 +1413,7 @@ Valitse auloja vasemmalta nähdäksesi tietoja. Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + Private Subscribed Lobbies Yksityiset tilatut aulat @@ -1300,23 +1422,18 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Public Subscribed Lobbies Julkiset tilatut aulat - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Keskusteluaulat</h1> <p>Keskusteluaulat ovat hajautettuja chat-huoneita ja toimivat kuten IRC. Niiden avulla voit keskustella nimettömänä lukuisten ihmisten kanssa ilman, että sinun tarvitsee ystävystyä heidän kanssaan</p> <p>Keskusteluaula voi olla julkinen (ystäväsi näkevät sen) tai yksityinen (ystäväsi eivät näe sitä, ellet kutsu heitä <img src=":/images/add_24x24.png" width=12/>). Kun sinut on kutsuttu yksityiseen aulaan, näet sen, kun ystäväsi käyttävät sitä.</p> <p>Vasemmalla oleva luettelo näyttää keskusteluaulat, joissa on ystäviäsi. Voit joko <ul> <li>luoda uuden aulan painamalla hiiren oikeaa painiketta</li> <li>kaksoisnapauttaa jotakin aulaa siirtyäksesi sinne</li> </ul> Huom.: tietokoneesi on oltava oikeassa ajassa, jotta keskusteluaulat toimivat oikein, joten tarkista järjestelmäsi kello! </p> - Chat Lobbies Keskusteluaulat - + Leave this lobby - + Enter this lobby @@ -1326,22 +1443,42 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1394,7 +1531,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Peru - + Quick Message Pikaviesti @@ -1403,12 +1540,37 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. ChatPage - + General Yleiset - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Keskusteluasetukset @@ -1433,7 +1595,12 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Käytä mukautettjua kirjasinkokoja - + + Minimum font size + + + + Enable bold Käytä korostusta @@ -1547,7 +1714,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Yksityinen keskustelu - + Incoming Saapuva @@ -1591,6 +1758,16 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. System message Järjestelmäviesti + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1682,7 +1859,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + Private chat invite from @@ -1705,7 +1882,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. ChatStyle - + Standard style for group chat Vakiotyyli ryhmäkeskustelulle @@ -1754,17 +1931,17 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. ChatWidget - + Close Sulje - + Send Lähetä - + Bold Lihavointi @@ -1779,12 +1956,12 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Kursivointi - + Attach a Picture Liitä kuva - + Strike Yliviivaus @@ -1835,12 +2012,37 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Palauta oletuskirjasin - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... kirjoittaa... - + Do you really want to physically delete the history? Haluatko todella tuhota historian pysyvästi? @@ -1865,7 +2067,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Tekstitiedosto (*.txt );;Kaikki tiedostot (*) - + appears to be Offline. näyttää olevan poissa linjoilta. @@ -1890,7 +2092,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. on kiireinen, eikä välttämättä vastaa - + Find Case Sensitively Huomioi kirjainkoko @@ -1912,7 +2114,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Älä lopeta värittämistä, kun X kohdetta löydetty (vaatii konetehoa) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Hae edellinen </b><br/><i>Ctrl+Shift+G</i> @@ -1927,12 +2129,12 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. <b>Hae </b><br/><i>Ctrl+F</i> - + (Status) - + Set text font & color @@ -1942,7 +2144,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + WARNING: Could take a long time on big history. @@ -1953,7 +2155,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1988,12 +2190,12 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + Type a message here - + Don't stop to color after @@ -2003,7 +2205,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + Warning: @@ -2161,7 +2363,12 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Tiedot - + + Node info + + + + Peer Address Vertaisen osoite @@ -2248,12 +2455,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - - Location info - - - - + Node name : @@ -2289,6 +2491,11 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2344,7 +2551,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2377,17 +2584,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Lisää uusi ystävä - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Tämä aputoiminto auttaa sinua ottamaan yhteyden ystäviisi RetroShare-verkossa.<br>Asian voi hoitaa seuraavilla tavoilla: - - - - &Enter the certificate manually - &Anna varmenne manuaalisesti - - - + &You get a certificate file from your friend &Saat varmenteen ystävältäsi @@ -2397,19 +2594,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. &Ystävysty valitsemieni ystävien ystävien kanssa - - &Enter RetroShare ID manually - A&nna RetroSharen tunniste manuaalisesti - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Lähetä kutsu sähköpostilla - (Hän vastaanottaa sähköpostin, joka sisältää ohjeet RetroSharen lataamiseksi) - - - + Text certificate Tekstivarmenne @@ -2419,13 +2604,8 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Näytä PGP-varmenteet tekstimuotoisina. - - The text below is your PGP certificate. You have to provide it to your friend - Allaoleva teksti on PGP-varmenteesi. Sinun tulee antaa se ystävällesi - - - - + + Include signatures Sisällytä allekirjoitukset @@ -2446,11 +2626,16 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - Please, paste your friends PGP certificate into the box below - Ole hyvä ja liitä ystäväsi PGP-varmenne allaolevaan laatikkoon + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files Varmennetiedostot @@ -2531,6 +2716,46 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email Kutsu ystäviä sähköpostilla @@ -2556,7 +2781,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + Friend request Ystäväpyyntö @@ -2570,61 +2795,102 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + Peer details Vertaisen tiedot - - + + Name: Nimi: - - + + Email: Sähköposti: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: Sijainti: - + - + Options Asetukset - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: Lisää ystävä ryhmään: - - + + Authenticate friend (Sign PGP Key) Varmenna ystävä (allekirjoita PGP-avain) - - + + Add as friend to connect with Lisää ystäväksi, johon otat yhteyden - - + + To accept the Friend Request, click the Finish button. Paina Valmis-painiketta hyväksyäksesi ystäväpyynnön - + Sorry, some error appeared Valitettavasti on tapahtunut jokin virhe @@ -2644,7 +2910,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Tietoja ystävästäsi: - + Key validity: Avaimen kelpoisuus: @@ -2700,12 +2966,12 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + Certificate Load Failed Varmenteen lataus epäonnistui - + Cannot get peer details of PGP key %1 Vertaistietoja ei kyetty hakemaan PGP-avaimelle %1 @@ -2740,12 +3006,13 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Vertaisen tunniste - + + RetroShare Invitation Retroshare-kutsu - + Ultimate Äärimmäinen @@ -2771,7 +3038,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. - + You have a friend request from Sinulle on ystäväpyyntö, lähettäjä @@ -2786,7 +3053,7 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Vertainen %1 ei ole verkossasi - + Use new certificate format (safer, more robust) Käytä uutta varmenneformaattia (turvallisempi ja vakaampi) @@ -2884,13 +3151,22 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. *** Ei mitään *** - + Use as direct source, when available Käytä suorana lähteenä, kun saatavilla - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others Suosittele useita ystäviä toisilleen @@ -2900,12 +3176,17 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Ystäväsuositukset - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: Viesti: - + Recommend friends Suosittele ystäviä @@ -2925,17 +3206,12 @@ Tuplaklikkaa auloja siirtyäksesi keskustelemaan. Ole hyvä ja valitse ainakin yksi ystävä vastaanottajaksi. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Huomioithan, että RetroShare edellyttää kohtuuttomia määriä tietoliikennekaistaa, muistia ja prosessoritehoa, jos lisäät paljon ystäviä. Voit lisätä niin monta ystävää kuin haluat, mutta yli 40 luultavasti vaatii liikaa resursseja. - - - + Add key to keyring Lisää avain avainnippuun - + This key is already in your keyring Tämä avain on jo avainnipussasi @@ -2951,7 +3227,7 @@ lähettämiseen tälle vertaiselle, vaikkette ystävystyisikään. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Varmenteella on väärä versionumero. Muista, että versioiden 0.6 ja 0.5 verkot eivät ole keskenään yhteensopivia. @@ -2961,8 +3237,8 @@ vaikkette ystävystyisikään. - - + + Auto-download recommended files @@ -2972,8 +3248,8 @@ vaikkette ystävystyisikään. - - + + Require whitelist clearance to connect @@ -2983,7 +3259,7 @@ vaikkette ystävystyisikään. - + No IP in this certificate! @@ -2993,17 +3269,17 @@ vaikkette ystävystyisikään. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3874,7 +4150,7 @@ p, li { white-space: pre-wrap; } Lähetä viesti foorumiin - + Forum Foorumi @@ -3884,7 +4160,7 @@ p, li { white-space: pre-wrap; } Aihe - + Attach File Liitä tiedosto @@ -3914,12 +4190,12 @@ p, li { white-space: pre-wrap; } Aloita uusi viestiketju - + No Forum Ei foorumia - + In Reply to Vastauksena @@ -3957,12 +4233,12 @@ p, li { white-space: pre-wrap; } Haluatko todella luoda %1 viestiä? - + Send Lähetä - + Forum Message @@ -3973,7 +4249,7 @@ Do you want to reject this message? - + Post as @@ -4008,8 +4284,8 @@ Do you want to reject this message? - Security policy: - Tietoturva: + Visibility: + @@ -4022,7 +4298,22 @@ Do you want to reject this message? Yksityinen (perustuu kutsuihin) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. Valitse ystävät ryhmäkeskusteluun. @@ -4032,12 +4323,22 @@ Do you want to reject this message? Kutsutut ystävät - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: Kontaktit: - + Identity to use: @@ -4196,7 +4497,12 @@ Do you want to reject this message? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT pois päältä @@ -4218,8 +4524,8 @@ Do you want to reject this message? - DHT Error - Virhe DHT:ssä + No peer found in DHT + @@ -4316,7 +4622,7 @@ Do you want to reject this message? DhtWindow - + Net Status Verkon tila @@ -4346,7 +4652,7 @@ Do you want to reject this message? Vertaisen osoite - + Name Nimi @@ -4391,7 +4697,7 @@ Do you want to reject this message? RsId - + Bucket Sanko @@ -4417,17 +4723,17 @@ Do you want to reject this message? - + Last Sent Viimeksi lähetetty - + Last Recv Viimeksi vast.otettu - + Relay Mode Välitystapa @@ -4462,7 +4768,22 @@ Do you want to reject this message? Kaistanleveys - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState Tuntematon verkon tila @@ -4667,7 +4988,7 @@ Do you want to reject this message? Tuntematon - + RELAY END VÄLITYKSEN LOPPU @@ -4701,19 +5022,24 @@ Do you want to reject this message? - + %1 secs ago %1 sek sitten - + %1B/s %1B/s - + + Relays + + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4723,13 +5049,15 @@ Do you want to reject this message? ei ikinä - + + + DHT DHT - + Net Status: @@ -4799,12 +5127,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4940,7 +5289,7 @@ tiedostoille uudelleen, kun kytket sen kiiinni. ExprParamElement - + to @@ -5045,7 +5394,7 @@ tiedostoille uudelleen, kun kytket sen kiiinni. FileTransferInfoWidget - + Chunk map Palojen kartta @@ -5220,7 +5569,7 @@ tiedostoille uudelleen, kun kytket sen kiiinni. FlatStyle_RDM - + Friends Directories Ystävien hakemistot @@ -5296,90 +5645,40 @@ tiedostoille uudelleen, kun kytket sen kiiinni. FriendList - - - Status - Tila - - - - - + Last Contact Viimeisin kontakti - - - Avatar - Avatar - - - + Hide Offline Friends Piilota offline-ystävät - - State - Tila + + export friendlist + - Sort by State - Järjestä tilan mukaan + export your friendlist including groups + - - Hide State - Piilota tila - - - - - Sort Descending Order - Laskeva järjestys - - - - - Sort Ascending Order - Nouseva järjestys - - - - Show Avatar Column - Näytä avatar-sarake - - - - Name - Nimi + + import friendlist + - Sort by Name - Järjestä nimen mukaan - - - - Sort by last contact - Järjestä viimeisen kontaktin mukaan - - - - Show Last Contact Column - Näytä viimeisen kontaktin sarake - - - - Set root is Decorated - Aseta puunäkymä + import your friendlist including groups + + - Set Root Decorated - Aseta puunäkymä + Show State + @@ -5388,7 +5687,7 @@ tiedostoille uudelleen, kun kytket sen kiiinni. Näytä ryhmät - + Group Ryhmä @@ -5429,7 +5728,17 @@ tiedostoille uudelleen, kun kytket sen kiiinni. Lisää ryhmään - + + Search + + + + + Sort by state + + + + Move to group Siirrä ryhmään @@ -5459,40 +5768,103 @@ tiedostoille uudelleen, kun kytket sen kiiinni. Kutista kaikki - - + Available Saatavilla - + Do you want to remove this Friend? Haluatko poistaa tämän ystävän? - - Columns - Sarakkeet + + + Done! + - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP IP - - Sort by IP - Järjestä IP:n mukaan - - - - Show IP Column - Näytä IP-sarake - - - + Attempt to connect Yritä muodostaa yhteys @@ -5502,7 +5874,7 @@ tiedostoille uudelleen, kun kytket sen kiiinni. Luo uusi ryhmä - + Display Näytä @@ -5512,12 +5884,7 @@ tiedostoille uudelleen, kun kytket sen kiiinni. Liitä varmennelinkki - - Sort by - Järjestä - - - + Node @@ -5527,17 +5894,17 @@ tiedostoille uudelleen, kun kytket sen kiiinni. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5585,30 +5952,35 @@ tiedostoille uudelleen, kun kytket sen kiiinni. Haku : - - All - Kaikki + + Sort by state + - None - Ei mikään - - - Name Nimi - + Search Friends Hae ystäviä + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message Muokkaa tilaviestiä @@ -5702,12 +6074,17 @@ tiedostoille uudelleen, kun kytket sen kiiinni. Avainnippu - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. Retrosharen kuulutus: viestit lähetetään kaikille linjoilla oleville ystäville. - + Network Verkko @@ -5718,12 +6095,7 @@ tiedostoille uudelleen, kun kytket sen kiiinni. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5736,7 +6108,7 @@ tiedostoille uudelleen, kun kytket sen kiiinni. Luo uusi profiili - + Name Nimi @@ -5790,7 +6162,7 @@ pysyäksesi voit käyttää tekaistua osoitetta. Salasana (tarkistus) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/><body><p align="justify">Ennen kuin siirryt eteenpäin, liikuttele hiirtäsi ympäriinsä, jolloin autat Retrosharea keräämään satunnaisuutta. Edistymistä ilmaiseva palkki tulisi saada vähintään 20%, mutta 100% on suositeltava lukema.</p></body></html> @@ -5805,7 +6177,7 @@ pysyäksesi voit käyttää tekaistua osoitetta. Salasanat eivät täsmää - + Port Portti @@ -5849,28 +6221,23 @@ pysyäksesi voit käyttää tekaistua osoitetta. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5892,7 +6259,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5917,12 +6284,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5938,12 +6310,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5960,7 +6337,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6070,7 +6452,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6078,12 +6465,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6099,21 +6486,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6272,29 +6644,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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"> -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:12pt;">Kun ystäväsi lähettävät sinulle kutsunsa, klikkaa avataksesi Lisää ystäviä -ikkuna.</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: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-size:12pt;">Kopioi ja liitä ystäväsi &quot;varmennetunniste&quot; ikkunaan ja lisää hänet ystäväksesi.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + - - Connect To Friends - Ota yhteys ystäviin - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6305,26 +6666,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-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-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-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"> -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:12pt;">Kun olette linjoilla samanaikaisesti, RetroShare yhdistää teidät automaattisesti.</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: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-size:12pt;">Ohjelman on löydettävä RetroShare-verkko, jotta yhteyksien luominen on mahdollista.</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:12pt;">Tämä vie 5-30 minuuttia, kun käynnistät RetroSharen ensimmäistä kertaa.</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: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-size:12pt;">DHT-merkki tilarivillä muuttuu vihreäksi, kun yhteyksien luominen on mahdollista.</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: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-size:12pt;">Muutaman minuutin jälkeen NAT-merkki (myös tilarivillä) vaihtuu keltaisesta vihreään.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Jos se pysyy punaisena, sinulla on palomuuri, jonka läpi RetroShare ei pääse.</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: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-size:12pt;">Katso Lisäapua-osiosta neuvoja yhteyden luomiseksi.</span></p></body></html> + - - Advanced: Open Firewall Port - Vaativa: Avaa palomuurin portti + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6332,71 +6691,37 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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"> -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:12pt;">Voit parantaa RetroSharen suorituskykyä avaamalla ulkoisen portin. </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:12pt;">Tämä nopeuttaa yhteyksiä ja sallii useampien käyttäjien olla yhteydessä sinuun </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: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-size:12pt;">Helpoin tapa on ottaa UPnP käyttöön langattoman tukiasemasi tai reitittimesi asetuksissa.</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:12pt;">Jokainen reititin on erilainen, joten etsi ohjeet reitittimellesi internetin hakukoneilla.</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: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-size:12pt;">Jos et ymmärrä edellisestä mitään, älä huoli, koska RetroShare toimii joka tapauksessa.</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: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-size:8pt;"></p></body></html> - - - - Further Help and Support - Lisää ohjeita ja tukea - - - - <!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: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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-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-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-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"> -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;">Onko sinulla ongelmia päästä Retrosharen kanssa alkuun?</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) katso usein kysytyt kysymykset (FAQ Wiki). Se on hieman vanhentunut, yritämme ajantasaistaa sitä.</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) tutustu keskustelupalstaamme. Kysele tai keskustele ominaisuuksista.</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) kokeile Retrosharen sisäisiä keskustelupalstoja </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;"> - Nämä ilmestyvät näkyviin, kun olet saanut yhteyden ystäviisi.</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) jos olet edelleen jumissa, lähetä meille sähköpostia.</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;">Nauti Retrosharetuksesta</span></p></body></html> + - + + Connect To Friends + Ota yhteys ystäviin + + + + Advanced: Open Firewall Port + Vaativa: Avaa palomuurin portti + + + + Further Help and Support + Lisää ohjeita ja tukea + + + Open RS Website Avaa RS-verkkosivu @@ -6489,82 +6814,104 @@ p, li { white-space: pre-wrap; } Reitittimen tilastot - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer Tuntematon vertainen + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - Odottavia paketteja - - - + Managed keys Hallitut avaimet - + Routing matrix ( Reititysmatriisi ( - - Id - Tunniste - - - - Destination - Kohde - - - - Data status + + [Unknown identity] - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - Lähetä - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Paina ja vedä solmuja paikasta toiseen ja suurenna hiiren rullalla tai '+' ja '-' -näppäimillä - - GroupChatToaster @@ -6744,7 +7091,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Otsikko @@ -6764,7 +7111,7 @@ p, li { white-space: pre-wrap; } Hae kuvausta - + Sort by Name Järjestä nimen mukaan @@ -6778,13 +7125,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post Järjestä viimeisimmän viestin mukaan + + + Sort by Posts + + Display Näytä - + You have admin rights @@ -6797,7 +7149,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and ja @@ -6895,7 +7247,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanavat @@ -6906,17 +7258,22 @@ p, li { white-space: pre-wrap; } Luo kanava - + Enable Auto-Download Ota käyttöön automaattinen lataus - + My Channels Kanavani - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels Tilatut kanavat @@ -6931,13 +7288,29 @@ p, li { white-space: pre-wrap; } Muut kanavat - + + Select channel download directory + + + + Disable Auto-Download Ota automaattinen lataus pois käytöstä - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7278,7 +7651,7 @@ p, li { white-space: pre-wrap; } Ei kanavaa valittuna - + Disable Auto-Download Ota automaattinen lataus pois käytöstä @@ -7298,7 +7671,7 @@ p, li { white-space: pre-wrap; } - + Feeds Syötteet @@ -7308,7 +7681,7 @@ p, li { white-space: pre-wrap; } Tiedostot - + Subscribers @@ -7471,7 +7844,7 @@ kuin voit kommentoida GxsForumGroupDialog - + Create New Forum Luo uusi foorumi @@ -7603,12 +7976,12 @@ kuin voit kommentoida Lomake - + Start new Thread for Selected Forum Aloita uusi viestiketju valitussa foorumissa - + Search forums Hae foorumeista @@ -7629,7 +8002,7 @@ kuin voit kommentoida - + Title Otsikko @@ -7642,13 +8015,18 @@ kuin voit kommentoida - + Author Kirjoittaja - - + + Save image + + + + + Loading Ladataan @@ -7678,7 +8056,7 @@ kuin voit kommentoida Seuraava lukematon - + Search Title Hae otsikkoa @@ -7703,17 +8081,27 @@ kuin voit kommentoida Hae sisältöä - + No name Ei nimeä - + Reply Vastaa + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread Aloita uusi viestiketju @@ -7751,7 +8139,7 @@ kuin voit kommentoida Kopioi RetroShare-linkki - + Hide Piilota @@ -7761,7 +8149,38 @@ kuin voit kommentoida Laajenna - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous Nimetön @@ -7781,29 +8200,55 @@ kuin voit kommentoida [ ... Puuttuva viesti ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Ei valittua foorumia! - + + + You cant reply to a non-existant Message Et voi vastata olemattomaan viestiin + You cant reply to an Anonymous Author Et voi vastata nimettömälle kirjoittajalle - + Original Message Alkuperäinen viesti @@ -7828,7 +8273,7 @@ kuin voit kommentoida %1, %2 kirjoitti: - + Forum name @@ -7843,7 +8288,7 @@ kuin voit kommentoida - + Description Kuvaus @@ -7853,12 +8298,12 @@ kuin voit kommentoida - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7874,7 +8319,12 @@ kuin voit kommentoida GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums Foorumi @@ -7904,11 +8354,6 @@ kuin voit kommentoida Other Forums Muut foorumit - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7931,13 +8376,13 @@ kuin voit kommentoida GxsGroupDialog - - + + Name Nimi - + Add Icon Lisää kuvake @@ -7952,7 +8397,7 @@ kuin voit kommentoida Jaa julkaisuavain - + check peers you would like to share private publish key with rastita vertaiset, joiden kanssa haluat jakaa yksityisen julkaisuavaimesi @@ -7962,36 +8407,36 @@ kuin voit kommentoida Jaa avain - - + + Description Kuvaus - + Message Distribution Viestin leviäminen - + Public Julkinen - - + + Restricted to Group Rajattu ryhmään - - + + Only For Your Friends Vain ystävillesi - + Publish Signatures Julkaisuallekirjoitukset @@ -8021,7 +8466,7 @@ kuin voit kommentoida Henkilökohtaiset allekirjoitukset - + PGP Required PGP vaaditaan @@ -8037,12 +8482,12 @@ kuin voit kommentoida - + Comments Kommentit - + Allow Comments Salli kommentit @@ -8052,33 +8497,73 @@ kuin voit kommentoida Ei kommentteja - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Kontaktit: - + Please add a Name Ole hyvä ja lisää nimi - + Load Group Logo Lataa ryhmän logo - + Submit Group Changes Vahvista ryhmän muutokset - + Failed to Prepare Group MetaData - please Review Ryhmän metatietojen luonti epäonnistui - tarkista tiedot - + Will be used to send feedback @@ -8088,12 +8573,12 @@ kuin voit kommentoida - + Set a descriptive description here - + Info Tietoja @@ -8166,7 +8651,7 @@ kuin voit kommentoida Tulostuksen esikatselu - + Unsubscribe Lopeta tilaus @@ -8176,12 +8661,12 @@ kuin voit kommentoida Aloita tilaus - + Open in new tab Avaa uudessa välilehdessä - + Show Details Näytä tiedot @@ -8206,12 +8691,12 @@ kuin voit kommentoida Merkitse kaikki lukemattomiksi - + AUTHD VAHVST - + Share admin permissions @@ -8219,7 +8704,7 @@ kuin voit kommentoida GxsIdChooser - + No Signature Ei allekirjoitusta @@ -8232,7 +8717,7 @@ kuin voit kommentoida GxsIdDetails - + Loading Ladataan @@ -8247,8 +8732,15 @@ kuin voit kommentoida Ei allekirjoitusta - + + + + [Banned] + + + + Authentication @@ -8263,7 +8755,7 @@ kuin voit kommentoida - + Identity&nbsp;name @@ -8278,7 +8770,7 @@ kuin voit kommentoida - + [Unknown] @@ -8296,6 +8788,49 @@ kuin voit kommentoida Ei nimeä + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8491,43 +9026,7 @@ kuin voit kommentoida Tietoja - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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:'Arial'; 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-weight:600;">RetroShare on </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-weight:600;">yksityinen ja tietoturvallinen hajautettu kommunikointialusta, joka toimii eri käyttöjärjestelmissä. RetroSharen lähdekoodi on avoin.</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-weight:600;">Sen avulla voit turvallisesti jakaa asioita ystäviesi kanssa </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-weight:600;">käyttäen luottamusverkkoa vertaisten todentamiseen ja OpenSSL-protokollaa kommunikaation salaamiseen. </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-weight:600;">RetroShare tarjoaa tiedostojen jakamisen, keskustelun, viestit ja kanavat</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-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; font-weight:600;">Hyödyllisiä linkkejä:</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;" 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;">Retrosharen verkkosivut</span></a></li> -<li style=" 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;">Retrosharen Wiki</span></a></li> -<li style=" 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/">RetroSharen keskustelupalsta</a></li> -<li style=" 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;">Retrosharen projektisivu</span></a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroSharen tiimin blogi</a></li>⏎ <li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroSharen Twitter</a></li></ul></body></html> - - - + Authors Tekijät @@ -8591,7 +9090,28 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Puola: </span>Maciej Mrug</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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8633,7 +9153,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8668,78 +9188,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation Maine - - Overall - Yhteensä + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + - - Implicit - Epäsuora - - - - Opinion - Mielipide - - - - Peers - Vertaiset - - - - Edit Reputation - Muokkaa mainetta - - - - Tweak Opinion - Muokkaa mielipidettä - - - - Accept (+100) - Hyväksy (+100) + + Your opinion: + - Positive (+10) - Positiivinen (+10) + Neighbor nodes: + - Negative (-10) - Negatiivinen (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> + - - Ban (-100) - Estä (-100) + + Negative + - Custom - Räätälöity + Neutral + - - Modify - Muokkaa + + Positive + - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name Tuntematon oikea nimi @@ -8778,37 +9308,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID Uusi tunniste - + + All Kaikki - + + Reputation Maine - - - Todo - Tehtävät - - Search Haku - + Unknown real name Tuntematon oikea nimi @@ -8818,72 +9369,29 @@ p, li { white-space: pre-wrap; } Nimetön tunniste - + Create new Identity Luo uusi henkilöllisyys - - Overall - Yhteensä - - - - Implicit - Epäsuora - - - - Opinion - Mielipide - - - - Peers - Vertaiset - - - - Edit reputation + + Persons - - Tweak Opinion - Muokkaa mielipidettä + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + - - Accept (+100) - Hyväksy (+100) - - - - Positive (+10) - Positiivinen (+10) - - - - Negative (-10) - Negatiivinen (-10) - - - - Ban (-100) - Estä (-100) - - - - Custom - Räätälöity - - - - Modify - Muokkaa - - - + Edit identity @@ -8904,42 +9412,42 @@ p, li { white-space: pre-wrap; } Käynnistää etäisen keskustelun vertaisen kanssa - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8949,7 +9457,57 @@ p, li { white-space: pre-wrap; } Tyyppi: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8959,12 +9517,17 @@ p, li { white-space: pre-wrap; } Nimetön - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8980,7 +9543,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8995,7 +9558,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -9005,15 +9603,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People Ihmiset - + Your Avatar Click here to change your avatar @@ -9034,7 +9652,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -9049,7 +9672,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -9059,17 +9682,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - Sarakkeet - - - + Distant chat refused with this person. @@ -9079,7 +9692,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -9094,29 +9707,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -9126,7 +9727,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9169,8 +9770,8 @@ p, li { white-space: pre-wrap; } Uusi henkilöllisyys - - + + To be generated Luodaan @@ -9178,7 +9779,7 @@ p, li { white-space: pre-wrap; } - + @@ -9188,13 +9789,13 @@ p, li { white-space: pre-wrap; } Ei sovellu - + Edit identity Muokkaa henkilöllisyyttä - + Error getting key! Virhe haettaessa avainta! @@ -9214,7 +9815,7 @@ p, li { white-space: pre-wrap; } Tuntematon oikea nimi - + Create New Identity Luo uusi henkilöllisyys @@ -9269,7 +9870,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9337,7 +9938,7 @@ p, li { white-space: pre-wrap; } - + Copy Kopioi @@ -9367,16 +9968,35 @@ p, li { white-space: pre-wrap; } Lähetä + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Avaa tiedosto - + Open Folder Avaa kansio @@ -9386,7 +10006,7 @@ p, li { white-space: pre-wrap; } Muokkaa jakooikeuksia - + Checking... Tarkistaa... @@ -9435,7 +10055,7 @@ p, li { white-space: pre-wrap; } - + Options Asetukset @@ -9469,12 +10089,12 @@ p, li { white-space: pre-wrap; } Ohjattu nopea käynnistys - + RetroShare %1 a secure decentralized communication platform RetroShare %1 turvallinen hajautettu kommunikaatioalusta - + Unfinished Kesken @@ -9512,7 +10132,12 @@ p, li { white-space: pre-wrap; } Huomauta - + + Open Messenger + + + + Open Messages Avaa viestit @@ -9562,7 +10187,7 @@ p, li { white-space: pre-wrap; } %1 kpl uusia viestejä - + Down: %1 (kB/s) Lataus: %1 (kB/s) @@ -9632,7 +10257,7 @@ p, li { white-space: pre-wrap; } Palveluiden käyttöoikeudet - + Add Lisää @@ -9657,7 +10282,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9666,38 +10291,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose Kirjoita viesti - - + Contacts Kontaktit - - >> To - >> Vastaanottaja - - - - >> Cc - >> Kopio - - - - >> Bcc - >> Piilokopio - - - - >> Recommend - >> Suosittele - - - + Paragraph Kappale @@ -9778,7 +10382,7 @@ p, li { white-space: pre-wrap; } Alleviivaus - + Subject: Aihe: @@ -9789,12 +10393,22 @@ p, li { white-space: pre-wrap; } - + Tags Merkkaukset - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9804,7 +10418,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files Suositellut tiedostot @@ -9874,7 +10488,7 @@ p, li { white-space: pre-wrap; } Lisää lainauslohko (blockquote) - + Send To: Lähetä: @@ -9899,47 +10513,22 @@ p, li { white-space: pre-wrap; } Tasaa &molemmat reunat - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hei,<br>suosittelen ystävääni; voit luottaa häneen, kuten luotat minuun.<br> @@ -9965,12 +10554,12 @@ p, li { white-space: pre-wrap; } - + Save Message Tallenna viesti - + Message has not been Sent. Do you want to save message to draft box? Viestiä ei ole lähetetty. @@ -9982,7 +10571,7 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Liitä RetroShare-linkki - + Add to "To" Lisää vastaanottajiin @@ -10002,12 +10591,7 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Lisää suosituksena - - Friend Details - Ystävän tiedot - - - + Original Message Alkuperäinen viesti @@ -10017,19 +10601,21 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Lähettäjä - + + To Vastaanottaja - + + Cc Kopio - + Sent Lähetetyt @@ -10071,12 +10657,13 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Ole hyvä ja lisää ainakin yksi vastaanottaja. - + + Bcc Piilokopio - + Unknown Tuntematon @@ -10186,7 +10773,12 @@ Haluatko tallentaa viestin luonnoslaatikkoon? Muotoil&e - + + Details + + + + Open File... Avaa tiedosto... @@ -10234,12 +10826,7 @@ Haluatko tallentaa viestin? Lisää ylimääräinen tiedosto - - Show: - Näytä: - - - + Close Sulje @@ -10249,32 +10836,57 @@ Haluatko tallentaa viestin? Lähettäjä: - - All - Kaikki - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10297,7 +10909,27 @@ Haluatko tallentaa viestin? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Lukeminen @@ -10312,7 +10944,7 @@ Haluatko tallentaa viestin? Avaa viestit - + Tags Merkkaukset @@ -10352,7 +10984,7 @@ Haluatko tallentaa viestin? Uudessa ikkunassa - + Edit Tag Muokkaa merkkausta @@ -10362,22 +10994,12 @@ Haluatko tallentaa viestin? Viesti - + Distant messages: Etäiset viestit: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">Allaolevaa linkkiä käyttäen verkostossa olevat ihmiset voivat lähettää sinulle salattuja viestejä tunneleiden kautta. Tätä varten he tarvitsevat julkisen PGP-avaimesi, jonka he saavat Retrosharen etsintäjärjestelmän avulla.</p></body></html> - - - - Accept encrypted distant messages from everyone - Hyväksy salatut etäiset viestit kaikilta - - - + Load embedded images Lataa upotetut kuvat @@ -10658,7 +11280,7 @@ Haluatko tallentaa viestin? MessagesDialog - + New Message Uusi viesti @@ -10725,24 +11347,24 @@ Haluatko tallentaa viestin? - + Tags Merkkaukset - - - + + + Inbox Saapuneet - - + + Outbox Lähtevät @@ -10754,14 +11376,14 @@ Haluatko tallentaa viestin? - + Sent Lähetetyt - + Trash Roskat @@ -10830,7 +11452,7 @@ Haluatko tallentaa viestin? - + Reply to All Vastaa kaikille @@ -10848,12 +11470,12 @@ Haluatko tallentaa viestin? - + From Lähettäjä - + Date Päiväys @@ -10881,12 +11503,12 @@ Haluatko tallentaa viestin? - + Click to sort by from Järjestä lähettäjän mukaan - + Click to sort by date Järjestä ajan mukaan @@ -10941,7 +11563,12 @@ Haluatko tallentaa viestin? Hae liitetiedostoja - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred Tähditetty @@ -11006,14 +11633,14 @@ Haluatko tallentaa viestin? Tyhjennä roskat - - + + Drafts Luonnokset - + 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 gray star beside any message. Ei tähdellä merkittyjä viestejä. Tähtien avulla voit antaa viesteille erikoisaseman ja helpottaa löytämistä. Antaaksesi viestille tähden, paina vaaleanharmaata tähteä viestin vieressä. @@ -11033,7 +11660,12 @@ Haluatko tallentaa viestin? Järjestä vastaanottajan mukaan - + + This message goes to a distant person. + + + + @@ -11042,18 +11674,18 @@ Haluatko tallentaa viestin? Yhteensä: - + Messages Viestit - + Click to sort by signature Järjestä allekirjoituksen mukaan - + This message was signed and the signature checks Tämä viesti on allekirjoitettu ja allekirjoitus täsmää @@ -11063,15 +11695,10 @@ Haluatko tallentaa viestin? Tämä viesti on allekirjoitettu, mutta allekirjoitus ei täsmää - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -11094,7 +11721,22 @@ Haluatko tallentaa viestin? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link Liitä RetroShare-linkki @@ -11128,7 +11770,7 @@ Haluatko tallentaa viestin? - + Expand Laajenna @@ -11171,7 +11813,7 @@ Haluatko tallentaa viestin? <strong>NAT:</strong> - + Network Status Unknown Verkon tila tuntematon @@ -11215,26 +11857,6 @@ Haluatko tallentaa viestin? Forwarded Port Uudelleenohjattu portti - - - OK | RetroShare Server - OK | RetroShare-palvelin - - - - Internet connection - Internetyhteys - - - - No internet connection - Ei internetyhteyttä - - - - No local network - Ei paikallista verkkoa - NetworkDialog @@ -11348,7 +11970,7 @@ Haluatko tallentaa viestin? Vertaisen tunniste - + Deny friend Torju ystävä @@ -11412,7 +12034,7 @@ Avainippusi varmuuskopioitiin tiedostoon ennen poistoa. Varmuuskopiotiedoston luominen epäonnistui. Tarkista käyttöoikeudet pgp-hakemistoon, levytila jne. - + Personal signature Henkilökohtainen allekirjoitus @@ -11479,7 +12101,7 @@ Paina hiiren oikeaa nappia ja valitse "ystävysty" saadaksesi yhteyden sinä itse - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Tietojen epäjohdonmukaisuus avainnipussa. Tämä on todennäköisesti bugi. Ota yhteyttä kehittäjiin. @@ -11494,7 +12116,7 @@ Paina hiiren oikeaa nappia ja valitse "ystävysty" saadaksesi yhteyden - + Trust level @@ -11514,12 +12136,12 @@ Paina hiiren oikeaa nappia ja valitse "ystävysty" saadaksesi yhteyden - + Make friend... - + Did peer authenticate you @@ -11549,7 +12171,7 @@ Paina hiiren oikeaa nappia ja valitse "ystävysty" saadaksesi yhteyden - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11618,7 +12240,7 @@ Reported error: NewsFeed - + News Feed Uutissyöte @@ -11637,18 +12259,13 @@ Reported error: This is a test. This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Uutissyöte</h1> <p>Uutissyöte näyttää uusimmat tapahtumat verkostossasi vastaanottohetken mukaan järjestettynä. Näin saat yhteenvedon ystäviesi toiminnasta. Voit määrittää näytettävät tapahtumat <b>Asetuksista</b>. </p> <p>Näytettäviä tapahtumia: <ul> <li>Yhteydenottoyritykset (hyödyllisiä ystävien hankkimiseen ja yhteydenottojen hallintaan)</li> <li>Viestit kanaville ja foorumeille</li> <li>Uudet kanavat ja foorumit, jotka ovat tilattavissasi</li> <li>Yksityisviestit ystäviltäsi</li> </ul> </p> - News feed Uutissyöte - + Newest on top @@ -11657,6 +12274,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11800,7 +12422,12 @@ Reported error: Vilkuta - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left Ylävasen @@ -11824,11 +12451,6 @@ Reported error: Notify Huomauta - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Ilmoita</h1> <p>Retroshare ilmoittaa uusista tapahtumista verkostossasi. Käyttötavoistasi riippuen saatat haluta ottaa käyttöön tai pois käytöstä joitakin ilmoituksia. Tämä osio on sitä varten!</p> - Disable All Toasters @@ -11878,7 +12500,7 @@ Reported error: NotifyQt - + PGP key passphrase PGP-avaimen tunnuslause @@ -11918,7 +12540,7 @@ Reported error: Tallennetaan tiedostoluetteloa... - + Test Test @@ -11933,13 +12555,13 @@ Reported error: Tuntematon otsikko - - + + Encrypted message Salattu viesti - + Please enter your PGP password for key Anna PGP-avaimesi salasana @@ -11991,24 +12613,6 @@ Reported error: Vähäinen liikenne: 10% normaalista liikenteestä ja TODO: tiedostonsiirrot tauolle - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -12032,12 +12636,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -12072,39 +12686,51 @@ Reported error: - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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"> -<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;">Ystävän avaimen allekirjoittaminen on tapa ilmaista muille ystävillesi, että luotat tähän henkilöön . Huomioi myös, että ainoastaan allekirjoitetut vertaiset voivat saada tietoja muista luotetuista ystävistäsi.</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;">Avaimen allekirjoittamista ei voi perua, joten käytä harkintaasi.</p></body></html> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Allekirjoita PGP-avain + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -12115,6 +12741,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Sisällytä allekirjoitukset @@ -12170,7 +12801,7 @@ p, li { white-space: pre-wrap; } Luottamuksesi tähän vertaiseen on nolla. - + This key has signed your own PGP key @@ -12344,12 +12975,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 Ystävät: 0/0 - + Online Friends/Total Friends Ystäviä linjoilla / Ystäviä yhteensä @@ -12718,7 +13349,7 @@ p, li { white-space: pre-wrap; } juurihakemistoa %1 ei ole, oletuslataus epäonnistui - + Error: instance '%1'can't create a widget Virhe: kohde '%1' ei voi luoda vimpainta @@ -12779,19 +13410,19 @@ p, li { white-space: pre-wrap; } Hyväksy kaikki lisäosat - - Loaded plugins - Ladatut lisäosat - - - + Plugin look-up directories Lisäosien hakemistot - - Hash rejected. Enable it manually and restart, if you need. - Tiiviste hylätty. Ota se käyttöön manuaalisesti ja käynnistä uudelleen, jos on tarve. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] + @@ -12799,27 +13430,36 @@ p, li { white-space: pre-wrap; } API-numeroa ei annettu. Ole hyvä ja lue ohje lisäosien kehittämisestä. - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. SVN-numeroa ei annettu. Ole hyvä ja lue ohje lisäosien kehittämisestä. - + Loading error. Virhe ladattaessa. - + Missing symbol. Wrong version? Puuttuva merkki. Väärä versio? - + No plugin object Ei lisäosaobjektia - + Plugins is loaded. Lisäosat ladattu. @@ -12829,22 +13469,7 @@ p, li { white-space: pre-wrap; } Tila tuntematon. - - Title unavailable - Otsikko puuttuu - - - - Description unavailable - Kuvaus puuttuu - - - - Unknown version - Tuntematon versio - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12855,15 +13480,16 @@ tiivisteen tarkistaminen suojelee sinua vahingoittamistarkoituksessa tehdyiltä lisäosilta. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins Lisäosat - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Lisäosat</h1> <p>Lisäosat ladataan alla luetteloiduista hakemistoista.</p> <p>Turvallisuussyistä, hyväksytyt lisäosat ladataan automaattisesti, kunnes Retrosharen käynnistystiedosto tai lisäosakirjasto muuttuu. Tällaisessa tilanteessa käyttäjän on hyväksyttävä ne uudestaan. Kun ohjelma on käynnistynyt, voit ottaa lisäosan käyttöön manuaalisesti painamalla "Ota käyttöön" -painiketta ja käynnistämällä Retrosharen uudelleen.</p> <p>Jos haluat kehittää omia lisäosia, ota yhteyttä kehittäjiin, jotka auttavat sinua mielellään!</p> - PopularityDefs @@ -12931,12 +13557,17 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. Keskustelukumppanisi poisti suojatun keskustelutunnelin. Voit sulkea keskusteluikkunan. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Tämän ikkunan sulkeminen lopettaa keskustelun, ilmoittaa vertaiselle ja poistaa salatun tunnelin. @@ -12946,12 +13577,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Suljetaanko tunneli? - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -13032,7 +13658,12 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Lähetetty - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic Luo aihe @@ -13056,11 +13687,6 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. Other Topics Muut viestiketjut - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13315,7 +13941,7 @@ vahingoittamistarkoituksessa tehdyiltä lisäosilta. PrintPreview - + RetroShare Message - Print Preview RetroShare-viesti - Tulostuksen esikatselu @@ -13663,7 +14289,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Vahvistus @@ -13673,7 +14300,7 @@ p, li { white-space: pre-wrap; } Haluatko, että järjestelmäsi käsittelee linkin? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13702,7 +14329,12 @@ ja avataksesi aputoiminnon ystävän lisäämiseksi Haluatko käsitellä %1 kpl linkkejä? - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. %1 RetroShare-linkistä käsitelty, %2 jäljellä. @@ -13869,7 +14501,7 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä Kokoelmatiedoston käsittely epäonnistui - + Deny friend Torju ystävä @@ -13889,7 +14521,7 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä Tiedostopyyntö peruttu - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Tämä RetroSharen versio käyttää OpenPGP-SDK:ta. Tämän takia se ei käytä järjestelmäjaettua PGP-avainketjua, vaan sillä on oma avainketjunsa jaettuna kaikkien käynnissä olevien RetroSharejen kanssa.<br><br>Sinulla ei näytä olevan tällaista avainketjua, vaikka olemassaolevissa RetroShare-tileissä mainitaan PGP-avaimet. Tämä johtuu todennäköisesti siitä, että siirryit juuri ohjelman uudempaan versioon. @@ -13920,7 +14552,7 @@ Merkit <b>",|,/,\,&lt;,&gt;,*,?</b> korvataan merkillä Odottamaton virhe. Ole hyvä ja raportoi 'RsInit::InitRetroShare unexpected return code %1'. - + Multiple instances Useita instansseja @@ -13958,11 +14590,6 @@ Lukitustiedosto: Tunnel is pending... Tunneli odottaa... - - - Secured tunnel established. Waiting for ACK... - Suojattu tunneli toiminnassa. Odotetaan ACK-pakettia.... - Secured tunnel is working. You can talk! @@ -13980,7 +14607,7 @@ Virhe: %2 - + Click to send a private message to %1 (%2). Lähetä yksityinen viesti henkilölle %1 (%2) napsauttamalla tätä. @@ -14030,7 +14657,7 @@ Virhe: - + You appear to have nodes associated to DSA keys: @@ -14040,7 +14667,7 @@ Virhe: - + enabled @@ -14050,12 +14677,12 @@ Virhe: - + Join chat lobby - + Move IP %1 to whitelist @@ -14070,42 +14697,49 @@ Virhe: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago %1 päivää sitten - + Subject: @@ -14124,6 +14758,12 @@ Virhe: Id: + + + +Security: no anonymous IDs + + @@ -14135,6 +14775,16 @@ Virhe: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -14144,7 +14794,7 @@ Virhe: Ohjattu pika-aloitus - + <!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; } @@ -14182,21 +14832,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > Seuraava > - - - - + + + + + Exit Lopeta - + For best performance, RetroShare needs to know a little about your connection to the internet. Varmistaakseen tehokkaan toimivuuden, RetroSharen tulee tietää hieman internetyhteydestäsi. @@ -14263,13 +14915,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back < Takaisin - + <!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; } @@ -14294,7 +14947,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Verkon laajuinen @@ -14319,7 +14972,27 @@ p, li { white-space: pre-wrap; } Jaa saapuvien hakemisto automaattisesti (suositeltavaa) - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14431,7 +15104,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 kt @@ -14467,7 +15140,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14498,7 +15171,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14520,7 +15193,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14629,8 +15302,8 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Välitys</h1><p>Kun otat välityksen käyttöön, oma Retrosharesi toimii siltana palomuurin takana olevien tai muiden yhteysongelmien vaivaamien käyttäjien välillä.</p><p>Voit alkaa toimia välittäjänä rastittamalla <i>Ota käyttöön välitetyt yhteydet</i> tai sitten vain hyötyä muista vertaisista rastittamalla <i>Käytä välityspalvelimia</i>. Edellisen osalta voit määritellä, miten paljon kaistanleveyttä annetaan välittämisen käyttöön.</p><p>Välittäjänä toimiva Retroshare-solmu ei voi nähdä välitettyä liikennettä, koska se on salattu ja kahden välitetyn solmun vahvistama.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + @@ -14654,7 +15327,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW UUSI @@ -14994,7 +15667,7 @@ Jos se on mielestäsi kunnollinen, poista mainittu rivi tiedostosta ja avaa se u RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? Kuva on liian suuri siirron kannalta. @@ -15012,7 +15685,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Rshare - + Resets ALL stored RetroShare settings. Palauttaa KAIKKI tallennetut RetroSharen asetukset. @@ -15057,17 +15730,17 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Lokitiedoston '%1': %2 avaaminen epäonnistui - + built-in sisäänrakennettu - + Could not create data directory: %1 Datahakemistoa ei voitu luoda: %1 - + Revision @@ -15095,33 +15768,10 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Kiertoaikatilastot - - SFListDelegate - - - B - B - - - - KB - kB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Anna hakusana (vähintään 3 merkkiä) @@ -15303,12 +15953,12 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Lataa valitut - + File Name Tiedoston nimi - + Download Lataa @@ -15377,7 +16027,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Avaa kansio - + Create Collection... Luo kokoelma... @@ -15397,7 +16047,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Lataa kokoelmatiedostosta... - + Collection Kokoelma @@ -15640,12 +16290,22 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? ServerPage - + Network Configuration Verkon asetukset - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) Automaattinen (UPnP) @@ -15660,7 +16320,7 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Portti avattu käsin - + Public: DHT & Discovery Julkinen: DHT & etsintä @@ -15680,13 +16340,13 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Darknet: ei mitään - - + + Local Address Paikallinen osoite - + External Address Ulkoinen osoite @@ -15696,28 +16356,28 @@ Pienennetäänkö kuva kokoon %1x%2 pikseliä? Dynaaminen nimipalvelin - + Port: Portti: - + Local network Paikallinen verkko - + External ip address finder Ulkoisen IP-osoitteen paikallistaminen - + UPnP UPnP - + Known / Previous IPs: Tunnetut / aiemmat IP:t: @@ -15743,13 +16403,13 @@ vähän ystäviä. Tämä auttaa myös, jos olet palomuurin tai VPN:n takana.Salli RetroSharen kysyä IP:täni näiltä verkkosivuilta: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Hyväksyttävä porttiavaruus on välillä 10-65535. Porttia 1024 pienemmät ovat yleensä järjestelmäsi käyttöön varattuja. @@ -15759,24 +16419,12 @@ vähän ystäviä. Tämä auttaa myös, jos olet palomuurin tai VPN:n takana.Hyväksyttävä porttiavaruus on välillä 10-65535. Porttia 1024 pienemmät ovat yleensä järjestelmäsi käyttöön varattuja. - + Onion Address Onion-osoite - - Expected torrc Port Configuration: - Oletettu torrc:n porttimääritys: - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - HiddenServiceDir </polkusi/piilotettuun/palveluun/> -HiddenServicePort 9191 127.0.0.1:9191 - - - + Discovery On (recommended) Etsintä käytössä (suositus) @@ -15786,17 +16434,65 @@ HiddenServicePort 9191 127.0.0.1:9191 Etsintä ei käytössä - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15806,90 +16502,95 @@ HiddenServicePort 9191 127.0.0.1:9191 Tyhjennä - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test Test - + Network Verkko - + IP Filters - + IP blacklist - + IP range - - - + + + Status Tila - - + + Origin - - + + Reason - - + + Comment Kommentti - + IPs - + IP whitelist - + Manual input @@ -15914,12 +16615,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15942,32 +16749,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15997,99 +16805,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -16122,7 +16851,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions Palveluiden käyttöoikeudet @@ -16137,13 +16866,13 @@ Check your ports! Käyttöoikeudet - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16407,7 +17136,7 @@ Select the Friends with which you want to Share your Channel. Lataa - + Copy retroshare Links to Clipboard Kopioi RetroShare-linkit leikepöydälle @@ -16432,7 +17161,7 @@ Select the Friends with which you want to Share your Channel. Lisää linkit pilveen - + RetroShare Link RetroShare-linkki @@ -16448,7 +17177,7 @@ Select the Friends with which you want to Share your Channel. Lisää jako - + Create Collection... Luo kokoelma... @@ -16471,7 +17200,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16497,11 +17226,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16510,6 +17240,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16570,7 +17305,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile Avaa profiili @@ -16814,12 +17549,12 @@ This choice can be reverted in settings. - + Connected Yhteydessä - + Unreachable Tavoittamattomissa @@ -16835,18 +17570,18 @@ This choice can be reverted in settings. - + Trying TCP Yritetään TCP:tä - - + + Trying UDP Yritetään UDP:tä - + Connected: TCP Yhdistetty: TCP @@ -16857,6 +17592,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown Yhdistetty: Tuntematon @@ -16866,7 +17606,7 @@ This choice can be reverted in settings. DHT: yhteys - + TCP-in @@ -16876,7 +17616,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16886,7 +17626,7 @@ This choice can be reverted in settings. - + UDP @@ -16900,13 +17640,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -17123,7 +17873,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Tauko @@ -17172,7 +17922,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17313,16 +18063,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Lataukset + Uploads Lähetykset - + Name i.e: file name @@ -17518,25 +18270,25 @@ p, li { white-space: pre-wrap; } - + Slower Hitaammin - - + + Average Keskivertonopeudella - - + + Faster Nopeammin - + Random Satunnainen @@ -17561,7 +18313,12 @@ p, li { white-space: pre-wrap; } Määritä... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... Siirrä jonossa... @@ -17587,39 +18344,39 @@ p, li { white-space: pre-wrap; } - + Failed Epäonnistunut - - + + Okay OK - - + + Waiting Odotetaan - + Downloading Ladataan - + Complete Valmis - + Queued Jonossa @@ -17662,7 +18419,7 @@ huonoja kohtia ja lataa ne uudestaan Kärsivällisyyttä! - + Transferring Siirretään @@ -17672,7 +18429,7 @@ Kärsivällisyyttä! Lähetetään - + Are you sure that you want to cancel and delete these files? Oletko varma, että haluat perua ja tuhota nämä tiedostot? @@ -17730,7 +18487,7 @@ Kärsivällisyyttä! Kirjoita uusi ja validi tiedostonimi - + Last Time Seen i.e: Last Time Receiced Data Viimeksi nähty @@ -17836,7 +18593,7 @@ Kärsivällisyyttä! Näytä Viimeksi nähty -sarake - + Columns Sarakkeet @@ -17846,7 +18603,7 @@ Kärsivällisyyttä! Tiedostojen siirrot - + Path i.e: Where file is saved Polku @@ -17862,12 +18619,7 @@ Kärsivällisyyttä! Näytä Polku-sarake - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Tiedostojen siirto</h1> <p>Retroshare tarjoaa kaksi tapaa tiedostojen siirtoon: suorat siirrot ystäviltäsi ja etäiset nimettömästi tunneloidut siirrot. Lisäksi, tiedostojen siirto tukee useita lähteitä ja parven hyödyntämistä (olet lähde tiedostolle jo ladatessasi sitä)</p> <p>Voit jakaa tiedostoja käyttäen <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> -kuvaketta vasemmassa sivupalkissa. Nämä tiedostot on luetteloitu Omat tiedostoni -välilehdellä. Voit päättää jokaisen ystäväryhmän kohdalla, näkevätkö he tiedostosi. Ystävien tiedostot -välilehdellään</p> <p>Haku-välilehteä käyttäen voit löytää tiedostoja ystäviesi luetteloista sekä etäisiä tiedostoja, joihin pääset käsiksi nimettömästi usean loikan tunnelointijärjestelmän avulla.</p> - - - + Could not delete preview file Esikatselutiedostoa ei voitu poistaa @@ -17877,7 +18629,7 @@ Kärsivällisyyttä! Yritä uudelleen? - + Create Collection... Luo kokoelma... @@ -17892,7 +18644,7 @@ Kärsivällisyyttä! Näytä kokoelma... - + Collection Kokoelma @@ -17902,17 +18654,17 @@ Kärsivällisyyttä! Tiedostojen jakaminen - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17948,7 +18700,7 @@ Kärsivällisyyttä! HAK - + Friends Directories Ystävien hakemistot @@ -17991,7 +18743,7 @@ Kärsivällisyyttä! TurtleRouterDialog - + Search requests Hakupyynnöt @@ -18054,7 +18806,7 @@ Kärsivällisyyttä! Reitittimen tilastot - + Age in seconds Ikä sekunteina @@ -18069,7 +18821,17 @@ Kärsivällisyyttä! yhteensä - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Tuntematon vertainen @@ -18078,16 +18840,11 @@ Kärsivällisyyttä! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition Hakupyyntöjen uudelleenjärjestely @@ -18286,10 +19043,20 @@ Kärsivällisyyttä! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18300,11 +19067,6 @@ Kärsivällisyyttä! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18494,7 +19256,7 @@ Kärsivällisyyttä! Haku - + My Groups Omat ryhmäni @@ -18514,7 +19276,7 @@ Kärsivällisyyttä! Muut ryhmät - + Subscribe to Group Tilaa ryhmä diff --git a/retroshare-gui/src/lang/retroshare_fr.qm b/retroshare-gui/src/lang/retroshare_fr.qm index 3dc9be365cd8b61967c4e558fdeb8cf1ae510871..69dcec71240b2a5fd317f866b6f8205314ab0df4 100644 GIT binary patch delta 59313 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 - - + AWidget + version - version + version + RetroShare version - Version de RetroShare + Version de RetroShare AboutDialog + + About RetroShare - À propos de Retroshare + À propos de Retroshare + About - À propos - - - close - Fermer - - - Max score: %1 - Meilleur score : %1 - - - Score: %1 - Score : %1 - - - Level: %1 - Niveau : %1 - - - Have fun ;-) - Amusez-vous ;-) + À propos + Copy Info - + Infos sur la copie + + + + close + Fermer + + + + Max score: %1 + Meilleur score : %1 + + + + Score: %1 + Score : %1 + + + + Level: %1 + Niveau : %1 + + + + Have fun ;-) + Amusez-vous ;-) AddCommentDialog + Add Comment - Ajouter un commentaire + Ajouter un commentaire AddFileAssociationDialog + File type(extension): - Type de fichier (extension) : + Type de fichier (extension) : + Use default command - Utiliser la commande par défaut + Utiliser la commande par défaut + Command - Commande + Commande + RetroShare - Retroshare + Retroshare - Sorry, can't determine system default command for this file + + Sorry, can't determine system default command for this file - Impossible de déterminer la commande système par défaut pour ce fichier + Impossible de déterminer la commande système par défaut pour ce fichier AdvancedSearchDialog + RetroShare: Advanced Search - Retroshare : Recherche avancée + Retroshare : Recherche avancée + Search Criteria - Critère(s) de recherche + Critère(s) de recherche + Add a further search criterion. - Ajouter un critère de recherche. + Ajouter un critère de recherche. + Reset the search criteria. - Réinitialiser les critères de recherche. + Réinitialiser les critères de recherche. + Cancels the search. - Annuler la recherche. + Annuler la recherche. + Cancel - Annuler + Annuler + Perform the advanced search. - Lancer la recherche avancée. + Lancer la recherche avancée. + Search - Rechercher + Rechercher AlbumCreateDialog + + Create Album - Créer un album + Créer un album + Album Name: - Nom de l'album : + Nom de l'album : + Category: - Catégorie : + Catégorie : + Animals - Animaux + Animaux + Family - Famille + Famille + Friends - Amis + Amis + Flowers - Fleurs + Fleurs + Holiday - Vacance + Vacance + Landscapes - Paysages + Paysages + Pets - Animaux + Animaux + Portraits - Portraits + Portraits + Travel - Voyage + Voyage + Work - Travail + Travail + Random - Aléatoire + Aléatoire + Caption: - Légende : + Légende : + Where: - Où : + Où : + Photographer: - Photographe : + Photographe : + Description: - Description : + Description : + Share Options - Options de partage + Options de partage + Policy: - Politique : + Politique : + Quality: - Qualité : + Qualité : + Comments: - Commentaires : + Commentaires : + Identity: - Identité : + Identité : + Public - Public + Public + Restricted - Limité + Limité + Resize Images (< 1Mb) - Redimensionner les images (< 1Mo) + Redimensionner les images (< 1Mo) + Resize Images (< 10Mb) - Redimensionner les images (< 10Mo) + Redimensionner les images (< 10Mo) + Send Original Images - Envoyer images originales + Envoyer images originales + No Comments Allowed - Aucun commentaire admis + Aucun commentaire admis + Authenticated Comments - Commentaires authentifiés + Commentaires authentifiés + Any Comments Allowed - Aucun commentaire admis + Aucun commentaire admis + Publish with Identity - Publier avec l'identité + Publier avec l'identité + <!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; font-weight:600;"> Drag &amp; Drop to insert pictures. Click on a picture to edit details below.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Glissez &amp; Déposez pour insérer des images. Cliquez sur une image pour modifier les détails ci-dessous.</span></p></body></html> + Back - Retour + Retour + Add Photos - Ajouter photos + Ajouter photos + Publish Album - Publier l'album + Publier l'album + Untitle Album - Album sans titre + Album sans titre + Say something about this album... - Donnez des détails sur cette album... + Donnez des détails sur cette album... + Where were these taken? - Où cela a été pris ? + Où cela a été pris ? + Load Album Thumbnail - Charger la miniature de l'album + Charger la miniature de l'album AlbumDialog + + Album - Album + Album + Album Thumbnail - Miniature de l'album + Miniature de l'album + TextLabel - Etiquette + Etiquette + Summary - Résumé + Résumé + Album Title: - Titre de l'album : + Titre de l'album : + Category: - Catégorie : + Catégorie : + Caption - Légende + Légende + Where: - Où : + Où : + When - Quand : + Quand : + Description: - Description : + Description : + Share Options - options de partage + options de partage + Comments - Commentaires + Commentaires + Publish Identity - Publier l'identité + Publier l'identité + Visibility - Visibilité + Visibilité + <!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; font-weight:600;"> Drag &amp; Drop to insert pictures. Click on a picture to edit details below.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Glissez &amp; Déposez pour insérer des photos. Cliquez sur une photo pour modifier les détails ci-dessous.</span></p></body></html> + Add Photo - Ajouter une photo + Ajouter une photo + Edit Photo - Modifier la photo + Modifier la photo + Delete Photo - Supprimer la photo + Supprimer la photo + Publish Photos - Publier la photo + Publier la photo AlbumItem + Form - Formulaire + Formulaire + + + TextLabel - Etiquette + Etiquette + <!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; font-weight:600;">Album Title :</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Titre de l'album :</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; font-weight:600;">Photographer :</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;"> @@ -410,2648 +500,3240 @@ p, li { white-space: pre-wrap; } AppearancePage + Language - Langue + Langue + Changes to language will only take effect after restarting RetroShare! - Les modifications apportées à la langue ne prendront effet qu'après le redémarrage de Retroshare ! + Les modifications apportées à la langue ne prendront effet qu'après le redémarrage de Retroshare ! + Choose the language used in RetroShare - Choisissez la langue utilisée dans Retroshare + Choisissez la langue utilisée dans Retroshare + Style - Style + Style + Choose RetroShare's interface style - Choisissez le style d'interface de Retroshare + Choisissez le style d'interface de Retroshare + Style Sheet - Feuille de style + Feuille de style + Appearance - Apparence + Apparence + Tool Bar - Barre d'outils + Barre d'outils + + On Tool Bar - Sur la barre d'outils + Sur la barre d'outils + On List Item - Article sur liste + Article sur liste + Where do you want to have the buttons for menu? - Où voulez-vous avoir les boutons pour le menu ? - - - Where do you want to have the buttons for the page? - Où voulez-vous avoir les boutons pour la page ? - - - Icon Only - Icône seulement - - - Text Only - Texte seulement - - - Text Beside Icon - Texte à côté de l'icône - - - Text Under Icon - Texte en dessous de l'icône - - - Choose the style of Tool Buttons. - Choisissez le style des boutons outils. - - - Choose the style of List Items. - Choisissez le style de la liste d'articles. - - - Icon Size = 8x8 - Taille d'icône = 8x8 - - - Icon Size = 16x16 - Taille d'icône = 16x16 - - - Icon Size = 24x24 - Taille d'icône = 24x24 - - - Status Bar - Barre de statut - - - Remove surplus text in status bar. - Enlever le texte en surplus dans la barre d'état. - - - Compact Mode - Mode compact - - - Hide Sound Status - Cacher le statut du son - - - Hide Toaster Disable - Cesser de cacher les notifications grille-pain - - - Show SysTray on Status Bar - Afficher zone de notification sur la barre de statut - - - Icon Size = 32x32 - Taille icône = 32x32 + Où voulez-vous avoir les boutons pour le menu ? + On List Ite&m - + + + Where do you want to have the buttons for the page? + Où voulez-vous avoir les boutons pour la page ? + + + + Icon Only + Icône seulement + + + + Text Only + Texte seulement + + + + Text Beside Icon + Texte à côté de l'icône + + + + Text Under Icon + Texte en dessous de l'icône + + + + Choose the style of Tool Buttons. + Choisissez le style des boutons outils. + + + + Choose the style of List Items. + Choisissez le style de la liste d'articles. + + + + + Icon Size = 8x8 + Taille d'icône = 8x8 + + + + + Icon Size = 16x16 + Taille d'icône = 16x16 + + + + + Icon Size = 24x24 + Taille d'icône = 24x24 + + + + Icon Size = 64x64 - + Taille d'icône = 64x64 + + Icon Size = 128x128 - + Taille d'icône = 128x128 + + Status Bar + Barre de statut + + + + Remove surplus text in status bar. + Enlever le texte en surplus dans la barre d'état. + + + + Compact Mode + Mode compact + + + + Hide Sound Status + Cacher le statut du son + + + + Hide Toaster Disable + Cesser de cacher les notifications grille-pain + + + + Show SysTray on Status Bar + Afficher zone de notification sur la barre de statut + + + Disable SysTray ToolTip - + + + + + + Icon Size = 32x32 + Taille icône = 32x32 ApplicationWindow + + RetroShare - Retroshare + Retroshare + Warning: The services here are experimental. Please help us test them. But Remember: Any data here *WILL* be lost when we upgrade the protocols. - Avertissements : Ces services sont expérimentaux. Aidez nous à les tester + Avertissements : Ces services sont expérimentaux. Aidez nous à les tester Mais rappelez-vous : Toutes les données *SERONT* perdus quand nous mettrons à jour les protocoles. + Identities - Identités + Identités + Circles - Cercles + Cercles + GxsForums - GxsForums + GxsForums + GxsChannels - ChaînesGxs + ChaînesGxs + The Wire - The Wire + The Wire + Photos - Photos + Photos AttachFileItem + %p Kb - %p Ko + %p Ko + Cancel Download - Annuler le téléchargement + Annuler le téléchargement + [ERROR]) - [ERREUR] + [ERREUR] AvatarDialog + Change Avatar - Changer l'avatar + Changer l'avatar + Your Avatar Picture - Votre image avatar + Votre image avatar + Add Avatar - Ajouter avatar + Ajouter avatar + Remove - Supprimer + Supprimer + Set your Avatar picture - Mettre votre image d'avatar + Mettre votre image d'avatar + Load Avatar - Charger l'avatar + Charger l'avatar AvatarWidget + Click to change your avatar - Cliquez pour modifier votre avatar + Cliquez pour modifier votre avatar BWGraphSource + KB/s - KO/s + KO/s BWListDelegate + N/A - N/A + N/A BandwidthGraph + RetroShare Bandwidth Usage - Utilisation de la bande passante par Retroshare + Utilisation de la bande passante par Retroshare + + Show Settings - Options + Options + Reset - Réinitialiser + Réinitialiser + Receive Rate - Vitesse de réception + Vitesse de réception + Send Rate - Vitesse d'émission + Vitesse d'émission + Always on Top - Toujours visible + Toujours visible + Style - Style + Style + Changes the transparency of the Bandwidth Graph - Modifier la transparence du graphique de bande passande + Modifier la transparence du graphique de bande passande + 100 - 100 + 100 + % Opaque - % opaque + % opaque + Save - Sauvegarder + Sauvegarder + Cancel - Annuler + Annuler + Since: - Statistiques enregistrées depuis : + Statistiques enregistrées depuis : + Hide Settings - Masquer les options + Masquer les options BandwidthStatsWidget + + Sum - + Somme + + All - Tout + Tout + KB/s - KO/s + KO/s + Count - Participants + Compte BwCtrlWindow + Name - Nom + Nom + ID - ID + ID + In (KB/s) - In (Ko/s) + In (Ko/s) + InMax (KB/s) - InMax (Ko/s) + InMax (Ko/s) + InQueue - InQueue + InQueue + InAllocated (KB/s) - InAllocated (Ko/s) + InAllocated (Ko/s) + Allocated Sent - Allocated Sent + Allocated Sent + Out (KB/s) - Out (Ko/s) + Out (Ko/s) + OutMax (KB/s) - OutMax (Ko/s) + OutMax (Ko/s) + OutQueue - OutQueue + OutQueue + OutAllowed (KB/s) - OutAllowed (Ko/s) + OutAllowed (Ko/s) + Allowed Recvd - Allowed Recvd + Allowed Recvd + TOTALS - TOTAUX + TOTAUX + Totals - Totaux + Totaux + Form - Formulaire + Formulaire BwStatsWidget + Form - Formulaire + Formulaire + Friend: - + Ami : + Type: - Type : + Type : + Up - + Monter + Down - + Descendre + Service: - + Service : + Unit: - + Unité : + Log scale - - - - - CalDialog - - Form - Formulaire - - - Local Calendars - - - - Shared Calendar List - - - - Share Details - - - - Name: - - - - Location: - Emplacement : - - - ... - ... - - - Status: - - - - Private - Privé - - - Public - Public - - - Allow List: - - - - <Disabled> - - - - Add - Ajouter - - - Remove - - - - Peer Calendars - + ChannelPage + Channels - Chaînes + Chaînes + Tabs - Onglets + Onglets + General - Général + Général + Load posts in background (Thread) - Charger les messages en tâche de fond (fil, thread) + Charger les messages en tâche de fond (fil, thread) + Open each channel in a new tab - Ouvrir chaque chaîne dans un nouvel onglet - - - - ChatDialog - - Talking to - Parlant à + Ouvrir chaque chaîne dans un nouvel onglet ChatLobbyDialog + Participants - Participants + Participants + Change nick name - Changer de pseudo + Changer de pseudo + Mute participant - Mute le participant - - - Invite friends to this lobby - Inviter des amis à ce salon - - - Leave this lobby (Unsubscribe) - Quitter ce salon (se désabonner) - - - Invite friends - Inviter des amis - - - Select friends to invite: - Selectionner les amis à inviter : - - - Welcome to lobby %1 - Bienvenue dans le salon %1 - - - Topic: %1 - Sujet : %1 - - - Lobby chat - Salons de tchat - - - Lobby management - Gestionnaire du salon - - - %1 has left the lobby. - %1 a quitté le salon. - - - %1 joined the lobby. - %1 a rejoint le salon. - - - %1 changed his name to: %2 - %1 a changé son nom en : %2 - - - Unsubscribe to lobby - Quitter le salon - - - Do you want to unsubscribe to this chat lobby? - Voulez-vous vraiment quitter ce salon ? - - - Right click to mute/unmute participants<br/>Double click to address this person<br/> - Clic droit pour mute/de-mute les participants<br/>Double clic pour s'adresser à cette personne<br/> - - - This participant is not active since: - Ce participant n'est pas actif depuis : - - - seconds - secondes - - - Start private chat - Démarrer un tchat privé - - - Decryption failed. - Le décryptage a échoué. - - - Signature mismatch - Disparité de signature - - - Unknown key - Clé inconnue - - - Unknown hash - Hash inconnu - - - Unknown error. - Erreur inconnue. - - - Cannot start distant chat - Ne peut pas commencer le tchat distant - - - Distant chat cannot be initiated: - Le tchat distant ne peut pas être amorcé : + Mute le participant + Send Message - Envoyer le message + Envoyer le message + Sort by Name - Trier par nom + + Sort by Activity - + + + + + Invite friends to this lobby + Inviter des amis à ce salon + + + + Leave this lobby (Unsubscribe) + Quitter ce salon (se désabonner) + + + + Invite friends + Inviter des amis + + + + Select friends to invite: + Selectionner les amis à inviter : + + + + Welcome to lobby %1 + Bienvenue dans le salon %1 + + + + Topic: %1 + Sujet : %1 + + + + + Lobby chat + Salons de tchat + + + + + + Lobby management + Gestionnaire du salon + + + + %1 has left the lobby. + %1 a quitté le salon. + + + + %1 joined the lobby. + %1 a rejoint le salon. + + + + %1 changed his name to: %2 + %1 a changé son nom en : %2 + + + + Unsubscribe to lobby + Quitter le salon + + + + Do you want to unsubscribe to this chat lobby? + Voulez-vous vraiment quitter ce salon ? + + + + Right click to mute/unmute participants<br/>Double click to address this person<br/> + Clic droit pour mute/de-mute les participants<br/>Double clic pour s'adresser à cette personne<br/> + + + + This participant is not active since: + Ce participant n'est pas actif depuis : + + + + seconds + secondes + + + + Start private chat + Démarrer un tchat privé + + + + Decryption failed. + Le déchiffrement a échoué. + + + + Signature mismatch + Disparité de signature + + + + Unknown key + Clé inconnue + + + + Unknown hash + Hash inconnu + + + + Unknown error. + Erreur inconnue. + + + + Cannot start distant chat + Ne peut pas commencer le tchat distant + + + + Distant chat cannot be initiated: + Le tchat distant ne peut pas être amorcé : ChatLobbyToaster + Show Chat Lobby - Afficher le salon de tchat + Afficher le salon de tchat ChatLobbyUserNotify + Chat Lobbies - Salons de tchat + Salons de tchat + You have %1 new messages - Vous avez %1 nouveaux messages + Vous avez %1 nouveaux messages + You have %1 new message - Vous avez %1 nouveau message + Vous avez %1 nouveau message + %1 new messages - %1 nouveaux messages + %1 nouveaux messages + %1 new message - %1 nouveau message + %1 nouveau message + Unknown Lobby - Salon inconnu + Salon inconnu + + Remove All - Tout supprimer + Tout supprimer ChatLobbyWidget + Chat lobbies - Salons de tchat + Salons de tchat + + Name - Nom + Nom + Count - Participants + Participants + Topic - Sujet + Sujet + Private Lobbies - Salons privés + Salons privés + Public Lobbies - Salons publics + Salons publics + + Create chat lobby - Créer un nouveau salon de tchat + Créer un nouveau salon de tchat + + [No topic provided] - [Sans sujet déterminé] + [Sans sujet déterminé] + Selected lobby info - Info du salon sélectionné + Info du salon sélectionné + Private - Privé + Privé + Public - Public + Public + + Anonymous IDs accepted + + + + You're not subscribed to this lobby; Double click-it to enter and chat. - Vous n'êtes pas abonné à ce salon. Double cliquer dessus pour y accéder et discuter. + Vous n'êtes pas abonné à ce salon. Double cliquer dessus pour y accéder et discuter. + Remove Auto Subscribe - Retirer des abonnements auto + Retirer des abonnements auto + Add Auto Subscribe - Ajouter aux abonnements auto + Ajouter aux abonnements auto + %1 invites you to chat lobby named %2 - %1 vous invite dans le salon de tchat %2 + %1 vous invite dans le salon de tchat %2 + Search Chat lobbies - Rechercher des salons de tchat + Rechercher des salons de tchat + Search Name - Rechercher par nom + Rechercher par nom + Subscribed - Abonné + Abonné + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Salons de tchat</h1> <p>Les salons de tchat sont des salles de tchat distribuées, et fonctionnent presque de la même façon que IRC. Ils vous permettent de discuter anonymement avec de nombreuses personnes sans avoir besoin d'être des amis.</p> <p>Un salon de tchat peut être de type public (vos amis le voient) ou privé (vos amis ne le voient pas, à moins que vous les invitiez avec <img src=":/images/add_24x24.png" width=%2/>). Une fois que vous avez été invité à un salon privé, vous serez capable de le voir lorsque vos amis l'utiliseront.</p> <p>La liste à gauche montre les salons de tchat auxquels vos amis participent. Vous pouvez soit <ul> <li>Faire un clic droit pour créer un nouveau salon de tchat</li> <li>Faire un double clic sur un salon pour y entrer, tchatter, et le montrer à vos amis</li> </ul> Note : pour que les salons de tchat fonctionnent correctement, votre ordinateur doit être à l'heure. Alors vérifiez l'horloge de votre système ! </p> + + + + Create a non anonymous identity and enter this lobby + Créer une identité non-anonyme et entrer dans ce salon + + + Columns - Colonnes + Colonnes + Yes - Oui + Oui + No - Non + Non + Lobby Name: - Nom du salon : + Nom du salon : + Lobby Id: - Id du salon : + Id du salon : + Topic: - Sujet : + Sujet : + Type: - Type : + Type : + + Security: + Sécurité : + + + Peers: - Contacts : + Contacts : + + + + + + TextLabel - Etiquette + Etiquette + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - Aucun salon sélectionné. + Aucun salon sélectionné. Sélectionner un salon à gauche pour afficher ses détails. Double cliquer sur le salon pour y accéder et discuter. + Private Subscribed Lobbies - Salons abonnés privés + Salons abonnés privés + Public Subscribed Lobbies - Salons abonnés publics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Salons de tchat</h1> <p>Le salons de tchat sont des salles de tchat distribuées, et marchent presque de la même façon que IRC. Elles vous permettent de discuter anonymement avec beaucoup de gens sans le besoin de faire des amis.</p> <p>Un salon de tchat peut être de type public (vos amis le voient) ou privé (vos amis ne le voient pas, à moins que vous les invitiez avec <img src=":/images/add_24x24.png" width=12/>). Une fois que vous avez été invité à un salon privé, vous serez capable de le voir lorsque vos amis l'utiliseront.</p> <p>La liste à gauche montre les salons de tchat que auxquels vos amis participent. Vous pouvez soit <ul> <li>Faire un clic droit pour créer un nouveau salon de tchat</li> <li>Faire un double clic sur un salon pour y entrer, tchatter, et le montrer à vos amis</li> </ul> Note : pour que les salons de tchat fonctionnent correctement, votre ordinateur doit être à l'heure. Alors vérifiez l'horloge de votre système ! </p> + Salons abonnés publics + Chat Lobbies - Salons de tchat + Salons de tchat + Leave this lobby - Quitter ce salon + Quitter ce salon + Enter this lobby - Entrer dans ce salon + Entrer dans ce salon + Enter this lobby as... - Entrer dans ce salon en tant que ... - - - You will need to create an identity in order to join chat lobbies. - Vous devrez créer une identité afin de rejoindre des salons de tchat. - - - Choose an identity for this lobby: - Choisissez une identité pour ce salon : - - - Create an identity and enter this lobby - Créer une identité pour entrer dans ce salon - - - Show - Montrer - - - column - colonn - - - Security: - - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - - - Create a non anonymous identity and enter this lobby - + Entrer dans ce salon en tant que ... + Default identity is anonymous - + Identité par défaut est anonyme + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. - + Vous ne pouvez pas rejoindre ce salon avec votre identité par défaut, car il s'agit d'un salon anonyme qui l'interdit. + No anonymous IDs - - - - Anonymous IDs accepted - + Aucune IDs anonymes + You will need to create a non anonymous identity in order to join this chat lobby. - + Vous devrez vous créer une identité non-anonyme pour pouvoir rejoindre ce salon. + + + + You will need to create an identity in order to join chat lobbies. + Vous devrez créer une identité afin de rejoindre des salons de tchat. + + + + Choose an identity for this lobby: + Choisissez une identité pour ce salon : + + + + Create an identity and enter this lobby + Créer une identité pour entrer dans ce salon + + + + + + Show + Montrer + + + + + + column + colonn ChatMsgItem + Remove Item - Supprimer + Supprimer + Write a quick Message - Ecrire un message instantané + Ecrire un message instantané + Send Mail - Envoyer un message électronique + Envoyer un message électronique + Write Message - Envoyer un message + Envoyer un message + + Start Chat - Dialoguer + Dialoguer + Send - Envoyer + Envoyer + Cancel - Annuler + Annuler + Quick Message - Message instantané + Message instantané ChatPage + + General - Général - - - Chat Settings - Paramètres du tchat - - - Enable Emoticons Private Chat - Activer les émoticônes pour le tchat privé - - - Enable Emoticons Group Chat - Activer les émoticônes pour le tchat public - - - Enable custom fonts - Activer les polices personnalisées - - - Enable custom font size - Activer la taille de la police personnalisée - - - Enable bold - Activer le gras - - - Enable italics - Activer l'italique - - - Minimum text contrast - Contraste de texte minimal - - - Send message with Ctrl+Return - Envoyer les messages avec Ctrl+Entrée - - - Chat Lobby - Salons de tchat - - - Blink tab icon - Icône d'onglet clignotant - - - Private Chat - Tchat privé - - - Open Window for new chat - Ouvrir une fenêtre lors d'un nouveau message privé - - - Grab Focus when chat arrives - Tchat avec nouveau message au premier plan - - - Use a single tabbed window - Utiliser une seule fenêtre à onglets - - - Blink window/tab icon - Fenêtre/Icône d'onglet clignotant - - - Chat Font - Police d'écriture - - - Change Chat Font - Changer la police du tchat - - - Chat Font: - Police d'écriture : - - - History - Historique - - - Style - Style - - - Group chat - Tchat public - - - Variant - Variante - - - Author: - Auteur : - - - Description: - Description : - - - Private chat - Tchat privé - - - Incoming - Entrant - - - Outgoing - Sortant - - - Incoming message in history - Message entrant de l'historique - - - Outgoing message in history - Message sortant de l'historique - - - Incoming message - Message entrant - - - Outgoing message - Message sortant - - - Outgoing offline message - Message sortant hors ligne - - - System - Système - - - System message - Message système - - - Chat - Tchat - - - <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> - <html><head/><body><p align="justify">Dans cet onglet, vous pouvez configurer le nombre de messages de tchat que Retroshare gardera sauvegardé sur le disque et combien de la conversation précédente, elle affiche, pour les différents systèmes de discussions. La période de stockage max permet de supprimer les anciens messages et empêche l'historique des conversations de remplir les tchats volatiles (par exemple, les salons de tchat et tchat à distance).</p></body></html> - - - Chatlobbies - Salons de tchat - - - Enabled: - Activé : - - - Saved messages (0 = unlimited): - Nombre de messages sauvegardés (0 = illimité) : - - - Number of messages restored (0 = off): - Nombre de messages visibles (0 = arrêté) : - - - Maximum storage period, in days (0=keep all): - Période maximale de stockage, en jours (0=garde tout) : - - - Search by default - Recherche préconfigurée - - - Case sensitive - Respecter la casse - - - Whole Words - Mots entiers - - - Move to cursor - Déplacer vers le curseur - - - Color All Text Found - Colorer tout le texte trouvé - - - Color of found text - Couleur du texte trouvé - - - Choose color of found text - Choisissez la couleur du texte trouvé - - - Maximum count for coloring matching text - Compte maximum pour colorer le texte correspondant - - - Threshold for automatic search - Seuil pour recherche automatique - - - Default identity for chat lobbies: - Identité par défaut pour les salons de tchat : - - - Show Bar by default - Afficher la barre par défaut - - - Private chat invite from - Invitation de tchat privé reçue de - - - Name : - Nom : - - - PGP id : - ID PGP : - - - Valid until : - Valide jusqu'à : + Général + Distant Chat - + + Everyone - Tout le monde + + Contacts - Contacts + + Nobody - Personne + + Accept encrypted distant chat from - + + + Chat Settings + Paramètres du tchat + + + + Enable Emoticons Private Chat + Activer les émoticônes pour le tchat privé + + + + Enable Emoticons Group Chat + Activer les émoticônes pour le tchat public + + + + Enable custom fonts + Activer les polices personnalisées + + + + Enable custom font size + Activer la taille de la police personnalisée + + + Minimum font size - + Taille de police minimale + + Enable bold + Activer le gras + + + + Enable italics + Activer l'italique + + + + Minimum text contrast + Contraste de texte minimal + + + + Send message with Ctrl+Return + Envoyer les messages avec Ctrl+Entrée + + + + Chat Lobby + Salons de tchat + + + + Blink tab icon + Icône d'onglet clignotant + + + + Private Chat + Tchat privé + + + + Open Window for new chat + Ouvrir une fenêtre lors d'un nouveau message privé + + + + Grab Focus when chat arrives + Tchat avec nouveau message au premier plan + + + + Use a single tabbed window + Utiliser une seule fenêtre à onglets + + + + Blink window/tab icon + Fenêtre/Icône d'onglet clignotant + + + + Chat Font + Police d'écriture + + + + Change Chat Font + Changer la police du tchat + + + + Chat Font: + Police d'écriture : + + + + + History + Historique + + + + Style + Style + + + + + Group chat + Tchat public + + + + + + Variant + Variante + + + + + + Author: + Auteur : + + + + + + Description: + Description : + + + + + Private chat + Tchat privé + + + + Incoming + Entrant + + + + Outgoing + Sortant + + + + Incoming message in history + Message entrant de l'historique + + + + Outgoing message in history + Message sortant de l'historique + + + + Incoming message + Message entrant + + + + Outgoing message + Message sortant + + + + Outgoing offline message + Message sortant hors ligne + + + + System + Système + + + + System message + Message système + + + UserName - + + /me is sending a message with /me - + + + + + Chat + Tchat + + + + <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> + <html><head/><body><p align="justify">Dans cet onglet, vous pouvez configurer le nombre de messages de tchat que Retroshare gardera sauvegardé sur le disque et combien de la conversation précédente, elle affiche, pour les différents systèmes de discussions. La période de stockage max permet de supprimer les anciens messages et empêche l'historique des conversations de remplir les tchats volatiles (par exemple, les salons de tchat et tchat à distance).</p></body></html> + + + + Chatlobbies + Salons de tchat + + + + Enabled: + Activé : + + + + Saved messages (0 = unlimited): + Nombre de messages sauvegardés (0 = illimité) : + + + + Number of messages restored (0 = off): + Nombre de messages visibles (0 = arrêté) : + + + + Maximum storage period, in days (0=keep all): + Période maximale de stockage, en jours (0=garde tout) : + + + + Search by default + Recherche préconfigurée + + + + Case sensitive + Respecter la casse + + + + Whole Words + Mots entiers + + + + Move to cursor + Déplacer vers le curseur + + + + Color All Text Found + Colorer tout le texte trouvé + + + + Color of found text + Couleur du texte trouvé + + + + Choose color of found text + Choisissez la couleur du texte trouvé + + + + Maximum count for coloring matching text + Compte maximum pour colorer le texte correspondant + + + + Threshold for automatic search + Seuil pour recherche automatique + + + + Default identity for chat lobbies: + Identité par défaut pour les salons de tchat : + + + + Show Bar by default + Afficher la barre par défaut + + + + Private chat invite from + Invitation de tchat privé reçue de + + + + Name : + Nom : + + + + PGP id : + ID PGP : + + + + Valid until : + Valide jusqu'à : ChatStyle + Standard style for group chat - Le style standard pour le tchat en groupe + Le style standard pour le tchat en groupe + Compact style for group chat - Le style compact pour le tchat public + Le style compact pour le tchat public + Standard style for private chat - Le style standard pour le tchat privé + Le style standard pour le tchat privé + Compact style for private chat - Le style compact pour le chat privé + Le style compact pour le chat privé + Standard style for history - Le style standard pour l'historique + Le style standard pour l'historique + Compact style for history - Le style compact pour l'historique + Le style compact pour l'historique ChatToaster + Show Chat - Afficher le tchat + Afficher le tchat ChatUserNotify + Private Chat - Tchat privé + Tchat privé ChatWidget + Close - Fermer + Fermer + Send - Envoyer + Envoyer + Bold - Gras + Gras + Underline - Souligné + Souligné + Italic - Italique + Italique + Attach a Picture - Joindre une image + Joindre une image + Strike - Découverte + Découverte + Clear Chat History - Effacer l'historique du tchat + Effacer l'historique du tchat + Disable Emoticons - Désactiver les émoticônes + Désactiver les émoticônes + + Save Chat History - Sauvegarder l'historique du tchat + Sauvegarder l'historique du tchat + Browse Message History - Parcourir l'historique des messages + Parcourir l'historique des messages + Browse History - Parcourir l'historique + Parcourir l'historique + Delete Chat History - Supprimer l'historique du tchat + Supprimer l'historique du tchat + Deletes all stored and displayed chat history - Supprimer tous les historiques de tchat affichés et enregistrés + Supprimer tous les historiques de tchat affichés et enregistrés + Choose font - Choisir la police + Choisir la police + Reset font to default - Réinitialiser à la valeur par défaut - - - is typing... - écrit... - - - Do you really want to physically delete the history? - Etes-vous vraiment sûr de vouloir supprimer définitivement l'historique ? - - - Add Extra File - Ajouter un fichier supplémentaire - - - Load Picture File - Charger le fichier image - - - Save as... - Enregistrer sous... - - - Text File (*.txt );;All Files (*) - Fichier texte (*.txt );;Tous les fichiers (*) - - - appears to be Offline. - semble être hors ligne. - - - Messages you send will be delivered after Friend is again Online - Les messages envoyés seront délivrés lorsque votre ami sera de nouveau en ligne - - - is Idle and may not reply - est inactif et peut ne pas répondre - - - is Away and may not reply - est absent et peut ne pas répondre - - - is Busy and may not reply - est occupé et peut ne pas répondre - - - Find Case Sensitively - Trouver en tenant compte de la casse - - - Find Whole Words - Trouver mots entiers - - - Move To Cursor - Déplacer vers le curseur - - - Don't stop to color after X items found (need more CPU) - Ne pas cesser de colorer après X articles trouvés (nécessite davantage de CPU) - - - <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> - <b>Trouver le précédent </b><br/><i>Ctrl+Shift+G</i> - - - <b>Find Next </b><br/><i>Ctrl+G</i> - <b>Trouver le suivant </b><br/><i>Ctrl+G</i> - - - <b>Find </b><br/><i>Ctrl+F</i> - <b>Trouver </b><br/><i>Ctrl+F</i> - - - (Status) - (Statut) - - - Set text font & color - Régler police de caractères du texte et couleur - - - Attach a File - Joindre un fichier - - - WARNING: Could take a long time on big history. - AVERTISSEMENT : cela pourrait prendre longtemps si c'est un historique de grande taille. - - - Choose color - Choix de la couleur - - - <b>Mark this selected text</b><br><i>Ctrl+M</i> - <b>Marquer ce texte comme sélectionné</b><br><i>Ctrl+M</i> - - - %1This message consists of %2 characters. - %1Ce message consiste de %2 caractères. - - - items found. - articles trouvés. - - - No items found. - Pas d'article trouvé. - - - <b>Return to marked text</b><br><i>Ctrl+M</i> - <b>Retour au texte marqué</b><br><i>Ctrl+M</i> - - - Display Search Box - Afficher la boîte de recherche - - - Search Box - Boîte de recherche - - - Type a message here - Tapez un message ici - - - Don't stop to color after - Ne pas cesser de colorer après - - - items found (need more CPU) - éléments trouvés (besoin de plus de CPU) - - - Warning: - Avertissement : + Réinitialiser à la valeur par défaut + Quote - Citer + + Quotes the selected text - + + Drop Placemark - + + Insert horizontal rule - + + Save image - + + + + + is typing... + écrit... + + + + Do you really want to physically delete the history? + Etes-vous vraiment sûr de vouloir supprimer définitivement l'historique ? + + + + Add Extra File + Ajouter un fichier supplémentaire + + + + Load Picture File + Charger le fichier image + + + + Save as... + Enregistrer sous... + + + + Text File (*.txt );;All Files (*) + Fichier texte (*.txt );;Tous les fichiers (*) + + + + appears to be Offline. + semble être hors ligne. + + + + Messages you send will be delivered after Friend is again Online + Les messages envoyés seront délivrés lorsque votre ami sera de nouveau en ligne + + + + is Idle and may not reply + est inactif et peut ne pas répondre + + + + is Away and may not reply + est absent et peut ne pas répondre + + + + is Busy and may not reply + est occupé et peut ne pas répondre + + + + Find Case Sensitively + Trouver en tenant compte de la casse + + + + + Find Whole Words + Trouver mots entiers + + + + + Move To Cursor + Déplacer vers le curseur + + + + Don't stop to color after X items found (need more CPU) + Ne pas cesser de colorer après X articles trouvés (nécessite davantage de CPU) + + + + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> + <b>Trouver le précédent </b><br/><i>Ctrl+Shift+G</i> + + + + <b>Find Next </b><br/><i>Ctrl+G</i> + <b>Trouver le suivant </b><br/><i>Ctrl+G</i> + + + + <b>Find </b><br/><i>Ctrl+F</i> + <b>Trouver </b><br/><i>Ctrl+F</i> + + + + (Status) + (Statut) + + + + Set text font & color + Régler police de caractères du texte et couleur + + + + Attach a File + Joindre un fichier + + + + WARNING: Could take a long time on big history. + AVERTISSEMENT : cela pourrait prendre longtemps si c'est un historique de grande taille. + + + + Choose color + Choix de la couleur + + + + + <b>Mark this selected text</b><br><i>Ctrl+M</i> + <b>Marquer ce texte comme sélectionné</b><br><i>Ctrl+M</i> + + + + %1This message consists of %2 characters. + %1Ce message consiste de %2 caractères. + + + + items found. + articles trouvés. + + + + No items found. + Pas d'article trouvé. + + + + <b>Return to marked text</b><br><i>Ctrl+M</i> + <b>Retour au texte marqué</b><br><i>Ctrl+M</i> + + + + Display Search Box + Afficher la boîte de recherche + + + + Search Box + Boîte de recherche + + + + Type a message here + Saisissez votre message ici + + + + Don't stop to color after + Ne pas cesser de colorer après + + + + items found (need more CPU) + éléments trouvés (besoin de plus de CPU) + + + + Warning: + Avertissement : CircleWidget + TextLabel - Etiquette + Etiquette + Empty Circle - Vider le cercle + Vider le cercle CirclesDialog + Showing details: - Afficher les détails : + Afficher les détails : + Membership - Adhésion + Adhésion + + Name - Nom + Nom + IDs - IDs + IDs + + Personal Circles - Cercles personnels + Cercles personnels + Public Circles - Cercles publics + Cercles publics + Peers - Contacts + Contacts + Status - Statut + Statut + ID - ID + ID + + Friends - Amis + Amis + Friends of Friends - Amis de vos amis + Amis de vos amis + Others - Autres + Autres + Permissions - Droits + Droits + Anon Transfers - Transferts anonymes + Transferts anonymes + Discovery - Découverte + Découverte + Share Category - Catégorie de partage + Catégorie de partage + Create Personal Circle - Créer un cercle personnel + Créer un cercle personnel + Create External Circle - Créer un cercle extérieur + Créer un cercle extérieur + Edit Circle - Modifier le cercle + Modifier le cercle + Todo - À faire + À faire + Friends Of Friends - Amis des Amis + Amis des Amis + External Circles (Admin) - Cercles extérieurs (Admin) + Cercles extérieurs (Admin) + External Circles (Subscribed) - Cercles extérieurs (Abonnés) + Cercles extérieurs (Abonnés) + External Circles (Other) - Cercles extérieurs (Autre) + Cercles extérieurs (Autre) + + Circles - Cercles + Cercles ConfCertDialog + Details - Détails - - - Peer Address - Adresses IP du contact - - - Local Address - Adresse locale : - - - External Address - Adresse externe : - - - Dynamic DNS - DNS dynamique - - - Port - Port : - - - Addresses list - Liste d'adresses IP connues: - - - Include signatures - Inclure les signatures - - - RetroShare - Retroshare - - - Error : cannot get peer details. - Erreur : impossible d'obtenir les détails de ce contact. - - - Use as direct source, when available - Utiliser en source directe, quand disponible - - - <html><head/><body><p align="justify">Retroshare periodically checks your friend lists for browsable files matching your transfers, to establish a direct transfer. In this case, your friend knows you're downloading the file.</p><p align="justify">To prevent this behavior for this friend only, uncheck this box. You can still perform a direct transfer if you explicitly ask for it, by e.g. downloading from your friend's file list. </p></body></html> - <html><head/><body><p align="justify">Retroshare vérifie régulièrement vos listes d'amis pour les fichiers correspondant à vos transferts, afin d'établir un transfert direct. Dans ce cas, votre ami sait que vous téléchargez le fichier. </p><p align="justify">Pour éviter ce comportement pour ce seul ami, décochez cette case. Vous pouvez toujours effectuer un transfert direct si vous le demander expressément, par exemple en téléchargement à partir de la liste des fichiers de votre ami. </p></body></html> - - - Encryption - Chiffrement - - - Not connected - Non connecté - - - Peer Addresses - Adresses des contacts - - - Options - Options - - - Retroshare node details - Détails de noeud Retroshare - - - Location info - Info emplacement - - - Node name : - Nom de noeud : - - - Status : - Statut : - - - Last Contact : - Dernier contact : - - - Retroshare version : - Version Retroshare : - - - Node ID : - ID noeud : - - - PGP key : - Clé PGP : - - - Retroshare Certificate - Certificat Retroshare - - - Auto-download recommended files from this node - Télécharger automatiquement les fichiers recommandés par ce noeud - - - Friend node details - Détails noeud ami - - - Hidden Address - Adresse cachée - - - none - aucun - - - <p>This certificate contains: - <p>Ce certificat contient : - - - <li>a <b>node ID</b> and <b>name</b> - <li>un <b>ID de noeud</b> et <b>nom</b> - - - an <b>onion address</b> and <b>port</b> - une <b>adresse onion</b> et <b>port</b> - - - an <b>IP address</b> and <b>port</b> - une <b>addresse IP</b> et <b>port</b> - - - <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - <p>Vous pouvez utiliser ce certificat pour vous faire de nouveaux amis. Envoyez-le par courrier électronique, ou donnez-le de main à la main.</p> - - - <html><head/><body><p>Peers that have this option cannot connect if their connection address is not in the whitelist. This protects you from traffic forwarding attacks. When used, rejected peers will be reported by &quot;security feed items&quot; in the News Feed section. From there, you can whitelist/blacklist their IP.</p></body></html> - <html><head/><body><p>Les pairs qui ont cette option ne peuvent pas se connecter si leur adresse de connexion n'est pas dans la liste blanche. Ceci vous protège du trafic transportant des attaques. Quand utilisée, les pairs rejetés seront rapportés en tant que &quot;articles de flux sécurité (security feed items)&quot; dans la section "Fil d'actualités". De là, vous pouvez passer leur IP en liste blanche/liste noire.</p></body></html> - - - Require white list clearance - Requiert l'autorisation en liste blanche - - - <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> - <html><head/><body><p>Ceci est l'ID du certificat <span style=" font-weight:600;">OpenSSL</span> du noeud, qui est signé par la clé <span style=" font-weight:600;">PGP</span> ci-dessus. </p></body></html> - - - <html><head/><body><p>This is the encryption method used by <span style=" font-weight:600;">OpenSSL</span>. The connection to friend nodes</p><p>is always heavily encrypted and if DHE is present the connection further uses</p><p>&quot;perfect forward secrecy&quot;.</p></body></html> - <html><head/><body><p>Ceci est la méthode de cryptage utilisée par <span style=" font-weight:600;">OpenSSL</span>. La connexion aux noeuds amis est </p><p>toujours lourdement cryptée et si la DHE est présente, la connexion utilise ensuite </p><p>&quot;perfect forward secrecy&quot;.</p></body></html> - - - with - avec - - - external signatures</li> - signatures externes</li> + Détails + Node info - + Info noeud + + Peer Address + Adresses IP du contact + + + + + Local Address + Adresse locale : + + + + External Address + Adresse externe : + + + + Dynamic DNS + DNS dynamique + + + + + Port + Port : + + + + + Addresses list + Liste d'adresses IP connues: + + + + Include signatures + Inclure les signatures + + + + + + RetroShare + Retroshare + + + + + + Error : cannot get peer details. + Erreur : impossible d'obtenir les détails de ce contact. + + + + Use as direct source, when available + Utiliser en source directe, quand disponible + + + + <html><head/><body><p align="justify">Retroshare periodically checks your friend lists for browsable files matching your transfers, to establish a direct transfer. In this case, your friend knows you're downloading the file.</p><p align="justify">To prevent this behavior for this friend only, uncheck this box. You can still perform a direct transfer if you explicitly ask for it, by e.g. downloading from your friend's file list. </p></body></html> + <html><head/><body><p align="justify">Retroshare vérifie régulièrement vos listes d'amis pour les fichiers correspondant à vos transferts, afin d'établir un transfert direct. Dans ce cas, votre ami sait que vous téléchargez le fichier. </p><p align="justify">Pour éviter ce comportement pour ce seul ami, décochez cette case. Vous pouvez toujours effectuer un transfert direct si vous le demander expressément, par exemple en téléchargement à partir de la liste des fichiers de votre ami. </p></body></html> + + + + Encryption + Chiffrement + + + + Not connected + Non connecté + + + + Peer Addresses + Adresses des contacts + + + + Options + Options + + + + Retroshare node details + Détails de noeud Retroshare + + + + Node name : + Nom de noeud : + + + + Status : + Statut : + + + + Last Contact : + Dernier contact : + + + + Retroshare version : + Version Retroshare : + + + + Node ID : + ID noeud : + + + + PGP key : + Clé PGP : + + + + Retroshare Certificate + Certificat Retroshare + + + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> - + + + + + Auto-download recommended files from this node + Télécharger automatiquement les fichiers recommandés par ce noeud + + + + Friend node details + Détails noeud ami + + + + Hidden Address + Adresse cachée + + + + + none + aucun + + + + <p>This certificate contains: + <p>Ce certificat contient : + + + + <li>a <b>node ID</b> and <b>name</b> + <li>un <b>ID de noeud</b> et <b>nom</b> + + + + an <b>onion address</b> and <b>port</b> + une <b>adresse onion</b> et <b>port</b> + + + + an <b>IP address</b> and <b>port</b> + une <b>addresse IP</b> et <b>port</b> + + + + <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> + <p>Vous pouvez utiliser ce certificat pour vous faire de nouveaux amis. Envoyez-le par courrier électronique, ou donnez-le de main à la main.</p> + + + + <html><head/><body><p>Peers that have this option cannot connect if their connection address is not in the whitelist. This protects you from traffic forwarding attacks. When used, rejected peers will be reported by &quot;security feed items&quot; in the News Feed section. From there, you can whitelist/blacklist their IP.</p></body></html> + <html><head/><body><p>Les pairs qui ont cette option ne peuvent pas se connecter si leur adresse de connexion n'est pas dans la liste blanche. Ceci vous protège du trafic transportant des attaques. Quand utilisée, les pairs rejetés seront rapportés en tant que &quot;articles de flux sécurité (security feed items)&quot; dans la section "Fil d'actualités". De là, vous pouvez passer leur IP en liste blanche/liste noire.</p></body></html> + + + + Require white list clearance + Requiert l'autorisation en liste blanche + + + + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> + <html><head/><body><p>Ceci est l'ID du certificat <span style=" font-weight:600;">OpenSSL</span> du noeud, qui est signé par la clé <span style=" font-weight:600;">PGP</span> ci-dessus. </p></body></html> + + + + <html><head/><body><p>This is the encryption method used by <span style=" font-weight:600;">OpenSSL</span>. The connection to friend nodes</p><p>is always heavily encrypted and if DHE is present the connection further uses</p><p>&quot;perfect forward secrecy&quot;.</p></body></html> + <html><head/><body><p>Ceci est la méthode de chiffrement utilisée par <span style=" font-weight:600;">OpenSSL</span>. La connexion aux noeuds amis est </p><p>toujours lourdement chiffrée, et si la DHE est présente la connexion utilise ensuite </p><p>&quot;perfect forward secrecy&quot;.</p></body></html> + + + + with + avec + + + + external signatures</li> + signatures externes</li> ConnectFriendWizard + Connect Friend Wizard - Assistant de connexion à un ami + Assistant de connexion à un ami + Add a new Friend - Ajouter un nouvel ami - - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Cet assistant vous aidera à vous connecter à vos amis à l'aide deRetroshare.<br>Les possibilités de le faire sont : - - - &Enter the certificate manually - &Entrez manuellement le certificat + Ajouter un nouvel ami + &You get a certificate file from your friend - Vous possédez le certificat de votre ami dans un &Fichier + Vous avez un possédez le certificat de votre ami dans un &Fichier + &Make friend with selected friends of my friends - Devenir a&mi avec les amis sélectionnés de vos amis - - - &Enter RetroShare ID manually - &Entrez manuellement l'ID Retroshare - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - Envoyez une invitation par e-mail - (Elle/il recevra par e-mail les instructions pour télécharger Retroshare) + Devenir a&mi avec les amis sélectionnés de vos amis + Text certificate - Certificat version texte + Certificat version texte + Use text representation of the PGP certificates. - Utiliser la version texte du certificat PGP. - - - The text below is your PGP certificate. You have to provide it to your friend - Le texte ci-dessous est votre certificat PGP. Vous devez le fournir à votre ami + Utiliser la version texte du certificat PGP. + + Include signatures - Inclure les signatures + Inclure les signatures + Copy your Cert to Clipboard - Copier votre certificat dans le presse-papier + Copier votre certificat dans le presse-papier + Save your Cert into a File - Enregistrer votre certificat dans un fichier + Enregistrer votre certificat dans un fichier + Run Email program - Envoyer par courrier électronique + Envoyer par courrier électronique - Please, paste your friends PGP certificate into the box below - Veuillez coller le certificat PGP de votre ami dans la case ci-dessous + + Please, paste your friend's Retroshare certificate into the box below + + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files - fichiers de certificat + Fichiers de certificats + Use PGP certificates saved in files. - Utilisez des certificats PGP contenu dans un fichier. + Utiliser des certificats PGP contenus dans des fichiers. + Import friend's certificate... - Importer le certificat d'un ami... + Importer le certificat d'un ami... + You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - Vous devez générer un fichier à partir de votre certificat et le transmettre à votre ami. Vous pouvez aussi utiliser un fichier généré auparavant. + Vous devez générer un fichier à partir de votre certificat et le transmettre à votre ami. Vous pouvez aussi utiliser un fichier généré auparavant. + Export my certificate... - Exporter mon certificat... + Exporter mon certificat... + Drag and Drop your friends's certificate in this Window or specify path in the box below - Glisser et déposer le certificat de votre ami dans cette fenêtre ou importez le à partir de votre disque dur + Glisser et déposer le certificat de votre ami dans cette fenêtre ou importez le à partir de votre disque dur + Browse - Parcourir + Parcourir + Friends of friends - Amis de vos amis + Amis de vos amis + Select now who you want to make friends with. - Veuillez selectionner avec qui vous souhaitez devenir ami. + Veuillez selectionner avec qui vous souhaitez devenir ami. + Show me: - Afficher : + Afficher : + Make friend with these peers - Devenir ami avec ces contacts + Devenir ami avec ces contacts + RetroShare ID - ID Retroshare + ID Retroshare + Use RetroShare ID for adding a Friend which is available in your network. - Utilisez l'ID Retroshare pour ajouter un ami qui est disponible dans votre réseau. + Utilisez l'ID Retroshare pour ajouter un ami qui est disponible dans votre réseau. + Add Friends RetroShare ID... - Ajouter l'ID d'amis Retroshare... + Ajouter l'ID d'amis Retroshare... + Paste Friends RetroShare ID in the box below - Coller l'ID Retroshare d'amis ci-dessous + Coller l'ID Retroshare d'amis ci-dessous + Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - Entrez l'ID Retroshare de votre ami, p. ex.. Contact@BDE8D16A46D938CF + Entrez l'ID Retroshare de votre ami, p. ex.. Contact@BDE8D16A46D938CF + + RetroShare is better with Friends + Retroshare c'est mieux avec des amis + + + + Invite your Friends from other Networks to RetroShare. + Invitez vos amis d'autres réseaux à Retroshare. + + + + GMail + GMail + + + + Yahoo + Yahoo + + + + Outlook + Outlook + + + + AOL + AOL + + + + Yandex + Yandex + + + + Email + + + + Invite Friends by Email - Inviter un ami à rejoindre Retroshare par e-mail + Inviter un ami à rejoindre Retroshare par e-mail + Enter your friends' email addresses (separate each one with a semicolon) - Entrez les adresses e-mail de vos amis (séparées par un point-virgule) + Entrez les adresses e-mail de vos amis (séparées par un point-virgule) + Your friends' email addresses: - Destinataire(s) : + Destinataire(s) : + Enter Friends Email addresses - Entrez l'adresse e-mail de vos amis + Entrez l'adresse e-mail de vos amis + Subject: - Sujet : + Sujet : + + + Friend request - Demande d'ami + Demande d'ami + + + Details about the request - Détails de la demande + Détails de la demande + + Peer details - Détails du contact + Détails du contact + + Name: - Nom : + Nom : + + Email: - E-Mail : + E-Mail : + + Node: + Noeud : + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Veuillez noter que Retroshare nécessitera beaucoup de bande passante, mémoire et CPU si vous ajoutez de nombreux amis. Vous pouvez ajouter autant d'amis que vous le souhaitez, mais avec plus de 40 vous nécessitera probablement trop de ressources. + + + Location: - Emplacement : + Emplacement : + + + Options - Options + Options + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Cet assistant vous aidera à vous connecter à vos amis avec Retroshare.<br>Il y a diverses possibilités pour le faire : + + + + Enter the certificate manually + Entrer manuellement le certificat + + + + Enter RetroShare ID manually + Entrer manuellement l'ID Retroshare + + + + &Send an Invitation by Web Mail Providers + Envoyez une invitation par me&ssagerie électronique + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + Envoyez une invitation par e-mail + (Votre ami recevra par e-mail les instructions pour télécharger Retroshare) + + + + Recommend many friends to each other + Recommander plusieurs amis les uns aux autres + + + + Add friend to group: - Ajouter l'ami à un groupe : + Ajouter l'ami à un groupe : + + Authenticate friend (Sign PGP Key) - Ami authentifié (Clé PGP signée) + Ami authentifié (clé PGP signée) + + Add as friend to connect with - Ajouter cet ami pour communiquer avec lui + Ajouter cet ami pour communiquer avec lui + + To accept the Friend Request, click the Finish button. - Pour accepter la demande d'amitié, cliquez sur le bouton Terminer. + Pour accepter la demande d'amitié, cliquez sur le bouton Terminer. + Sorry, some error appeared - Désolé, des erreurs sont survenues + Désolé, des erreurs sont survenues + Here is the error message: - Voici le message d'erreur : + Voici le message d'erreur : + Make Friend - Devenir ami + Devenir ami + Details about your friend: - À propos de votre ami : + À propos de votre ami : + Key validity: - Validité de la clé : + Validité de la clé : + Signers - Ils lui font aussi confiance : + Ils lui font aussi confiance : + This peer is already on your friend list. Adding it might just set it's ip address. - Ce contact est déjà dans votre liste d'am. L'ajouter se limitera à enregistrer son adresse IP. + Ce contact est déjà dans votre liste d'am. L'ajouter se limitera à enregistrer son adresse IP. + Abnormal size read is bigger than memory block. - Taille du fichier lu plus grande que le block mémoire. + Taille du fichier lu plus grande que le block mémoire. + Invalid external IP. - Ip externe invalide. + Ip externe invalide. + Invalid local IP. - Ip locale invalide. + Ip locale invalide. + Invalid checksum section. - Section du checksum incorrecte. + Section du checksum incorrecte. + Checksum mismatch. Certificate is corrupted. - Checksum différent. Le certificat est corrompu. + Checksum différent. Le certificat est corrompu. + Unknown section type found (Certificate might be corrupted). - Type de section trouvé invalide (Le certificat doit être corrompu). + Type de section trouvé invalide (Le certificat doit être corrompu). + Missing checksum. - Checksum manquant. + Checksum manquant. + Unknown certificate error - Erreur de certificat inconnue + Erreur de certificat inconnue + + Certificate Load Failed - Le chargement du certificat à échoué + Le chargement du certificat à échoué + Cannot get peer details of PGP key %1 - Impossible d'obtenir les détails de la clé PGP %1 + Impossible d'obtenir les détails de la clé PGP %1 + Any peer I've not signed - Tous les contacts dont vous n'avez pas signé les certificats + Tous les contacts dont vous n'avez pas signé les certificats + Friends of my friends who already trust me - Amis de vos amis qui vous ont déjà accordé leur confiance + Amis de vos amis qui vous ont déjà accordé leur confiance + Signed peers showing as denied - Contacts signées montrés comme refusés + Contacts signées montrés comme refusés + Peer name - Nom du contact + Nom du contact + Also signed by - Également signé par + Également signé par + Peer id - ID du contact + ID du contact + + RetroShare Invitation - Invitation Retroshare + Invitation Retroshare + Ultimate - Ultime + Ultime + Full - Totale + Totale + Marginal - Moyenne + Moyenne + None - Aucune + Aucune + No Trust - Pas de confiance + Pas de confiance + + You have a friend request from - Vous avez une demande d'amitié de + Vous avez une demande d'amitié de + Certificate Load Failed:file %1 not found - L'importation du certificat a échoué : le fichier %1 n'a pas été trouvé + L'importation du certificat a échoué : le fichier %1 n'a pas été trouvé + This Peer %1 is not available in your Network - Ce contact %1 n'est pas disponible dans votre réseau + Ce contact %1 n'est pas disponible dans votre réseau + Use new certificate format (safer, more robust) - Utiliser le nouveau format de certificat (plus sure, plus robuste) + Utiliser le nouveau format de certificat (plus sure, plus robuste) + Use old (backward compatible) certificate format - Utilisez l'ancien format de certificat (rétrocompatible) + Utilisez l'ancien format de certificat (rétrocompatible) + Remove signatures - Supprimer les signatures + Supprimer les signatures + RetroShare Invite - Invitation Retroshare + Invitation Retroshare + No or misspelled BEGIN tag found - BEGIN tag non trouvé ou mal orthographié + Tag BEGIN non trouvé ou mal orthographié + No or misspelled END tag found - END tag non trouvé ou mal orthographié + Tag END non trouvé ou mal orthographié + 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:) - Pas de checksum trouvé (les 5 derniers caractères doivent être séparés par un '='), ou aucun saut de ligne après la ligne d'étiquette (p.ex. ligne commençant avec Version:) + Pas de checksum trouvée (les 5 derniers caractères doivent être séparés par un '='), ou aucun saut de ligne après la ligne d'étiquette (p.ex. ligne commençant avec Version:) + Unknown error. Your cert is probably not even a certificate. - Une erreur inconnue. Votre certificat n'est probablement même pas un certificat. + Une erreur inconnue. Votre certificat n'est probablement même pas un certificat. + Connect Friend Help - Aide pour l'envoi du certificat + Aide pour l'envoi du certificat + You can copy this text and send it to your friend via email or some other way - Vous pouvez copier votre certificat et l'envoyer à vos amis par courrier électronique ou par tout autre moyen + Vous pouvez copier votre certificat et l'envoyer à vos amis par courrier électronique ou par tout autre moyen + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Votre certificat a été copié dans le presse-papier, collez-le et envoyez-le par courrier electronique ou par tout autre moyen + Votre certificat a été copié dans le presse-papier, collez-le et envoyez-le par courrier electronique ou par tout autre moyen + Save as... - Enregistrer sous... + Enregistrer sous... + + + RetroShare Certificate (*.rsc );;All Files (*) - Certificat Retroshare (*.rsc );;Tous les fichiers (*) + Certificat Retroshare (*.rsc );;Tous les fichiers (*) + Select Certificate - Sélectionner le certificat + Sélectionner le certificat + Sorry, create certificate failed - Désolé, la création du certificat a échoué + Désolé, la création du certificat a échoué + Please choose a filename - Veuillez spécifier un nom de fichier + Veuillez spécifier un nom de fichier + Certificate file successfully created - Votre certificat a été créé avec succès + Votre certificat a été créé avec succès + + Sorry, certificate file creation failed - Désolé, la création du certificat a échoué + Désolé, la création du certificat a échoué + *** None *** - *** Aucune *** + *** Aucune *** + Use as direct source, when available - Utiliser en source directe, quand disponible + Utiliser en source directe, quand disponible + + IP-Addr: + Addr-IP : + + + + IP-Address + Adresse IP + + + Recommend many friends to each others - Recommander plusieurs amis les uns aux autres + Recommander plusieurs amis les uns aux autres + Friend Recommendations - Recommandations d'amis + Recommandations d'amis + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - Message : + Message : + Recommend friends - Amis recommandés + Amis recommandés + To - Pour + Pour + Please select at least one friend for recommendation. - Veuillez sélectionner au moins un ami à recommander. + Veuillez sélectionner au moins un ami à recommander. + Please select at least one friend as recipient. - S'il vous plaît sélectionner au moins un destinataire. - - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Veuillez noter que RetroShare nécessitera des quantités excessives de bande passante, mémoire et CPU si vous ajoutez à de nombreux amis. Vous pouvez ajouter autant d'amis que vous le souhaitez, mais avec plus de 40 vous aurez probablement besoin de trop de ressources. + Veuillez sélectionner au moins un destinataire. + Add key to keyring - Ajouter la clé au trousseau + Ajouter la clé au trousseau + This key is already in your keyring - Cette clé est déjà dans votre trousseau + Cette clé est déjà dans votre trousseau + Check this to add the key to your keyring This might be useful for sending distant messages to this peer even if you don't make friends. - Cochez ceci pour ajouter la clé à votre + Cochez ceci pour ajouter la clé à votre trousseau, cela peut être utile pour l'envoi de messages distants à ce contact même si vous n'êtes pas amis. + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - Le certificat a un mauvais numéro de version. Souvenez-vous que les réseaux v0.6 et v0.5 sont incompatibles. + Le certificat a un mauvais numéro de version. Souvenez-vous que les réseaux v0.6 et v0.5 sont incompatibles. + Invalid node id. - L'ID de noeud est invalide. + L'ID de noeud est invalide. + + Auto-download recommended files - Télécharger automatiquement les fichiers recommandés + Télécharger automatiquement les fichiers recommandés + Can be used as direct source - Possibilité d'être utilisé comme source directe + Possibilité d'être utilisé comme source directe + + Require whitelist clearance to connect - Requiert l'autorisation en liste blanche pour être connecté + Requiert l'autorisation en liste blanche pour être connecté + Add IP to whitelist - Ajouter l'IP dans la liste blanche + Ajouter l'IP dans la liste blanche + No IP in this certificate! - Pas d'IP dans ce certificat ! + Pas d'IP dans ce certificat ! + <p>This certificate has no IP. You will rely on discovery and DHT to find it. Because you require whitelist clearance, the peer will raise a security warning in the NewsFeed tab. From there, you can whitelist his IP.</p> - <p>Ce certificat n'a pas d'IP. Vous devrez compter sur la découverte et la DHT pour le trouver. Parce que vous exigez l'autorisation liste blanche, le pair lèvera un avertissement de sécurité dans l'onglet "Fil d'actualités". De là, vous pourrez passer son IP en liste blanche.</p> + <p>Ce certificat n'a pas d'IP. Vous devrez compter sur la découverte et la DHT pour le trouver. Parce que vous exigez l'autorisation liste blanche, le pair lèvera un avertissement de sécurité dans l'onglet "Fil d'actualités". De là, vous pourrez passer son IP en liste blanche.</p> + Added with certificate from %1 - Ajout&eacute; avec certificat depuis %1 + Ajouté avec certificat depuis %1 + Paste Cert of your friend from Clipboard - Coller le certificat de votre ami depuis le presse-papier + Coller le certificat de votre ami depuis le presse-papier + Certificate Load Failed:can't read from file %1 - Échec de chargement du certificat : ne peut pas lire le fichier %1 + Échec de chargement du certificat : ne peut pas lire le fichier %1 + Certificate Load Failed:something is wrong with %1 - Échec de chargement du certificat : quelque chose ne va pas dans %1 - - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: - - - - Enter the certificate manually - Echanger manuellement des certificats - - - Enter RetroShare ID manually - - - - &Send an Invitation by Web Mail Providers - &Invitation par Web Mail - - - &Send an Invitation by Email - (Your friend will receive an email with instructions how to to download RetroShare) - - - - Recommend many friends to each other - Recommender des noeud voisins entre eux - - - The text below is your Retroshare certificate. You have to provide it to your friend - Ceci est votre certificat Retroshare. Vous devez fournir celui de votre futur ami - - - Please, paste your friend's Retroshare certificate into the box below - Collez ici le certificat de votre futur ami - - - <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> - <html><head/><body><p>Cet emplacement attend un certificat Retroshare. ATTENTION: ce n'est pas la même chose qu'une clé PGP. N'essayez pas d'introduire une clé PGP ou une partie d"une clé PGP ici: cela ne marchera pas.</p></body></html> - - - RetroShare is better with Friends - - - - Invite your Friends from other Networks to RetroShare. - QS - - - GMail - - - - Yahoo - - - - Outlook - - - - AOL - - - - Yandex - - - - Email - Courrier électronique - - - Node: - - - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much -resources. - Notew bien que Retroshare va consommer d'autant plus de bande passante et de CPU que vous aurez d'amis. Sur une connexion ADSL avoir plus de 30-40 amis risque de laisser trop peu de bande passante pour chacun d'entre eux - - - IP-Addr: - Adresse IP - - - IP-Address - Adresse IP + Échec de chargement du certificat : quelque chose ne va pas dans %1 ConnectProgressDialog + Connection Progress - Progression de la connexion + Progression de la connexion + Connecting to: - Connexion à : + Connexion à : + TextLabel - Etiquette + Etiquette + Network - Réseau + Réseau + Net Result - Résultat du net + Résultat du net + Connect Status - Statut de connexion + Statut de connexion + Contact Result - Résultat du contact + Résultat du contact + + DHT Startup - Démarrage DHT + Démarrage DHT + DHT Result - Résultat DHT + Résultat DHT + Peer Lookup - Contact Lookup + Contact Lookup + Peer Result - Résultat du contact + Résultat du contact + + UDP Setup - Réglage UDP + Réglage UDP + UDP Result - Résultat UDP + Résultat UDP + Connection Assistant - Assistant de connexion + Assistant de connexion + Invalid Peer ID - ID du contact incorrecte + ID du contact incorrecte + Unknown State - État inconnu + État inconnu + Offline - Hors ligne + Hors ligne + Behind Symmetric NAT - Derrière un NAT symétrique + Derrière un NAT symétrique + Behind NAT & No DHT - Derrière un NAT & Pas de DHT + Derrière un NAT & Pas de DHT + NET Restart - Redémarrage du NET + Redémarrage du NET + Behind NAT - Derrière un NAT + Derrière un NAT + No DHT - Pas de DHT + Pas de DHT + NET STATE GOOD! - ÉTAT DU NET : BON ! + ÉTAT DU NET : BON ! + DHT Failed - Échec DHT + Échec DHT + DHT Disabled - DHT désactivée + DHT désactivée + DHT Okay - DHT OK + DHT OK + Finding RS Peers - Recherche de contacts RS + Recherche de contacts RS + Lookup requires DHT - Lookup nécessite la DHT + Lookup nécessite la DHT + Searching DHT - Recherche dans la DHT + Recherche dans la DHT + Lookup Timeout - Timeout du Lookup + Timeout du Lookup + Peer DHT NOT ACTIVE - DHT du contact NON ACTIVÉE + DHT du contact NON ACTIVÉE + Lookup Failure - Échec du lookup + Échec du lookup + + Peer Offline - Contact hors ligne + Contact hors ligne + Peer Firewalled - Contact derrière un pare-feu + Contact derrière un pare-feu + Peer Online - Contact en ligne + Contact en ligne + Connection In Progress - Connexion en cours + Connexion en cours + Initial connections can take a while, please be patient - La première connexion peut prendre un peu de temps, s'il vous plaît soyez patient. + La première connexion peut prendre un peu de temps, s'il vous plaît soyez patient. + If an error is detected it will be displayed here - Si une erreur est détectée elle sera affichée ici. + Si une erreur est détectée elle sera affichée ici. + You can close this dialog at any time - Vous pouvez fermer cette boite de dialogue à tout moment, + Vous pouvez fermer cette boite de dialogue à tout moment, + + Retroshare will continue connecting in the background - Retroshare continuera de se connecter en arrière plan. + Retroshare continuera de se connecter en arrière plan. + Connection Timeout - Timeout de la connexion + Timeout de la connexion + Connection Attempt has taken too long - La tentative de connexion a pris trop de temps + La tentative de connexion a pris trop de temps + But no error has been detected - Mais aucune erreur n'a été détectée + Mais aucune erreur n'a été détectée + + + Try again shortly, Retroshare will continue connecting in the background - Essaye à nouveau brièvement, Retroshare continuera de se connecter en arrière plan + Essaye à nouveau brièvement, Retroshare continuera de se connecter en arrière plan + + + + + If you continue to get this message, please contact developers - Si vous continuez à recevoir ce message, contactez un développeur + Si vous continuez à recevoir ce message, contactez un développeur + DHT Lookup Timeout - Timeout de Lookup DHT + Timeout de Lookup DHT + DHT Lookup has taken too long - Le lookup DHT a pris trop de temps + Le lookup DHT a pris trop de temps + UDP Connection Timeout - Connexion UDP Timeout + Connexion UDP Timeout + UDP Connection has taken too long - La connexion UDP a pris trop de temps + La connexion UDP a pris trop de temps + UDP Connection Failed - Échec de la connexion UDP + Échec de la connexion UDP + We are continually working to improve connectivity. - Nous travaillons sans cesse pour améliorer la connectivité. + Nous travaillons sans cesse pour améliorer la connectivité. + In this case the UDP connection attempt has failed. - Dans ce cas la tentative de connexion UDP a échoué. + Dans ce cas la tentative de connexion UDP a échoué. + Improve connectivity by opening a Port in your Firewall. - Améliorer la connectivité en ouvrant un port dans votre pare-feu. + Améliorer la connectivité en ouvrant un port dans votre pare-feu. + Connected - Connecté + Connecté + Congratulations, you are connected - Félicitations, vous êtes connecté + Félicitations, vous êtes connecté + DHT startup Failed - Échec démarrage DHT + Échec démarrage DHT + Your DHT has not started properly - Votre DHT n'a pas bien démarré + Votre DHT n'a pas bien démarré + Common causes of this problem are: - Les raisons générales de ce problème sont : + Les raisons générales de ce problème sont : + - You are not connected to the Internet - - Vous n'êtes pas connecté à internet + - Vous n'êtes pas connecté à internet + - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - - Vous avez un fichier manquant ou ancien de bootstap de DHT (bdboot.txt) + - Vous avez un fichier manquant ou ancien de bootstap de DHT (bdboot.txt) + DHT is Disabled - DHT est désactivée + DHT est désactivée + The DHT is OFF, so Retroshare cannot find your Friends. - La DHT est OFF, et donc Retroshare ne peut pas retrouver vos amis. + La DHT est OFF, et donc Retroshare ne peut pas retrouver vos amis. + Retroshare has tried All Known Addresses, with no success - Retroshare a testé toutes les adresses connues, sans succès + Retroshare a testé toutes les adresses connues, sans succès + The DHT is needed if your friends have Dynamic IP Addresses. - La DHT est nécessaire si vos amis ont des adresses IP dynamiques. + La DHT est nécessaire si vos amis ont des adresses IP dynamiques. + Go to Settings->Server and change config to "Public: DHT and Discovery" - Allez dans Options-> Serveur et changez la configuration sur "Publique : DHT et découverte" + Allez dans Options-> Serveur et changez la configuration sur "Publique : DHT et découverte" + + Peer Denied Connection - Le contact a rejeté la connexion + Le contact a rejeté la connexion + We successfully reached your Friend. - Nous avons bien atteint votre ami. + Nous avons bien atteint votre ami. + + but they have not added you as a Friend. - mais ils ne vous ont pas ajouté en tant qu'ami. + mais ils ne vous ont pas ajouté en tant qu'ami. + Please contact them to add your Certificate - S'il vous plaît contactez les pour les faire ajouter votre certificat + Veuillez les contacter afin qu'ils ajoutent votre certificat + + + Your Retroshare Node is configured Okay - Votre noeud Retroshare est correctement configuré. + Votre noeud Retroshare est correctement configuré. + We successfully reached your Friend via UDP. - Nous avons bien atteint votre ami via UDP. + Nous avons bien atteint votre ami via UDP. + Please contact them to add your Full Certificate - S'il vous plaît contactez les pour les faire ajouter votre certificat entier + Veuillez les contacter afin qu'ils ajoutent votre certificat entier + We Cannot find your Friend. - Nous ne retrouvons pas votre ami. + Nous ne retrouvons pas votre ami. + They are either offline or their DHT is Off - Ils sont soit hors ligne ou leur DHT est éteinte + Ils sont soit hors ligne ou leur DHT est éteinte + Peer DHT is Disabled - La DHT du contact est désactivée + La DHT du contact est désactivée + Your Friend has configured Retroshare with DHT Disabled. - Votre ami a configuré Retroshare avec la DHT désactivée. + Votre ami a configuré Retroshare avec la DHT désactivée. + You have previously connected to this Friend - Vous vous êtes déjà connecté à cet ami + Vous vous êtes déjà connecté à cet ami + Retroshare has determined that they have DHT switched off - Retroshare a déterminé qu'ils ont leur DHT désactivée + Retroshare a déterminé qu'ils ont leur DHT désactivée + Without the DHT it is hard for Retroshare to locate your friend - Sans la DHT il est difficile pour Retroshare de localiser votre ami + Sans la DHT il est difficile pour Retroshare de localiser votre ami + Try importing a fresh Certificate to get up-to-date connection information - Essayez d'importer un nouveau certificat pour obtenir des informations de connexion actualisées + Essayez d'importer un nouveau certificat pour obtenir des informations de connexion actualisées + Incomplete Friend Details - Détails de l'ami incomplets + Détails de l'ami incomplets + You have imported an incomplete Certificate - Vous avez importé un certificat incomplet + Vous avez importé un certificat incomplet + Please retry importing the full Certificate - Veuillez réessayez d'importer le certificat en entier + Veuillez réessayez d'importer le certificat en entier + <!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:'Lucida Grande'; font-size:13pt;">This Widget shows the progress of your connection to your new peer.</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:'Lucida Grande'; font-size:13pt;">It is helpful for problem-solving.</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:'Lucida Grande'; font-size:13pt;"></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:'Lucida Grande'; font-size:13pt;">If you are an expert RS user, or trust that RS will do the right thing</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:'Lucida Grande'; font-size:13pt;">This Widget shows the progress of your connection to your new peer.</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:'Lucida Grande'; font-size:13pt;">It is helpful for problem-solving.</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:'Lucida Grande'; font-size:13pt;"></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:'Lucida Grande'; font-size:13pt;">If you are an expert RS user, or trust that RS will do the right thing</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:'Lucida Grande'; font-size:13pt;">you can close it.</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;"> @@ -3062,2397 +3744,2395 @@ 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:'Lucida Grande'; font-size:13pt;">vous pouvez le fermer.</span></p></body></html> + + + + N/A - N/A + N/A + UNVERIFIABLE FORWARD! - FORWARD INVÉRIFIABLE ! + FORWARD INVÉRIFIABLE ! + UNVERIFIABLE FORWARD & NO DHT - FORWARD INVÉRIFIABLE & PAS DE DHT + FORWARD INVÉRIFIABLE & PAS DE DHT + Searching - Recherche + Recherche + UDP Connect Timeout - Connexion UDP Timeout + Connexion UDP Timeout + Only Advanced Retroshare users should switch off the DHT. - Uniquement les utilisateurs expérimentés devraient éteindre la DHT. + Uniquement les utilisateurs expérimentés devraient éteindre la DHT. + Retroshare cannot connect without this information - Retroshare ne peut se connecter sans cette information + Retroshare ne peut se connecter sans cette information + They need a Certificate + Node for UDP connections to succeed - Ils ont besoin d'un Certificat + Noeud, afin que les connexions UDP puissent réussir + Ils ont besoin d'un Certificat + Noeud, afin que les connexions UDP puissent réussir CreateCircleDialog + Circle Details - Détails du cercle + Détails du cercle + + Name - Nom + Nom + Creator - Créateur + Créateur + Distribution - Distribution + Distribution + Public - Public + Public + Self-Restricted - Self-Restricted + Self-Restricted + Restricted to: - Limité à : + Limité à : + Circle Membership - Membre du cercle + Membre du cercle + IDs - IDs + IDs + Known Identities - Identités connues + Identités connues + Filter - Filtre + Filtre + Nickname - Surnom + Surnom + ID - ID + ID + Type - Type + Type + + + + RetroShare - Retroshare + Retroshare + Please set a name for your Circle - S'il vous plaît donnez un nom à votre cercle + S'il vous plaît donnez un nom à votre cercle + Personal Circle Details - Détails du cercle personnel + Détails du cercle personnel + External Circle Details - Détails du cercle extérieur + Détails du cercle extérieur + Cannot Edit Existing Circles Yet - Impossible de modifier un cercle existant pour l'instant + Impossible de modifier un cercle existant pour l'instant + No Restriction Circle Selected - Aucune restriction de cercle sélectionnée + Aucune restriction de cercle sélectionnée + No Circle Limitations Selected - Aucune limitation de cercle sélectionnée + Aucune limitation de cercle sélectionnée + Create New Personal Circle - Créer un nouveau cercle personnel + Créer un nouveau cercle personnel + Create New External Circle - Créer un nouveau cercle externe + Créer un nouveau cercle externe + Add - Ajouter + Ajouter + Remove - Enlever + Enlever + + Search - Rechercher + Rechercher + All - Tout + Tout + Signed - Signé + Signé + Signed by known nodes - Signé par des noeuds connus + Signé par des noeuds connus + Edit Circle - Modifier le cercle + Modifier le cercle + + PGP Identity - Identité PGP + Identité PGP + + + Anon Id - ID anon + ID anon + PGP Linked Id - ID PGP liée + ID PGP liée CreateGroup + + Create a Group - Créer un groupe + Créer un groupe + Group Name - Nom du groupe + Nom du groupe + Enter a name for your group - Entrez un nom pour le groupe que vous souhaitez créer + Entrez un nom pour le groupe que vous souhaitez créer + Friends - Amis + Amis + + Edit Group - Modifier le groupe + Modifier le groupe CreateGxsChannelMsg + + New Channel Post - Nouvel article sur la chaîne + Nouvel article sur la chaîne + Channel Post - Message + Message + Channel Post to: - Posté sur la Chaîne : + Posté sur la Chaîne : + <!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:'MS Shell Dlg 2'; font-size:10pt; font-weight:600;">Attachments:</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Use Drag and Drop / Add Files button, to Hash new files.</span></p> +</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:'MS Shell Dlg 2'; font-size:10pt; font-weight:600;">Attachments:</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Use Drag and Drop / Add Files button, to Hash new 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-family:'MS Shell Dlg 2'; font-size:8pt;"> Copy/Paste RetroShare links from your shares</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:'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:'MS Shell Dlg 2'; font-size:10pt; font-weight:600;">Attachments:</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Utiliser le "glisser-déposer" / le bouton ajouter, pour hasher de nouveaux fichiers.</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Copier/Coller les liens Retroshare de vos partages</span></p></body></html> +<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:10pt; font-weight:600;">Pièces jointes :</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Utiliser "glisser-déposer" / le bouton d'ajout, pour hacher de nouveaux fichiers.</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-family:'MS Shell Dlg 2'; font-size:8pt;"> Copier/collez des liens Retroshare depuis vos partages.</span></p></body></html> + Add File to Attach - Joindre un fichier + Joindre un fichier + Add Channel Thumbnail - Incorporer une miniature + Incorporer une miniature + Message - Message + Message + Subject : - Sujet : + Sujet : + + Attachments - Fichiers joints + Fichiers joints + Allow channels to get frame for message thumbnail from movie media attachments or not - permet ou non d'extraire une miniature à partir du fichier joint + permet ou non d'extraire une miniature à partir du fichier joint + Auto Thumbnail - Miniature automatique + Miniature automatique + Drag and Drop Files from Search Results - Glisser/déposer les fichiers à partir des résultats de recherche + Glisser/déposer les fichiers à partir des résultats de recherche + Paste RetroShare Links - Coller le lien Retroshare + Coller le lien Retroshare + Paste RetroShare Link - Coller le lien Retroshare + Coller le lien Retroshare + + Drop file error. - Erreur lors de l'ajout du fichier. + Erreur lors de l'ajout du fichier. + Directory can't be dropped, only files are accepted. - On ne peut pas déposer un dossier, seuls les fichiers sont acceptés. + On ne peut pas déposer un dossier, seuls les fichiers sont acceptés. + File not found or file name not accepted. - Le fichier n'a pas été trouvé ou le nom du fichier n'est pas accepté. + Le fichier n'a pas été trouvé ou le nom du fichier n'est pas accepté. + Add Extra File - Ajouter un fichier supplémentaire + Ajouter un fichier supplémentaire + + RetroShare - Retroshare + Retroshare + File already Added and Hashed - Fichier déjà ajouté et hashé + Fichier déjà ajouté et hashé + Please add a Subject - Veuillez ajouter un sujet à votre message + Veuillez ajouter un sujet à votre message + Load thumbnail picture - Charger la miniature + Charger la miniature + + Generate mass data - Générer des données de masse + Générer des données en masse + Do you really want to generate %1 messages ? - Voulez-vous vraiment générer %1 messages ? + Voulez-vous vraiment générer %1 messages ? + You are about to add files you're not actually sharing. Do you still want this to happen? - Vous êtes sur le point d'ajouter les fichiers que vous ne partagez pas actuellement. Voulez-vous toujours faire cela ? + Vous êtes sur le point d'ajouter les fichiers que vous ne partagez pas actuellement. Voulez-vous toujours faire cela ? + About to post un-owned files to a channel. - Vous êtes sur le point de publier un fichier non-possédé sur la chaîne. + Vous êtes sur le point de publier un fichier non-possédé sur la chaîne. CreateGxsForumMsg + + Post Forum Message - Poster un message sur le forum + Poster un message sur le forum + Forum - Forum + Forum + Subject - Sujet + Sujet + Attach File - Joindre un fichier + Joindre un fichier + Sign Message - Signer le message + Signer le message + Forum Post - Message + Message + Attach files via drag and drop - Joindre un fichier par glisser/déposer + Joindre un fichier par glisser/déposer + You can attach files via drag and drop here in this window - Vous pouvez joindre des fichiers par glisser/déposer + Vous pouvez joindre des fichiers par glisser/déposer + Start New Thread - Lancer un nouveau fil + Lancer un nouveau fil + No Forum - Aucun forum + Aucun forum + In Reply to - En réponse à + En réponse à + + + RetroShare - Retroshare + Retroshare + Please set a Forum Subject and Forum Message - Veuillez renseigner le sujet ainsi que le message du forum + Veuillez renseigner le sujet ainsi que le message du forum + Please choose Signing Id, it is required - S'il vous plaît choisir une Signing Id, c'est obligatoire + S'il vous plaît choisir une Signing Id, c'est obligatoire + Add Extra File - Ajouter un fichier supplémentaire + Ajouter un fichier supplémentaire + + Generate mass data - Générer des données de masse + Générer des données en masse + Do you really want to generate %1 messages ? - Voulez-vous vraiment générer %1 messages ? + Voulez-vous vraiment générer %1 messages ? + Send - Envoyer + Envoyer + Forum Message - Message de forum + Message de forum + Forum Message has not been Sent. Do you want to reject this message? - Le message de forum n'a pas été envoyé. + Le message de forum n'a pas été envoyé. Voulez-vous rejeter ce message ? + Post as - Poster en tant que + Poster en tant que + Congrats, you found a bug! - Félicitations, vous avez trouvé un bug ! + Félicitations, vous avez trouvé un bug ! CreateLobbyDialog + + Create Chat Lobby - Créer un salon de tchat + Créer un salon de tchat + 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. - Un salon de chat est un tchat en groupe décentralisé et anonyme. Tous les participants reçoivent tous les messages. Une fois que le salon est créé, vous pouvez inviter d'autres amis à partir de l'onglet Amis. + Un salon de chat est un tchat en groupe décentralisé et anonyme. Tous les participants reçoivent tous les messages. Une fois que le salon est créé, vous pouvez inviter d'autres amis à partir de l'onglet Amis. + Lobby name: - Nom du salon : + Nom du salon : + Lobby topic: - Sujet du salon : - - - Security policy: - Politique de sécurité : - - - Public (Visible by friends) - Public (visible par les amis) - - - Private (Works on invitation only) - Privé (sur invitation uniquement) - - - Select the Friends with which you want to group chat. - Selectionner les amis avec qui vous voulez communiquer. - - - Invited friends - Amis invités - - - Contacts: - Contacts : - - - Identity to use: - Identité à utiliser : + Sujet du salon : + Visibility: - + Visibilité : + + Public (Visible by friends) + Public (visible par les amis) + + + + Private (Works on invitation only) + Privé (sur invitation uniquement) + + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> - + + require PGP-signed identities - + nécessite des identités signées PGP + Security: - + Sécurité : + + Select the Friends with which you want to group chat. + Selectionner les amis avec qui vous voulez communiquer. + + + + Invited friends + Amis invités + + + Put a sensible lobby name here - + Mettez un nom sensé pour le salon ici + Set a descriptive topic here - - - - - CreateMsgLinkDialog - - Create distant chat invite - + Mettez un titre descriptif ici - <html><head/><body><p align="justify">To create a private chat invite for a non-friend person, select his key below and a validity time for your invite, then press &quot;Create&quot;. The invite will contain the information required to open a tunnel to chat with you. </p><p align="justify">The invite is encrypted, and does not reveal your identity. Only the selected peer can decrypt the link, and use it to contact you.</p></body></html> - + + Contacts: + Contacts : - Invite type: - - - - Private chat - Tchat privé - - - Validity time : - - - - hour - - - - day - - - - week - - - - month - - - - year - - - - Create! - - - - Create distant chat - - - - Private chat invite creation failed - - - - The creation of the chat invite failed - - - - Private chat invite created - - - - Your new chat invite has been created. You can now copy/paste it as a Retroshare link. - - - - Messaging invite creation failed - - - - The creation of the messaging invite failed - - - - Messaging invite created - - - - Your new messaging chat invite has been copied to clipboard. You can now paste it as a Retroshare link. - + + Identity to use: + Identité à utiliser : CryptoPage + Public Information - Information publique + Information publique + Name: - Nom : + Nom : + Location: - Emplacement : + Emplacement : + Location ID: - ID de l'emplacement : + ID de l'emplacement : + Software Version: - Version du logiciel : + Version du logiciel : + Online since: - En ligne depuis : + En ligne depuis : + Other Information - Autres informations + Autres informations + Certificate - Certificat + Certificat + Include signatures - Inclure les signatures + Inclure les signatures + Save Key into a file - Enregistrer votre clé dans un fichier + Enregistrer votre clé dans un fichier + A RetroShare link with your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - Un lien Retroshare avec votre clé publique est copié dans le presse-papier, collez et envoyez-la à vos amis par courrier électronique ou par tout autre moyen + Un lien Retroshare avec votre clé publique est copié dans le presse-papier, collez et envoyez-la à vos amis par courrier électronique ou par tout autre moyen + Error - Erreur + Erreur + Your certificate could not be parsed correctly. Please contact the developers. - Votre certificat n'a pas pu être analysé correctement. S'il vous plaît contactez les développeurs. + Votre certificat n'a pas pu être analysé correctement. S'il vous plaît contactez les développeurs. + RetroShare - Retroshare + Retroshare + Your Public Key is copied to Clipboard, paste and send it to your friend via email or some other way - Votre clé publique est copiée dans le presse-papier, collez et envoyez-la à vos amis par courrier électronique ou par tout autre moyen + Votre clé publique est copiée dans le presse-papier, collez et envoyez-la à vos amis par courrier électronique ou par tout autre moyen + Save as... - Enregistrer sous... + Enregistrer sous... + RetroShare Certificate (*.rsc );;All Files (*) - Certificat Retroshare (*.rsc );;Tous les fichiers (*) + Certificat Retroshare (*.rsc );;Tous les fichiers (*) + TextLabel - Etiquette + Etiquette + PGP fingerprint: - Empreinte PGP : + Empreinte PGP : + Node information - Information de noeud + Information de noeud + PGP Id : - ID PGP : + ID PGP : + Friend nodes: - Noeuds amis + Noeuds amis + Copy certificate to clipboard - Copier le certificat vers le presse-papiers + Copier le certificat vers le presse-papiers + Save certificate to file - Sauvegarder le certificat dans un fichier + Sauvegarder le certificat dans un fichier + Node - Noeud + Noeud + Create new node... - Créer nouveau noeud ... + Créer nouveau noeud ... + show statistics window - afficher la fenêtre de statistiques + afficher la fenêtre de statistiques DHTGraphSource + users - utilisateurs + utilisateurs DHTStatus + DHT - DHT - - - DHT Off - DHT Off - - - DHT Searching for RetroShare Peers - Recherche dans la DHT pour les pairs Retroshare - - - RetroShare users in DHT (Total DHT users) - Utilisateurs Retroshare trouvés dans la DHT (utilisateurs totaux de la DHT) - - - DHT Good - DHT OK - - - DHT Error - La DHT est en erreur + DHT + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> - + + + DHT Off + DHT Off + + + + DHT Searching for RetroShare Peers + Recherche dans la DHT pour les pairs Retroshare + + + + + RetroShare users in DHT (Total DHT users) + Utilisateurs Retroshare trouvés dans la DHT (utilisateurs totaux de la DHT) + + + + DHT Good + DHT OK + + + No peer found in DHT - + DLListDelegate + B - o + o + KB - Ko + Ko + MB - Mo + Mo + GB - Go + Go + File Never Seen - Fichier jamais vu + Fichier jamais vu DetailsDialog + Details - Détails + Détails + General - Général + Général + Done - Terminé + Terminé + Active - En cours + En cours + Outstanding - En attente + En attente + Needs checking - Doit être vérifié + Doit être vérifié + retroshare link(s) - Lien(s) Retroshare + Lien(s) Retroshare + retroshare link - lien Retroshare + lien Retroshare + Copy link to clipboard - Copier le lien dans le clipboard + Copier le lien dans le clipboard + Rating - Évaluation + Évaluation + Comments - Commentaires + Commentaires + File Name - Nom du fichier + Nom du fichier DhtWindow + Net Status - État du réseau + État du réseau + Connect Options - Options de connexion + Options de connexion + Network Mode - Mode réseau + Mode réseau + Nat Type - Type Nat + Type Nat + Nat Hole - Nat Hole + Nat Hole + Peer Address - Adresse du contact + Adresse du contact + Name - Nom + Nom + PeerId - ID du pair + ID du pair + DHT Status - Statut DHT + Statut DHT + ConnectLogic - Logique de connexion + Logique de connexion + Connect Status - Statut de connexion + Statut de connexion + Connect Mode - Mode de connexion + Mode de connexion + Request Status - Statut des requêtes + Statut des requêtes + Cb Status - Cb Statut + Cb Statut + RsId - Rs ID + Rs ID + Bucket - Bucket + Bucket + IP:Port - IP :Port + IP :Port + Key - Clé + Clé + Status Flags - Status Flags + Status Flags + Found - Trouvé + Trouvé + + Last Sent - Dernier envoi + Dernier envoi + Last Recv - Dernier reçu + Dernier reçu + Relay Mode - Mode relais + Mode relais + Source - Source + Source + Proxy - Proxy + Proxy + Destination - Destination + Destination + Class - Class + Class + Age - Ancienneté + Ancienneté + Bandwidth - Bande passante - - - Unknown NetState - Netstate inconnu - - - Offline - Hors ligne - - - Local Net - Net local - - - Behind NAT - Derrière un NAT - - - External IP - IP externe - - - UNKNOWN NAT STATE - ÉTAT DU NAT INCONNU - - - SYMMETRIC NAT - NAT SYMETRIQUE - - - DETERMINISTIC SYM NAT - DETERMINISTIC SYM NAT - - - RESTRICTED CONE NAT - RESTRICTED CONE NAT - - - FULL CONE NAT - FULL CONE NAT - - - OTHER NAT - AUTRE NAT - - - NO NAT - PAS DE NAT - - - UNKNOWN NAT HOLE STATUS - STATUT NAT HOLE INCONNU - - - NO NAT HOLE - PAS DE TROU DANS LE NAT - - - UPNP FORWARD - RENVOI UPNP - - - NATPMP FORWARD - RENVOI NATPMP - - - MANUAL FORWARD - RENVOI MANUEL - - - NET BAD: Unknown State - RÉSEAU MAUVAIS : État inconnu - - - NET BAD: Offline - RÉSEAU MAUVAIS : Hors ligne - - - NET BAD: Behind Symmetric NAT - RÉSEAU MAUVAIS : Derrière un NAT symétrique - - - NET BAD: Behind NAT & No DHT - RÉSEAU MAUVAIS : Derrière un NAT et pas de DHT - - - NET WARNING: NET Restart - AVERTISSEMENT RÉSEAU : Redémarrage du RÉSEAU - - - NET WARNING: Behind NAT - AVERTISSEMENT RÉSEAU : Derrière un NAT - - - NET WARNING: No DHT - AVERTISSEMENT RÉSEAU : Pas de DHT - - - NET STATE GOOD! - ÉTAT DU NET BON ! - - - CAUTION: UNVERIFIABLE FORWARD! - ATTENTION : RENVOI INVÉRIFIABLE ! - - - CAUTION: UNVERIFIABLE FORWARD & NO DHT - ATTENTION : RENVOI INVÉRIFIABLE ET PAS DE DHT - - - Not Active (Maybe Connected!) - Non actif (peut-être connecté !) - - - Searching - Recherche - - - Failed - Échoué - - - offline - hors ligne - - - Unreachable - Inaccessible - - - ONLINE - EN LIGNE - - - Direct - Directe - - - None - Aucune - - - Disconnected - Déconnecté - - - Udp Started - Udp démarré - - - Connected - Connecté - - - Request Active - Requête active - - - No Request - Aucune requête - - - Unknown - Inconnu - - - RELAY END - FIN DU RELAIS - - - Yourself - Moi - - - unknown - inconnu - - - unlimited - illimité - - - Own Relay - Propre relais - - - RELAY PROXY - PROXY DE RELAIS - - - %1 secs ago - %1 secs avant - - - %1B/s - %1 o/s - - - 0x%1 EX:0x%2 - 0x%1 EX:0x%2 - - - never - jamais - - - DHT - DHT - - - Net Status: - Statut réseau : - - - Network Mode: - Mode réseau : - - - Nat Type: - Type de NAT : - - - Nat Hole: - Trou NAT : - - - Connect Mode: - Mode de connexion : - - - Peer Address: - Adresse du pair : - - - Unreach: - Non atteint : - - - Online: - En ligne : - - - Offline: - Hors ligne : - - - DHT Peers: - Pairs de la DHT : - - - Disconnected: - Déconnecté : - - - Direct: - Direct : - - - Proxy: - Proxy : - - - Relay: - Relais : - - - DHT Graph - Graphe DHT - - - Filter: - Filtre : - - - Search Network - Chercher dans le réseau - - - Peers - Contacts - - - Relay - Relais + Bande passante + IP - IP + IP + Search IP - + Rechercher IP + Copy %1 to clipboard - + - Proxy VIA - + + Unknown NetState + Netstate inconnu - Relay VIA - + + Offline + Hors ligne + + Local Net + Net local + + + + Behind NAT + Derrière un NAT + + + + External IP + IP externe + + + + UNKNOWN NAT STATE + ÉTAT DU NAT INCONNU + + + + SYMMETRIC NAT + NAT SYMETRIQUE + + + + DETERMINISTIC SYM NAT + DETERMINISTIC SYM NAT + + + + RESTRICTED CONE NAT + RESTRICTED CONE NAT + + + + FULL CONE NAT + FULL CONE NAT + + + + OTHER NAT + AUTRE NAT + + + + NO NAT + PAS DE NAT + + + + UNKNOWN NAT HOLE STATUS + STATUT NAT HOLE INCONNU + + + + NO NAT HOLE + PAS DE TROU DANS LE NAT + + + + UPNP FORWARD + RENVOI UPNP + + + + NATPMP FORWARD + RENVOI NATPMP + + + + MANUAL FORWARD + RENVOI MANUEL + + + + NET BAD: Unknown State + RÉSEAU MAUVAIS : État inconnu + + + + NET BAD: Offline + RÉSEAU MAUVAIS : Hors ligne + + + + NET BAD: Behind Symmetric NAT + RÉSEAU MAUVAIS : Derrière un NAT symétrique + + + + NET BAD: Behind NAT & No DHT + RÉSEAU MAUVAIS : Derrière un NAT et pas de DHT + + + + NET WARNING: NET Restart + AVERTISSEMENT RÉSEAU : Redémarrage du RÉSEAU + + + + NET WARNING: Behind NAT + AVERTISSEMENT RÉSEAU : Derrière un NAT + + + + NET WARNING: No DHT + AVERTISSEMENT RÉSEAU : Pas de DHT + + + + NET STATE GOOD! + ÉTAT DU NET BON ! + + + + CAUTION: UNVERIFIABLE FORWARD! + ATTENTION : RENVOI INVÉRIFIABLE ! + + + + CAUTION: UNVERIFIABLE FORWARD & NO DHT + ATTENTION : RENVOI INVÉRIFIABLE ET PAS DE DHT + + + + Not Active (Maybe Connected!) + Non actif (peut-être connecté !) + + + + Searching + Recherche + + + + Failed + Échoué + + + + offline + hors ligne + + + + Unreachable + Inaccessible + + + + ONLINE + EN LIGNE + + + + Direct + Directe + + + + None + Aucune + + + + Disconnected + Déconnecté + + + + Udp Started + Udp démarré + + + + Connected + Connecté + + + + Request Active + Requête active + + + + No Request + Aucune requête + + + + Unknown + Inconnu + + + + RELAY END + FIN DU RELAIS + + + + + Yourself + Moi + + + + + unknown + inconnu + + + + unlimited + illimité + + + + Own Relay + Propre relais + + + + RELAY PROXY + PROXY DE RELAIS + + + + + + + + %1 secs ago + %1 secs avant + + + + %1B/s + %1 o/s + + + Relays - + + + + + 0x%1 EX:0x%2 + 0x%1 EX:0x%2 + + + + never + jamais + + + + + + + DHT + DHT + + + + Net Status: + Statut réseau : + + + + Network Mode: + Mode réseau : + + + + Nat Type: + Type de NAT : + + + + Nat Hole: + Trou NAT : + + + + Connect Mode: + Mode de connexion : + + + + Peer Address: + Adresse du pair : + + + + Unreach: + Non atteint : + + + + Online: + En ligne : + + + + Offline: + Hors ligne : + + + + DHT Peers: + Pairs de la DHT : + + + + Disconnected: + Déconnecté : + + + + Direct: + Direct : + + + + Proxy: + Proxy : + + + + Relay: + Relais : + + + + Filter: + Filtre : + + + + Search Network + Chercher dans le réseau + + + + + Peers + Contacts + + + + Relay + Relais + + + + DHT Graph + Graphe DHT + + + + Proxy VIA + VIA Proxy + + + + Relay VIA + VIA Relais DirectoriesPage + Incoming Directory - Dossier des fichiers terminés + Dossier des fichiers terminés + + Browse - Parcourir + Parcourir + Partials Directory - Dossier temporaire + Dossier temporaire + Shared Directories - Dossiers partagés + Dossiers partagés + Automatically share incoming directory (Recommended) - Partager automatiquement le dossier de réception (recommandé) + Partager automatiquement le dossier de réception (recommandé) + Edit Share - Modifier les partages + Modifier les partages + 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. - Sauvegarde le hachage des fichiers, même s'ils ne sont pas partagés. + Sauvegarde le hachage des fichiers, même s'ils ne sont pas partagés. Cela peut être intéressant si vous partagez des fichiers situés sur un disque dur externe afin d'éviter un re-hachage des fichiers quand vous le rebrancher. + Remember hashed files for - Sauvegarder le hachage pendant + Sauvegarder le hachage pendant + days - jours + jours + Forget any hashed file that is not anymore shared. - Effacer le hachage des fichiers qui ne sont plus partagés. + Effacer le hachage des fichiers qui ne sont plus partagés. + Clean Hash Cache - Effacer le cache de la table de hachage + Effacer le cache de la table de hachage + Auto-check shared directories every - Vérifier automatiquement les dossiers partagés toutes les + Vérifier automatiquement les dossiers partagés toutes les + minute(s) - minute(s) + minute(s) + + Cache cleaning confirmation - Confirmation du nettoyage du cache + Confirmation du nettoyage du cache + + This will forget any former hash of non shared files. Do you confirm ? - Cela effacera tous les anciens hash des fichiers non partagés. Confirmez-vous ? + Cela effacera tous les anciens hash des fichiers non partagés. Confirmez-vous ? + Set Incoming Directory - Spécifier le dossier entrant + Spécifier le dossier entrant + Set Partials Directory - Spécifier le dossier temporaire + Spécifier le dossier temporaire + Directories - Dossiers + Dossiers DiscStatus + Waiting outgoing discovery operations - En attente des opérations de découvertes sortantes + En attente des opérations de découvertes sortantes + Waiting incoming discovery operations - En attente des opérations de découvertes entrantes + En attente des opérations de découvertes entrantes DownloadToaster + Start file - Ouvrir le fichier - - - - ExampleDialog - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" 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> - - - - # - - - - Status - Statut - - - Person - - - - Auto Connect - - - - Trust Level - - - - Peer Address - - - - Last Contact - Dernier contact - - - Organization - - - - Location - - - - Country - - - - Person Id - - - - Auth Code - - - - Vote Up - Voter + - - - Vote Down - Voter - + Ouvrir le fichier ExprParamElement + + + to - à + à + ignore case - Ignorer la casse + Ignorer la casse + + dd.MM.yyyy - jj.MM.aaaa + jj.MM.aaaa + + KB - Ko + Ko + + MB - Mo + Mo + + GB - Go + Go ExpressionWidget + Expression Widget - Expression Widget + Expression Widget + Delete this expression - Supprimer cette expression + Supprimer cette expression FileAssociationsPage + &New - &Nouveau + &Nouveau + Add new Association - Ajouter une nouvelle association + Ajouter une nouvelle association + &Edit - &Editer + &Editer + Edit this Association - Modifier cette association + Modifier cette association + &Remove - Supp&rimer + Supp&rimer + Remove this Association - Supprimer cette association + Supprimer cette association + File type - Type de fichier + Type de fichier + Friend Help - Aide + Aide + You this - Moi + Moi + Associations - Associations + Associations FileTransferInfoWidget + Chunk map - Répartition des paquets + Répartition des paquets + Active chunks - Paquets en cours de chargement + Paquets en cours de chargement + Availability map (%1 active source) - Disponibilité des paquets (%1 source active) + Disponibilité des paquets (%1 source active) + Availability map (%1 active sources) - Disponibilité des paquets (%1 source(s) active(s)) + Disponibilité des paquets (%1 source(s) active(s)) + File info - Informations sur le fichier + Informations sur le fichier + File name - Nom du fichier + Nom du fichier + Destination folder - Dossier de destination + Dossier de destination + File hash - Hash du fichier + Hash du fichier + File size - Taille du fichier + Taille du fichier + + + + bytes - octets + octets + Chunk size - Taille des paquets + Taille des paquets + Number of chunks - Nombre de paquets + Nombre de paquets + Transferred - Transféré + Transféré + Remaining - Restant + Restant + Number of sources - Nombre de sources + Nombre de sources + Chunk strategy - Méthode de téléchargement + Méthode de téléchargement + Transfer type - Type de transfert + Type de transfert + Anonymous F2F - F2F Anonyme + F2F Anonyme + Direct friend transfer / Availability assumed - Transfert direct / Disponibilité supposée + Transfert direct / Disponibilité supposée FilesDefs + Picture - Image + Image + Video - Vidéo + Vidéo + Audio - Audio + Audio + Archive - Archive + Archive + Program - Programme + Programme + CD/DVD-Image - CD/DVD-Image + CD/DVD-Image + + Document - Document + Document + RetroShare collection file - Fichier de collection Retroshare + Fichier de collection Retroshare + Subtitles - Sous-titres + Sous-titres + Nintendo DS Rom - Nintendo DS Rom + Nintendo DS Rom + Patch - Patch + Patch + C++ - C++ + C++ + Header - En-tête + En-tête + C - C + C FlatStyle_RDM + Friends Directories - Dossiers partagés de mes amis + Dossiers partagés de mes amis + My Directories - Vos dossiers + Vos dossiers + Size - Taille + Taille + Age - Ancienneté + Ancienneté + Friend - Ami + Ami + Share Flags - Type de partage + Type de partage + Directory - Dossier - - - - Form - - Form - Formulaire - - - Manage the physical folders in your library. - - - - Share Files - - - - Shares - - - - Organiser - - - - All Files - - - - Favorites - Favoris - - - Ghost Files - - - - My Applications - - - - All Applications - - - - My eBooks - - - - All eBooks - - - - My Documents - - - - All Documents - - - - My Images - - - - All Images - - - - My Music - - - - All Music - - - - By Album - - - - By Artist - - - - By Genre - - - - My Video - - - - All Video - - - - Films - - - - Music Videos - - - - TV Shows - - - - Search - - - - Tile View - - - - Show Details - Afficher détails - - - <!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;"><img src=":/Actions/Graphics/Actions/OpenDownloadFolder.png" /><span style=" font-size:8pt;"> </span><span style=" font-size:10pt; font-weight:600;">Exploring My Shared Folders</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;"><img src=":/Icons/Resource/Folder Libary_32.png" /><span style=" font-size:8pt;"> </span><span style=" font-size:10pt; font-weight:600;">Exploring With The Organiser</span></p></body></html> - - - - Create Album - Créer un album - - - Delete Album - + Dossier ForumPage + Misc - Divers + Divers + Set message to read on activate - Changer l'état de lecture du message + Changer l'état de lecture du message + Expand new messages - Développer les nouveaux messages + Développer les nouveaux messages + Forum - Forum + Forum + Load embedded images - Charger les images incorporées + Charger les images incorporées + Tabs - Onglets + Onglets + Open each forum in a new tab - Ouvrir chaque forum dans un nouvel onglet + Ouvrir chaque forum dans un nouvel onglet FriendList - Status - Statut - - + Last Contact - Dernier contact - - - Avatar - Avatar + Dernier contact + Hide Offline Friends - Cacher mes amis hors ligne - - - State - Statut - - - Sort by State - Trier par statut - - - Hide State - Cacher le statut - - - Sort Descending Order - Trier par ordre décroissant - - - Sort Ascending Order - Trier par ordre croissant - - - Show Avatar Column - Afficher la colonne des avatars - - - Name - Nom - - - Sort by Name - Trier par nom - - - Sort by last contact - Trier par dernier contact - - - Show Last Contact Column - Afficher la colonne des derniers contact - - - Set root is Decorated - Afficher l'arborescence - - - Set Root Decorated - Afficher l'arborescence - - - Show Groups - Afficher les groupes - - - Group - Groupe - - - Friend - Ami - - - Edit Group - Modifier le groupe - - - Remove Group - Supprimer le groupe - - - Chat - Tchat - - - Recommend this Friend to... - Recommander cet ami à... - - - Copy certificate link - Copier le lien Retroshare - - - Add to group - Ajouter à un groupe - - - Move to group - Déplacer dans le groupe - - - Groups - Groupes - - - Remove from group - Supprimer du groupe - - - Remove from all groups - Supprimer de tous les groupes - - - Expand all - Tout déplier - - - Collapse all - Tout replier - - - Available - Disponible - - - Do you want to remove this Friend? - Désirez-vous supprimer cet ami ? - - - Columns - Colonnes - - - IP - IP - - - Sort by IP - Trier par IP - - - Show IP Column - Afficher la colonne des IPs - - - Attempt to connect - Tentative de connexion - - - Create new group - Créer un nouveau groupe - - - Display - Affichage - - - Paste certificate link - Collez le lien de votre certificat - - - Sort by - Trier par - - - Node - Noeud - - - Remove Friend Node - Enlever noeud d'ami - - - Do you want to remove this node? - Voulez-vous retirer ce noeud ? - - - Friend nodes - Noeuds amis - - - Send message to whole group - Envoyer le message au groupe entier - - - Details - Détails - - - Deny - Refuser - - - Send message - Envoyer message - - - Show State - + Cacher mes amis hors ligne + export friendlist - + Exporter la liste d'amis + export your friendlist including groups - + Exporter votre liste d'amis en incluant les groupes + import friendlist - + Importer la liste d'amis + import your friendlist including groups - + Importer votre liste d'amis en incluant les groupes + + + Show State + Afficher l'état + + + + + Show Groups + Afficher les groupes + + + + Group + Groupe + + + + Friend + Ami + + + + Edit Group + Modifier le groupe + + + + Remove Group + Supprimer le groupe + + + + + Chat + Tchat + + + + Recommend this Friend to... + Recommander cet ami à... + + + + Copy certificate link + Copier le lien Retroshare + + + + Add to group + Ajouter à un groupe + + + Search - + Rechercher + Sort by state - + Trier par état + + Move to group + Déplacer dans le groupe + + + + Groups + Groupes + + + + Remove from group + Supprimer du groupe + + + + Remove from all groups + Supprimer de tous les groupes + + + + Expand all + Tout déplier + + + + Collapse all + Tout replier + + + + Available + Disponible + + + + Do you want to remove this Friend? + Désirez-vous supprimer cet ami ? + + + + Done! - + Terminé ! + Your friendlist is stored at: - + Votre liste d'amis est enregistrée dans : + + + (keep in mind that the file is unencrypted!) - + +(Gardez à l'esprit que ce fichier n'est pas crypté !) + + Your friendlist was imported from: - + Votre liste d'amis a été importée depuis : + + Done - but errors happened! - + Terminé - mais avec des erreurs ! + at least one peer was not added - + +au moins un contact n'a pas été ajouté + at least one peer was not added to a group - + +au moins un contact n'a pas été ajouté au groupe + Select file for importing yoour friendlist from - + Sélectionnez le fichier d'importation de votre liste d'amis + Select a file for exporting your friendlist to - + Sélectionnez le fichier d'exportation de votre liste d'amis + XML File (*.xml);;All Files (*) - + Fichier XML (*.xml);;Tous les fichiers (*) + + + Error - Erreur + Erreur + Failed to get a file! - + Échec de la récupération du fichier ! + File is not writeable! - + + File is not readable! - + + + + + IP + IP + + + + Attempt to connect + Tentative de connexion + + + + Create new group + Créer un nouveau groupe + + + + Display + Affichage + + + + Paste certificate link + Collez le lien de votre certificat + + + + Node + Noeud + + + + Remove Friend Node + Enlever noeud d'ami + + + + Do you want to remove this node? + Voulez-vous retirer ce noeud ? + + + + Friend nodes + Noeuds amis + + + + Send message to whole group + Envoyer le message au groupe entier + + + + + Details + Détails + + + + Deny + Refuser + + + + + Send message + Envoyer message FriendRequestToaster + Confirm Friend Request - Accepter la demande d'amitié + Accepter la demande d'amitié + wants to be friend with you on RetroShare - veut devenir ton ami(e) sur Retroshare + veut devenir ton ami(e) sur Retroshare + Unknown (Incoming) Connect Attempt - Tentative de connexion (entrante) inconnue + Tentative de connexion (entrante) inconnue FriendSelectionWidget + Search : - Rechercher : - - - All - Tout - - - None - Aucune - - - Name - Nom - - - Search Friends - Rechercher des amis + Rechercher : + Sort by state - + Trier par état + + Name + Nom + + + + Search Friends + Rechercher des amis + + + Mark all - Tout marquer + Tout marquer + Mark none - + Marquer aucun FriendsDialog + Edit status message - Modifier le message d'état + Modifier le message d'état + + Broadcast - Tchat entre amis + Tchat entre amis + Clear Chat History - Effacer l'historique du tchat + Effacer l'historique du tchat + Add Friend - Ajouter un ami + Ajouter un ami + Add your Avatar Picture - Ajouter votre image d'avatar + Ajouter votre image d'avatar + A - A + A + Set your status message - Définir votre message d'état + Définir votre message d'état + Edit your status message - Modifier votre message d'état + Modifier votre message d'état + Browse Message History - Parcourir l'historique des messages + Parcourir l'historique des messages + Browse History - Parcourir l'historique + Parcourir l'historique + + Save Chat History - Sauvegarder l'historique du tchat + Sauvegarder l'historique du tchat + + Add a new Group - Ajouter un nouveau groupe + Ajouter un nouveau groupe + Delete Chat History - Supprimer l'historique du tchat + Supprimer l'historique du tchat + Deletes all stored and displayed chat history - Supprimer tous les historiques de tchat affichés et enregistrés + Supprimer tous les historiques de tchat affichés et enregistrés + + Create new Chat lobby - Créer un nouveau salon de tchat + Créer un nouveau salon de tchat + Choose Font - Choisir la police + Choisir la police + Reset font to default - Réinitialiser à la valeur par défaut + Réinitialiser à la valeur par défaut + Keyring - Trousseau - - - Retroshare broadcast chat: messages are sent to all connected friends. - Retroshare broadcast chat : les messages sont envoyés à tous vos amis en ligne. - - - Network - Réseau - - - Network graph - Graphe réseau - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Réseau</h1> <p>L'onglet réseau montre les noeuds de vos amis Retroshare : les noeuds Retroshare voisins qui sont connectés à vous.</p> <p>Vous pouvez grouper les noeuds ensemble pour permettre un niveau d'accès à l'information plus fin, par exemple pour permettre seulement à quelques noeuds de voir vos fichiers.</p> <p>Sur la droite, vous trouverez 3 onglets utiles : <ul> <li>Chat entre amis (broadcast) : envoie les messages immédiatement à tous les noeuds connectés</li> <li>Réseau local : ce graphique montre le réseau autours de vous, en se basant sur l'information de découverte</li> <li>Trousseau (de clés) : contient les clés des noeuds que vous avez collecté, elles ont été transférées vers vous principalement par les noeuds de vos amis</li> </ul> </p> - - - Set your status message here. - Mettez ici votre message de statut. + Trousseau + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - - GamesDialog - - Form - Formulaire + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Réseau</h1> <p>L'onglet réseau montre les noeuds de vos amis Retroshare : les noeuds Retroshare voisins qui sont connectés à vous.</p> <p>Vous pouvez grouper les noeuds ensemble pour permettre un niveau d'accès plus fin à l'information, par exemple pour permettre seulement à quelques noeuds de voir vos fichiers.</p> <p>Sur la droite, vous trouverez 3 onglets utiles : <ul> <li>Tchat entre amis (en anglais : "broadcast") : diffuse les messages immédiatement à tous les noeuds amis connectés</li> <li>Graphe réseau : ce graphe montre le réseau autours de vous, en se basant sur l'information de découverte</li> <li>Trousseau : contient les clés des noeuds que vous avez collecté, elles sont transférées jusqu'à vous principalement par les noeuds de vos amis</li> </ul> </p> - <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; font-weight:600;">Games Launcher</span></p></body></html> - + + Retroshare broadcast chat: messages are sent to all connected friends. + Retroshare broadcast chat : les messages sont envoyés à tous vos amis en ligne. - Game: - + + + Network + Réseau - GameType: 0. Want to Add your Game here? - + + Network graph + Graphe réseau - GameType: 1. Get In Touch with the developers - - - - GameType: 2. - - - - Title / Comment - - - - Create New Game - - - - Invite All Friends - - - - Game Type - - - - Server - - - - Status - Statut - - - Comment - Commentaire - - - GameID - - - - Player - - - - Invite - - - - Interested - - - - Accept - - - - Delete - - - - Move Player - - - - Play Game - - - - Cancel Game - - - - Add to Invite List - - - - Remove from Invite List - - - - Interested in Playing - - - - Not Interested in Game - - - - Not Interested - - - - Confirm Peer in Game - - - - Remove Peer from Game - - - - Interested in Game - - - - Quit Game - + + Set your status message here. + Mettez ici votre message de statut. GenCertDialog + Create new Profile Créer un nouveau profil + Name Pseudo + Enter your nickname here Entrez votre surnom ici + Email Courrier électronique + Be careful: this email will be visible to your friends and friends of your friends. This information is required by PGP, but to stay anonymous, you can use a fake email. @@ -5461,164 +6141,223 @@ de vos amis. Cette information est requise pour la génération de votre clé PG mais pour rester anonyme, vous pouvez utiliser un faux courrier électronique. + Password Mot de passe + [Optional] Visible to your friends, and friends of friends. [Optionnel] Visible par vos amis et les amis de vos amis. + [Required] Examples: Home, Laptop,... [Obligatoire] Exemples : Maison, Portable... + [Required] Visible to your friends, and friends of friends. [Obligatoire] Visible par vos amis et les amis de vos amis. + All fields are required with a minimum of 3 characters Tous les champs sont requis avec un minimum de 3 caractères + Password (check) Mot de passe (contrôle) + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/><body><p align="justify">Avant de continuer, déplacez votre souris pour aider Retroshare à recueillir autant de données aléatoires que possible. Remplir la barre de progression jusqu'à 20&#37; est nécessaire, 100&#37; est conseillé.</p></body></html> + [Required] Type the same password again here. - [Obligatoire] Tapez le même mot de passe ici. + [Obligatoire] Saisissez le même mot de passe ici. + Passwords do not match Les mots de passe ne correspondent pas + Port Port + + This password is for PGP Ce mot de passe est pour PGP + Node Noeud + + Create new node Créer nouveau noeud + + Generate new node Générer nouveau noeud + + Create a new node Créer un nouveau noeud + You can use it now to create a new node. Vous pouvez maintenant l'utiliser pour créer un nouveau noeud. + Invalid hidden node Noeud caché invalide - Please enter a valid address of the form: 31769173498.onion:7800 - Veuillez entrer une adresse valide sous la forme : 31769173498.onion:7800 - - + Node field is required with a minimum of 3 characters Le champ noeud est exigé avec un minimum de 3 caractères + Failed to generate your new certificate, maybe PGP password is wrong! - Échec lors de la génération de votre nouveau certificat, peut-être que votre mot de passe PGP est incorrect ? + Échec lors de la génération de votre nouveau certificat, peut-être que votre mot de passe PGP est faux ! + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" Vous pouvez créer un nouveau profil avec ce formulaire. -Vous pouvez aussi utiliser un profil existant. Il vous suffit de décocher "Créer un nouveau profil" +Autrement vous pouvez utiliser un profil existant. Il vous suffit de décocher "Créer un nouveau profil" + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. Vous pouvez créer et exécuter des noeuds Retroshare sur des ordinateurs différents mais utilisant le même profil. Pour faire cela il vous suffit d'exporter le profil choisi, puis l'importer sur l'autre ordinateur et créer un nouveau noeud avec. + It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - Il semble qu'aucun profil (clés PGP) n'est disponible. Veuillez remplir le formulaire ci-dessous afin d'en créer un, ou importer un profil existant. + Il semble qu'aucun profil (clés PGP) n'existe. Veuillez remplir le formulaire ci-dessous afin d'en créer un, ou importer un profil existant. + No node exists for this profile. Aucun noeud n'existe pour ce profil. + + Your profile is associated with a PGP key pair Votre profil est associé à une paire de clés PGP + + Create a new profile Créer un nouveau profil + Import new profile Importer un nouveau profil + Export selected profile Exporter le profil sélectionné + Advanced options Options avancées + Create a hidden node Créer un noeud caché + Use profile Utiliser le profil + + hidden address + adresse cachée + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. Votre profil est associé à une paire de clé PGP. Actuellement RetroShare ignore les clés DSA. + + Put a strong password here. This password protects your private PGP key. Mettez un mot de passe fort ici. Ce mot de passe protège votre clé PGP privée. + <html><head/><body><p>This is your connection port.</p><p>Any value between 1024 and 65535 </p><p>should be ok. You can change it later.</p></body></html> <html><head/><body><p>Ceci est votre port de connexion.</p><p>N'importe quelle valeur entre 1024 et 65535 </p><p> devrait être OK. Il vous sera possible de la changer plus tard.</p></body></html> + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length Longueur de la clé PGP + + + Create new profile Créer un nouveau profil + Currently disabled. Please move your mouse around until you reach at least 20% Actuellement désactivé. Veuillez déplacer votre souris au hasard jusqu'à ce que vous ayez atteint au moins 20% + Click to create your node and/or profile Cliquez pour créer votre noeud et/ou profil + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + [Requis] Adresse Tor/I2P - Exemples : xa76giaf6ifda7ri63i263.onion (obtenu par vous depuis TOR) + + + [Required] This password protects your private PGP key. [Requis] Ce mot de passe protège votre clé PGP privée. + Enter a meaningful node description. e.g. : home, laptop, etc. This field will be used to differentiate different installations with the same profile (PGP key pair). @@ -5626,219 +6365,246 @@ the same profile (PGP key pair). Ce champ sera utilisé pour différencier des installations différentes utilisant le même profil (pair clé PGP). + + Generate new profile and node Générer un nouveau profil et noeud + + Create a new profile and node Créer un nouveau profil et noeud + Alternatively you can use an existing profile. Just uncheck "Create a new profile" Autrement vous pouvez utiliser un profil existant. Il vous suffit de décocher "Créer un nouveau profil" + Welcome to Retroshare. Before you can proceed you need to create a profile and associate a node with it. To do so please fill out this form. Alternatively you can import a (previously exported) profile. Just uncheck "Create a new profile" - Bienvenue!. Avant de continuer vous devez créer un profil et lui associer un noeud . Pour cela veuillez remplir ce formulaire. -Vous pouvez aussi importer un profil (exporté précédemment). Il vous suffit de décocher "Créer un nouveau profil" + Bienvenue à Retroshare. Avant de continuer vous devez créer un profil et associer un noeud avec. Pour faire cela veuillez remplir ce formulaire. +Autrement vous pouvez importer un profil (exporté précédemment). Il vous suffit de décocher "Créer un nouveau profil" + No node is associated with the profile named Aucun noeud n'est associé au profil nommé + Please create a node for it by providing a node name. Veuillez créer un noeud pour lui en fournissant un nom de noeud. + Welcome to Retroshare. Before you can proceed you need to import a profile and after that associate a node with it. - Bienvenue !. Avant de pouvoir continuer vous devez importer un profil et ensuite lui associer un noeud. + Bienvenue à Retroshare. Avant de pouvoir continuer vous devez importer un profil et ensuite lui associer un noeud. + Export profile - Exporter le profil + Exporter profil + + RetroShare profile files (*.asc) - Fichiers de profils RetroShare (*.asc) + Fichiers de profils RetroShare (*.asc) + Profile saved Profil sauvegardé + Your profile was successfully saved It is encrypted You can now copy it to another computer and use the import button to load it Votre profil a été sauvegardé avec succès -Il est chiffré +Il est crypté Vous pouvez maintenant le copier sur un autre ordinateur et l'utiliser au moyen du bouton d'importation afin de le charger + Profile not saved Profil non sauvegardé + Your profile was not saved. An error occurred. Votre profil n'a pas été sauvegardé. Une erreur est arrivée. + Import profile - Importer un profil + Importer profil + Profile not loaded Profil non chargé + Your profile was not loaded properly: Votre profil n'a pas été chargé correctement : + New profile imported - Nouveau profil importé + Nouveau profil importée + Your profile was imported successfully: Votre profil a été importé avec succès : + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + Veuillez entrer une adresse valide sous la forme : 31769173498.onion:7800 ou [52caractères].b32.i2p + + + + + PGP key pair generation failure Échec lors de la génération de la paire de clés PGP + + Profile generation failure Échec lors de la génération du profil + Missing PGP certificate Certificat PGP manquant + Generating new PGP key pair, please be patient: this process needs generating large prime numbers, and can take some minutes on slow computers. Fill in your PGP password when asked, to sign your new key. Génération d'une nouvelle paire de clés PGP, veuillez patienter : ce processus nécessite de produire de grands nombres premiers et peut prendre quelques minutes sur des ordinateurs lents. -Saisissez votre mot de passe PGP une fois demandé, afin de signer votre nouvelle clé. +Remplissez votre mot de passe PGP une fois demandé, afin de signer votre nouvelle clé. + You can create a new profile with this form. Vous pouvez créer un nouveau profil au moyen de ce formulaire. - - Tor address - Adresse Tor - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - <html><head/><body><p>Ceci est une adresse Onion Tor sous la forme : xa76giaf6ifda7ri63i263.onion </p><p>Afin d'en obtenir une, vous devez configurer Tor afin qu'il crée un nouveau service caché. Si vous n'en avez pas encore un, vous pouvez toujours continuer et le faire plus tard depuis les Options de Retroshare panneau de configuration Tor -&gt;Serveur-&gt;.</p></body></html - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - [Requise] Exemples: xa76giaf6ifda7ri63i263.onion (obtenue par vous depuis Tor) - - - hidden address - Adresse cachée - - - <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> - <html><head/><body><p>Ceci est une adresse Tor de la forme: xa76giaf6ifda7ri63i263.onion <br/>ou une adresse I2P de la forme: [52 caractères].b32.i2p </p><p>Pour en obtenir une; vous devez préalablement configurer Tor ou I2P pour créer un nouveau service caché. Vous pouvez toutefois poursuivre maintenant et lancer Retroshare à condition de fournir cette adresse ultérieurement dans le panneau de configuration -&gt;Server-&gt;.</p></body></html> - - - [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - [Obligatoire] Adresse Tor/I2P - Exemple: xa76giaf6ifda7ri63i263.onion (Fournie pour vous par Tor) - - - Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p - Entrez une adresse valide de la forme: 31769173498.onion:7800 ou [52 characters].b32.i2p - GeneralPage + Startup Démarrage + Start RetroShare when my system starts Lancer Retroshare au démarrage du système + Start minimized Démarrer Retroshare dans la zone de notification + Start minimized on system start Minimiser Retroshare au démarrage du système + For Advanced Users Pour les utilisateurs avancés + Enable Advanced Mode (Restart Required) Activer le mode avancé (redémarrage requis) + Misc Divers + Do not show the Quit RetroShare MessageBox Ne pas afficher le message d'avertissement à la fermeture de Retroshare + Auto Login Connexion automatique + Register retroshare:// as URL protocol (Restart required) Enregistrer retroshare :// en tant que protocole (redémarrage requis) + You need administrator rights to change this option. Vous avez besoin des droits administrateur pour modifier cette option. + Idle Inactivité + Idle Time Inactif après + seconds secondes + Launch startup wizard Lancer l'assistant de configuration rapide + + Error Erreur + Could not add retroshare:// as protocol. Impossible d'ajouter Retroshare : // en tant que protocole. + Could not remove retroshare:// protocol. Impossible de supprimer Retroshare : // en tant que protocole. + General Général + Minimize to Tray Icon Réduire dans la zone de notification @@ -5846,25 +6612,30 @@ Saisissez votre mot de passe PGP une fois demandé, afin de signer votre nouvell GetStartedDialog + + Getting Started Mise en route + + Invite Friends Inviter des amis + <!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: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-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-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-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-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-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"> + <!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;"> @@ -5876,218 +6647,32 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Vous ne pouvez vous connecter avec vos amis que si vous vous êtes mutuellement ajoutés les uns aux autres.</span></p></body></html> + Add Your Friends to RetroShare - Ajouter vos amis à Retroshare + Ajouter vos amis à Retroshare + Add Friends - Ajouter des amis + Ajouter des amis + <!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: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-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-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"> -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;">Quand vos amis vous ont envoyé leurs invitations, cliquez pour ouvrir la fenêtre d'ajout d'amis.</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;">Coupez puis collez leurs "certificats d'identité" dans la fenêtre pour les ajouter en tant qu'amis.</span></p></body></html> - - - Connect To Friends - Se connecter aux amis - - - <!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: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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up 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: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-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-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-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-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-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-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"> -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;">Soyez en ligne en même temps, et Retroshare va automatiquement vous connecter !</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;">Votre client a besoin de trouver le réseau Retroshare avant qu'il puisse faire des connexions.</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;">Cela prend 5 à 30 minutes la première fois que vous démarrez 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;">L'indicateur de la DHT (dans la barre d'état) devient vert quand elle devient capable de faire des connexions.</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;">Après quelques minutes, l'indicateur NAT (également dans la barre d'état) se colore en jaune ou en vert.</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;">Si il reste rouge, alors vous avez un ennuyeux pare-feu, que Retroshare ne parvient pas à traverser.</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;">Regardez dans la section Aide supplémentaire pour plus de conseils sur la connexion.</span></p></body></html> - - - Advanced: Open Firewall Port - Avancé : ouvrir un port dans le pare-feu - - - <!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: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-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-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-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-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-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-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-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-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"> -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;">Vous pouvez améliorer les performances de Retroshare en ouvrant un port externe. </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;">Cela accélérera les connexions et permettra à plus de gens de se connecter avec vous</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;">La façon la plus simple de faire est en activant l'UPnP dans votre Box ou dans votre routeur.</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;">Parce que chaque routeur est différent, vous devrez trouver le modèle de votre routeur puis lancer une recherche sur le net pour trouver des instructions appropriées.</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;">Si rien de tout cela n'a de sens pour vous, ne vous inquiétez pas Retroshare fonctionnera quand même.</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> - - - Further Help and Support - Aide supplémentaire et 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-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-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-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-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-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-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-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-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-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-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-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-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"> -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;">Vous avez du mal à débuter avec 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) Consulter la FAQ dans le Wiki. Elle est un peu vieille, mais nous essayons de la mettre à jour.</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) Consulter les forums en ligne. Posez des questions et discuter des fonctionnalités.</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) Essayez les forums internes de Retroshare</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;"> - Ceux-ci apparaissent une fois que vous êtes connecté à des amis.</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) Si vous êtes toujours coincé. Envoyez nous un email.</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;">Profitez de Retroshare</span></p></body></html> - - - Open RS Website - Ouvrir le site web de RS - - - Open FAQ Wiki - Ouvrir le Wiki FAQ - - - Open Online Forums - Ouvrir les forums internes - - - Email Support - Support par email - - - Email Feedback - Commentaires par email - - - RetroShare Invitation - Invitation Retroshare - - - Your friend has installed RetroShare, and would like you to try it out. - Votre ami(e) vient d'installer le logiciel Retroshare et vous propose de l'essayer. - - - You can get RetroShare here: %1 - Vous pouvez obtenir Retroshare ici : %1 - - - RetroShare is a private Friend-2-Friend sharing network. - Retroshare est un réseau privé de type F2F (ami à ami). - - - forums and channels, all of which are as secure as the file-sharing. - des forums, des cannaux de diffusion, tous aussi sécurisés que le transfer de fichier. - - - Here is your friends ID Certificate. - Voilà le certificat d'identité de votre ami(e). - - - Cut and paste the text below into your RetroShare client - Coupez et collez le texte ci-dessous dans votre client Retroshare - - - and send them your ID Certificate to get securely connected. - et envoyer lui votre certificat d'identité pour permettre la connexion sécurisée. - - - Cut Below Here - Coupez ci-dessous - - - RetroShare Feedback - Retour-utilisateur Retroshare - - - RetroShare Support - Aide Retroshare - - - It has many features, including built-in chat, messaging, - Il a de nombreuses fonctionnalités, telles qu'un tchat intégré, messagerie, - - - <!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:12pt;">When your friends send you 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-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-size:12pt;">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"> 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:12pt;">Be Online at the same time as your friends, 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-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-size:12pt;">Your client needs to find the RetroShare Network before it can make connections.</span></p> @@ -6099,29 +6684,31 @@ 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: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-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-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"> 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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, don't worry about it Retroshare will still work.</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:12pt;">If none of this makes sense to you, 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-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-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"> 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: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-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-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are trying to bring it up to date.</span></p> @@ -6134,1901 +6721,2368 @@ 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: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-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-size:12pt;">Enjoy Retrosharing</span></p></body></html> - + + + + + Connect To Friends + Se connecter aux amis + + + + Advanced: Open Firewall Port + Avancé : ouvrir un port dans le pare-feu + + + + Further Help and Support + Aide supplémentaire et support + + + + Open RS Website + Ouvrir le site web de RS + + + + Open FAQ Wiki + Ouvrir le Wiki FAQ + + + + Open Online Forums + Ouvrir les forums internes + + + + Email Support + Support par email + + + + Email Feedback + Commentaires par email + + + + RetroShare Invitation + Invitation Retroshare + + + + Your friend has installed RetroShare, and would like you to try it out. + Votre ami(e) vient d'installer le logiciel Retroshare et vous propose de l'essayer. + + + + You can get RetroShare here: %1 + Vous pouvez obtenir Retroshare ici : %1 + + + + RetroShare is a private Friend-2-Friend sharing network. + Retroshare est un réseau privé de type F2F (ami à ami). + + + + forums and channels, all of which are as secure as the file-sharing. + des forums, des cannaux de diffusion, tous aussi sécurisés que le transfer de fichier. + + + + Here is your friends ID Certificate. + Voilà le certificat d'identité de votre ami(e). + + + + Cut and paste the text below into your RetroShare client + Coupez et collez le texte ci-dessous dans votre client Retroshare + + + + and send them your ID Certificate to get securely connected. + et envoyer lui votre certificat d'identité pour permettre la connexion sécurisée. + + + + Cut Below Here + Coupez ci-dessous + + + + RetroShare Feedback + Retour-utilisateur Retroshare + + + + RetroShare Support + Aide Retroshare + + + + It has many features, including built-in chat, messaging, + Il a de nombreuses fonctionnalités, telles qu'un tchat intégré, messagerie, GlobalRouterStatistics + Router Statistics - Statistiques du routeur - - - Unknown Peer - Contact inconnu + Statistiques du routeur + GroupBox - + + ID - ID + ID + Identity Name - + + Destinaton - + Destination + Data status - Statut données + Statut données + Tunnel status - Statut tunnel + Statut tunnel + Data size - Taille données + Taille données + Data hash - Hash données + Hash données + Received - Reçu + Reçu + Send - + Envoyé + Branching factor - + + Details - Détails + + + Unknown Peer + Contact inconnu + + + Pending packets - Paquets en suspens + Paquets en suspens + Unknown - + Inconnu GlobalRouterStatisticsWidget - Pending packets - Paquets en suspens - - + Managed keys - Clés gérées + Clés gérées + Routing matrix ( - Matrice de routage ( - - - Id - Id - - - Destination - Destination - - - Data status - Statut données - - - Tunnel status - Statut tunnel - - - Data size - Taille données - - - Data hash - Hash données - - - Received - Reçu - - - Send - Envoyé - - - : Service ID = - + Matrice de routage ( + [Unknown identity] - + - - - GraphWidget - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Cliquez et glissez les noeuds, zoomez avec la roulette de la souris ou les touches '+' et '-' + + : Service ID = + : ID de service = GroupChatToaster + Show Group Chat - Afficher le Tchat public + Afficher le Tchat public GroupDefs + Friends - Amis + Amis + Family - Famille + Famille + Co-Workers - Collègues + Collègues + Other Contacts - Autres contacts + Autres contacts + Favorites - Favoris + Favoris GroupFlagsWidget + Directory is browsable for friends from groups - Le répertoire est consultable pour les amis des groupes + Le répertoire est consultable pour les amis des groupes + Directory is NOT browsable for friends from groups - Le répertoire n'est PAS consultable pour les amis des groupes + Le répertoire n'est PAS consultable pour les amis des groupes + Directory is accessible by anonymous tunnels from friends from groups - Le répertoire est accessible par des tunnels anonymes provenant des amis des groupes + Le répertoire est accessible par des tunnels anonymes provenant des amis des groupes + Directory is NOT accessible by anonymous tunnels from friends from groups - Le répertoire n'est PAS accessible par des tunnels anonymes provenant des amis des groupes + Le répertoire n'est PAS accessible par des tunnels anonymes provenant des amis des groupes + Directory is browsable for any friend - Le répertoire est consultable par tous les amis + Le répertoire est consultable par tous les amis + Directory is NOT browsable for any friend - Le répertoire n'est consultable par AUCUN ami + Le répertoire n'est consultable par AUCUN ami + Directory is accessible by anonymous tunnels from any friend - Le répertoire est accessible par les tunnels anonymes de tous les amis + Le répertoire est accessible par les tunnels anonymes de tous les amis + Directory is NOT accessible by anonymous tunnels from any friend - Le répertoire n'est PAS accessible par les tunnels anonymes d'aucun ami + Le répertoire n'est PAS accessible par les tunnels anonymes d'aucun ami + + No one can browse this directory - Personne ne peux consulter ce dossier + Personne ne peux consulter ce dossier + No one can anonymously access this directory. - Personne ne peux anonymement accéder à ce dossier. + Personne ne peux anonymement accéder à ce dossier. + All friend nodes can browse this directory - Tous les noeuds amis peuvent consulter ce répertoire + Tous les noeuds amis peuvent consulter ce répertoire + Only friend nodes in groups %1 can browse this directory - Seulement les amis dans les groupes %1 peuvent consulter ce dossier + Seulement les amis dans les groupes %1 peuvent consulter ce dossier + All friend nodes can relay anonymous tunnels to this directory - Tous vos noeuds amis peuvent relayer des tunnels anonymes vers ce dossier + Tous vos noeuds amis peuvent relayer des tunnels anonymes vers ce dossier + Only friend nodes in groups - Seulement les noeuds amis dans les groupes + Seulement les noeuds amis dans les groupes + can relay anonymous tunnels to this directory - peuvent relayer des tunnels anonymes vers ce dossier + peuvent relayer des tunnels anonymes vers ce dossier GroupFrameSettingsWidget + Form - Formulaire + Formulaire + Hide tabbar with one open tab - Cacher la barre d'onglet avec un onglet ouvert - - - - GroupListView - - Anonymous - + Cacher la barre d'onglet avec un onglet ouvert GroupShareKey + Share - Partager + Partager + Contacts: - Contacts : + Contacts : + Please select at least one peer - Veuillez sélectionner au moins un contact + Veuillez sélectionner au moins un contact + Share channel admin permissions - Partager les permissions d'administration de la chaîne + Partager les permissions d'administration de la chaîne + Share forum admin permissions - Partager les permissions d'administration de forum + Partager les permissions d'administration de forum + You can let your friends know about your forum by sharing it with them. Select the friends with which you want to share your forum. - Vous pouvez laisser vos amis prendre connaissance de votre forum en le partageant avec eux. Choisissez les amis avec lesquels vous voulez partager votre forum. + Vous pouvez laisser vos amis prendre connaissance de votre forum en le partageant avec eux. Choisissez les amis avec lesquels vous voulez partager votre forum. + Share topic admin permissions - Partager les permissions d'administration de sujet + Partager les permissions d'administration de sujet + You can allow your friends to edit the topic. Select them in the list below. Note: it is not possible to revoke Posted admin permissions. - Vous pouvez permettre à vos amis d'éditer le sujet. Choisissez-les dans la liste ci-dessous. Note : il n'est pas possible de révoquer des permissions d'administration Postées (Posted admin permissions). + Vous pouvez permettre à vos amis d'éditer le sujet. Choisissez-les dans la liste ci-dessous. Note : il n'est pas possible de révoquer des permissions d'administration Postées (Posted admin permissions). + You can allow your friends to publish in your channel and to modify the description. Or you can send the admin permissions to another Retroshare instance. Select the friends which you want to be allowed to publish in this channel. Note: it is not possible to revoke channel admin permissions. - Vous pouvez permettre à vos amis de publier dans votre chaîne et d'en modifier la description. Ou vous pouvez envoyer les permissions d'administration à un autre instance Retroshare. Choisissez les amis auxquels vous voulez permettre de publier dans cette chaîne. Notez : il n'est pas possible de révoquer des permissions d'administration de chaîne. + Vous pouvez permettre à vos amis de publier dans votre chaîne et d'en modifier la description. Ou vous pouvez envoyer les permissions d'administration à un autre instance Retroshare. Choisissez les amis auxquels vous voulez permettre de publier dans cette chaîne. Notez : il n'est pas possible de révoquer des permissions d'administration de chaîne. GroupTreeWidget + Title - Titre + Titre + Search Title - Rechercher titre + Rechercher titre + Description - Description + Description + Search Description - Rechercher description + Rechercher description + Sort by Name - Trier par nom + Trier par nom + Sort by Popularity - Trier par popularité + Trier par popularité + Sort by Last Post - Trier par dernier message - - - Display - Affichage - - - You have admin rights - Vous avez les droits d'administration - - - Subscribe to download and read messages - S'abonner pour télécharger et lire les messages + Trier par dernier message + Sort by Posts - + + + + + Display + Affichage + + + + You have admin rights + Vous avez les droits d'administration + + + + Subscribe to download and read messages + S'abonner pour télécharger et lire les messages GuiExprElement + and - et + et + and / or - et / ou + et / ou + or - ou + ou + Name - Nom + Nom + Path - Chemin + Chemin + Extension - Extension + Extension + Hash - Hash + Hash + Date - Date + Date + Size - Taille + Taille + Popularity - Popularité + Popularité + contains - contient un des mots suivants + contient un des mots suivants + contains all - contient tous les mots + contient tous les mots + is - expression exacte + expression exacte + less than - inférieur à + inférieur à + less than or equal - inférieur ou égal à + inférieur ou égal à + equals - égaux + égaux + greater than or equal - supérieur ou égal à + supérieur ou égal à + greater than - supérieur à + supérieur à + is in range - dans l'intervalle + dans l'intervalle GxsChannelDialog + + Channels - Chaînes + Chaînes + Create Channel - Créer une chaîne + Créer une chaîne + Enable Auto-Download - Activer le téléchargement automatique + Activer le téléchargement automatique + My Channels - Vos chaînes - - - Subscribed Channels - Chaînes abonnées - - - Popular Channels - Chaînes populaires - - - Other Channels - Autres chaînes - - - Disable Auto-Download - Désactiver le téléchargement automatique - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chaînes</h1> <p>Les chaînes vous permettent de poster des données (ex: films, musiques) qui vont se diffuser dans le réseau</p> <p>Vous pouvez voir les chaînes auxquelles sont abonnés vos amis, et transférer automatiquement à vos amis les chaînes auxquelles vous êtes abonné. Ceci promeut les bonnes chaînes dans le réseau.</p> <p>Seul le créateur d'une chaîne peut poster dans cette chaîne. Les autre pairs dans le réseau peuvent seulement lire dedans, à moins que la chaîne ne soit privée. Vous pouvez cependant partager les droits de poster ou de lire avec des noeuds de vos amis Retroshare.</p> <p>Les chaînes peuvent être anonymes, ou attachées à une identité Retroshare afin que les lecteurs puissent prendre contact avec vous si besoin. Permettez "Autoriser commentaires" si vous voulez laisser les utilisateurs commenter vos postages.</p> <p>Les messages postés dans les chaînes sont effacés après %1 mois.</p> + Vos chaînes + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Chaînes</h1> <p>Les chaînes vous permettent de poster des données (ex&nbsp: films, musiques) qui seront diffusées dans le réseau</p> <p>Vous pouvez voir les chaînes auxquelles sont abonnés vos amis, et vous transférez automatiquement à vos amis les chaînes auxquelles vous êtes abonné. Ceci promeut les bonnes chaînes dans le réseau.</p> <p>Seul le créateur d'une chaîne peut poster dans cette chaîne. Les autre pairs dans le réseau peuvent seulement lire dedans, à moins que la chaîne ne soit privée. Vous pouvez cependant partager les droits de poster ou de lire avec des noeuds de vos amis Retroshare.</p> <p>Les chaînes peuvent être anonymes, ou attachées à une identité Retroshare afin que les lecteurs puissent prendre contact avec vous si besoin. Permettez "Autoriser commentaires" si vous voulez laisser la possibilité aux utilisateurs de commenter vos postages.</p> <p>Les messages postés dans les chaînes sont effacés après %1 mois.</p> + + Subscribed Channels + Chaînes abonnées + + + + Popular Channels + Chaînes populaires + + + + Other Channels + Autres chaînes + + + Select channel download directory - + Spécifier le répertoire de téléchargement pour cette chaîne + + Disable Auto-Download + Désactiver le téléchargement automatique + + + Set download directory - + Spécifier le répertoire de téléchargement + + [Default directory] - + [Répertoire par défaut] + Specify... - Spécifier... + Spécifier... GxsChannelFilesStatusWidget + Form - Formulaire + Formulaire + Download - Télécharger + Télécharger + TextLabel - Etiquette + Etiquette + Open folder - Ouvrir dossier + Ouvrir dossier + Error - Erreur + Erreur + Paused - En pause + En pause + Waiting - En attente + En attente + Checking - Vérification + Vérification + Are you sure that you want to cancel and delete the file? - Êtes-vous sûr(e) de vouloir annuler et supprimer ce fichier ? + Êtes-vous sûr(e) de vouloir annuler et supprimer ce fichier ? + Can't open folder - Impossible d'ouvrir le dossier + Impossible d'ouvrir le dossier GxsChannelFilesWidget + Form - Formulaire + Formulaire + Filename - Nom du fichier + Nom du fichier + Size - Taille + Taille + Title - Titre + Titre + Published - Publié + Publié + Status - Statut + Statut GxsChannelGroupDialog + Create New Channel - Créer une nouvelle chaîne + Créer une nouvelle chaîne + Channel - Chaînes + Chaînes + Edit Channel - Modifier la chaîne + Modifier la chaîne + Add Channel Admins - Ajouter des admins à la chaîne + Ajouter des admins à la chaîne + Select Channel Admins - Sélectionner les admins de la chaîne + Sélectionner les admins de la chaîne + Update Channel - Mettre à jour la chaîne + Mettre à jour la chaîne + Create - Créer + Créer GxsChannelGroupItem + Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare + Subscribe to Channel - S'abonner à la chaîne + S'abonner à la chaîne + + Expand - Étendre + Étendre + Remove Item - Enlever l'élément + Enlever l'élément + Channel Description - Description de la chaîne + Description de la chaîne + Loading - Chargement + Chargement + New Channel - Nouvelle chaîne + Nouvelle chaîne + Hide - Cacher + Cacher GxsChannelPostItem + Toggle Message Read Status - Changer l'état de lecture du message + Changer l'état de lecture du message + Download - Télécharger + Télécharger + + Play - Lecture + Lecture + + Comments - Commentaires + Commentaires + Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare + Unsubscribe From Channel - Se désabonner de la chaîne + Se désabonner de la chaîne + + Expand - Montrer + Montrer + Set as read and remove item - Définir comme lu et supprimer l'élément + Définir comme lu et supprimer l'élément + Remove Item - Supprimer + Supprimer + Channel Feed - Fil d'actualités des chaînes + Fil d'actualités des chaînes + Files - Fichiers + Fichiers + Warning! You have less than %1 hours and %2 minute before this file is deleted Consider saving it. - Avertissement ! Vous avez moins de %1 heure(s) et %2 minute(s) avant que ce fichier ne soit supprimé. Pensez à l'enregistrer. + Avertissement ! Vous avez moins de %1 heure(s) et %2 minute(s) avant que ce fichier ne soit supprimé. Pensez à l'enregistrer. + Hide - Cacher + Cacher + New - Nouveau + Nouveau + 0 - 0 + 0 + Comment - Commentaire + Commentaire + I like this - J'aime ça + J'aime ça + I dislike this - Je n'aime pas ça + Je n'aime pas ça + Loading - Chargement + Chargement + Open - Ouvrir + Ouvrir + Open File - Ouvrir le fichier + Ouvrir le fichier + Play Media - Lire le média + Lire le média GxsChannelPostsWidget + Post to Channel - Poster un article dans la chaîne + Poster dans la chaîne + Loading - Chargement + Chargement + Search channels - Chercher chaînes + Chercher chaînes + Title - Titre + Titre + Search Title - Rechercher titre + Chercher titre + Message - Message + Message + Search Message - Chercher message + Chercher message + Filename - Nom du fichier + Nom du fichier + Search Filename - Chercher nom de fichier + Chercher nom de fichier + No Channel Selected - Aucune chaîne sélectionnée + Aucune chaîne sélectionnée + Disable Auto-Download - Désactiver le téléchargement automatique + Désactiver le téléchargement automatique + Enable Auto-Download - Activer le téléchargement automatique + Activer le téléchargement automatique + Show feeds - Afficher les flux + Afficher les flux + Show files - Afficher les fichiers + Afficher les fichiers + Feeds - Flux + Flux + Files - Fichiers + Fichiers + Subscribers - Abonnés + Abonnés + Description: - Description : + Description : + Posts (at neighbor nodes): - Posts (chez vos noeuds voisins) : + Posts (chez vos noeuds voisins) : GxsChannelUserNotify + Channel Post - Message + Message GxsCommentContainer + Comment Container - Le conteneur de commentaires + Le conteneur de commentaires GxsCommentDialog + Form - Formulaire + Formulaire + Hot - Hot + Hot + New - Nouveau + Nouveau + Top - Top + Top + Voter ID: - ID du votant : + ID du votant : + Refresh - Rafraîchir + Rafraîchir + Comment - Commentaire + Commentaire + Author - Auteur + Auteur + Date - Date + Date + Score - Score + Score + UpVotes - Votes+ + Votes+ + DownVotes - Votes- + Votes- + OwnVote - VosVotes + VosVotes GxsCommentTreeWidget + Reply to Comment - Répondre au commentaire + Répondre au commentaire + Submit Comment - Envoyer un commentaire + Envoyer un commentaire + Vote Up - Voter + + Voter + + Vote Down - Voter - + Voter - GxsCreateCommentDialog + Make Comment - Commenter + Commenter + <!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:12pt; font-weight:600;">Comment</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600;">Commentaire</span></p></body></html> + Signed by - Signé par + Signé par + Comment Signing Error - Erreur de signature du commentaire + Erreur de signature du commentaire + You need to create an Identity before you can comment - Vous devez créer une identité + Vous devez créer une identité avant de pouvoir commenter GxsForumGroupDialog + Create New Forum - Créer un nouveau forum + Créer un nouveau forum + Forum - Forum + Forum + Edit Forum - Modifier le forum + Modifier le forum + Update Forum - Mettre à jour forum + Mettre à jour forum + Add Forum Admins - Ajouter admins de forum + Ajouter admins de forum + Select Forum Admins - Sélectionner admins de forum + Sélectionner admins de forum + Create - Créer + Créer GxsForumGroupItem + Subscribe to Forum - S'abonner au forum + S'abonner au forum + + Expand - Montrer + Montrer + Remove Item - Enlever élément + Enlever élément + Forum Description - Description du forum + Description du forum + Loading - Chargement + Chargement + New Forum - Nouveau forum + Nouveau forum + Hide - Cacher + Cacher GxsForumMsgItem + + Subject: - Sujet : + Sujet : + Unsubscribe To Forum - Se désabonner du forum + Se désabonner du forum + + Expand - Montrer + Montrer + Set as read and remove item - Définir comme lu et supprimer l'élément + Définir comme lu et supprimer l'élément + Remove Item - Enlever élément + Enlever élément + In Reply to: - En réponse à : + En réponse à : + Loading - Chargement + Chargement + Forum Feed - Flux de forum + Flux de forum + Hide - Cacher + Cacher GxsForumThreadWidget + Form - Formulaire + Formulaire + Start new Thread for Selected Forum - Lancer un nouveau fil dans le forum sélectionné + Lancer un nouveau fil dans le forum sélectionné + Search forums - Chercher + Chercher + Last Post - Dernier article + Dernier article + Threaded View - Affichage en arborescence + Affichage en arborescence + Flat View - Affichage à plat + Affichage à plat + + Title - Titre + Titre + + Date - Date + Date + + + Author - Auteur - - - Loading - Chargement - - - Reply Message - Répondre au message - - - Previous Thread - Fil précédent - - - Next Thread - Fil suivant - - - Download all files - Télécharger tous les fichiers - - - Next unread - Suivant non lu - - - Search Title - Rechercher titre - - - Search Date - Rechercher date - - - Search Author - Rechercher par auteur - - - Content - Contenu - - - Search Content - Rechercher contenu - - - No name - Aucun nom - - - Reply - Répondre - - - Start New Thread - Lancer un nouveau fil - - - Expand all - Tout déplier - - - Collapse all - Tout replier - - - Mark as read - Marquer comme lu - - - with children - et toute la sous-arborescence - - - Mark as unread - Marquer comme non lu - - - Copy RetroShare Link - Copier le lien Retroshare - - - Hide - Cacher - - - Expand - Montrer - - - Anonymous - Anonyme - - - signed - Signé - - - none - Aucun - - - [ ... Missing Message ... ] - [ ... Message manquant... ] - - - RetroShare - Retroshare - - - No Forum Selected! - Aucun forum selectionné ! - - - You cant reply to a non-existant Message - Vous ne pouvez pas répondre à un message inexistant - - - You cant reply to an Anonymous Author - Vous ne pouvez pas répondre à un auteur anonyme - - - Original Message - Message d'origine - - - From - De - - - Sent - Envoyé - - - Subject - Sujet - - - On %1, %2 wrote: - Le %1, %2 a écrit : - - - Forum name - Nom de forum - - - Subscribers - Abonnés - - - Posts (at neighbor nodes) - Posts (aux noeuds voisins) - - - Description - Description - - - By - Par - - - <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - <p>L'abonnement au forum rassemblera les posts disponibles depuis vos amis qui y sont abonnés et rendra le forum visible à tous les amis.</p> <p>Ensuite vous pourrez vous désabonner via le menu de contexte de la liste des forums à gauche.</p> - - - Reply with private message - Répondre avec message privé + Auteur + Save image - + + + + Loading + Chargement + + + + Reply Message + Répondre au message + + + + Previous Thread + Fil précédent + + + + Next Thread + Fil suivant + + + + Download all files + Télécharger tous les fichiers + + + + Next unread + Suivant non lu + + + + Search Title + Rechercher titre + + + + Search Date + Rechercher date + + + + Search Author + Rechercher par auteur + + + + Content + Contenu + + + + Search Content + Rechercher contenu + + + + No name + Aucun nom + + + + Reply + Répondre + + + Ban this author - + Bannir cet auteur + This will block/hide messages from this person, and notify neighbor nodes. - + + + Start New Thread + Lancer un nouveau fil + + + + Expand all + Tout déplier + + + + Collapse all + Tout replier + + + + + Mark as read + Marquer comme lu + + + + + with children + et toute la sous-arborescence + + + + + Mark as unread + Marquer comme non lu + + + + Copy RetroShare Link + Copier le lien Retroshare + + + + Hide + Cacher + + + + Expand + Montrer + + + This message was obtained from %1 - + + [Banned] - + [Banni] + Anonymous IDs reputation threshold set to 0.4 - + + Message routing info kept for 10 days - + + + Anti-spam - + + [ ... Redacted message ... ] - + [ ... Message rédigé ... ] + + Anonymous + Anonyme + + + + signed + Signé + + + + none + Aucun + + + + [ ... Missing Message ... ] + [ ... Message manquant... ] + + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> - + <p><font color="#ff0000"><b>L'auteur de ce message (avec l'ID %1) est banni.</b> + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> - + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> - + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> - + + + + + + + + + + RetroShare + Retroshare + + + + No Forum Selected! + Aucun forum selectionné ! + + + + + + You cant reply to a non-existant Message + Vous ne pouvez pas répondre à un message inexistant + + + + + You cant reply to an Anonymous Author + Vous ne pouvez pas répondre à un auteur anonyme + + + + Original Message + Message d'origine + + + + From + De + + + + Sent + Envoyé + + + + Subject + Sujet + + + + On %1, %2 wrote: + Le %1, %2 a écrit : + + + + Forum name + Nom de forum + + + + Subscribers + Abonnés + + + + Posts (at neighbor nodes) + Posts (chez les noeuds voisins) + + + + Description + Description + + + + By + Par + + + + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> + <p>L'abonnement au forum rassemblera les messages disponibles à partir de vos amis qui y sont abonnés et rendra le forum visible à tous vos autres amis.</p> <p>Ensuite vous pourrez vous désabonner via le menu de contexte de la liste des forums à gauche.</p> + + + + Reply with private message + Répondre avec message privé GxsForumUserNotify + Forum Post - Message + Message GxsForumsDialog - Forums - Forums - - - Create Forum - Créer un forum - - - My Forums - Vos forums - - - Subscribed Forums - Forums abonnés - - - Popular Forums - Forums populaires - - - Other Forums - Autres forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Les forums de Retroshare ressemblent aux forums d'internet, mais ils fonctionnent de façon décentralisée</p> <p>Vous voyez les forums auxquels sont abonnés vos amis, et vous transférez à vos amis les forums auxquels vous vous êtes abonné. Ceci promeut automatiquement dans le réseau les forums intéressants.</p> <p>Les messages des forums sont effacés automatiquement après %1 mois.</p> - - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Les forums de Retroshare ressemblent aux forums d'internet, mais ils fonctionnent de façon décentralisée</p> <p>Vous voyez les forums auxquels sont abonnés vos amis, et vous transférez à vos amis les forums auxquels vous vous êtes abonné. Ceci promeut automatiquement dans le réseau les forums intéressants.</p> <p>Les messages des forums sont effacés automatiquement après %1 mois.</p> + + + + + Forums + Forums + + + + Create Forum + Créer un forum + + + + My Forums + Vos forums + + + + Subscribed Forums + Forums abonnés + + + + Popular Forums + Forums populaires + + + + Other Forums + Autres forums GxsForumsFillThread + Waiting - En attente + En attente + Retrieving - Récupération + Récupération + Loading - Chargement + Chargement GxsGroupDialog + + Name - Nom + Nom + Add Icon - Ajouter une icône + Ajouter une icône + Key recipients can publish to restricted-type group and can view and publish for private-type channels - Ceux avec qui vous partagez votre clé peuvent publier sur les types de groupe à accès limité, et peuvent voir et publier sur les chaines à accès privé + Ceux avec qui vous partagez votre clé peuvent publier sur les types de groupe à accès limité, et peuvent voir et publier sur les chaines à accès privé + Share Publish Key - Partager la clé de publication + Partager la clé de publication + check peers you would like to share private publish key with - Visualiser les personnes avec qui vous partagez votre clé de publication privée + Visualiser les personnes avec qui vous partagez votre clé de publication privée + Share Key With - Clé partagée avec + Clé partagée avec + + Description - Description + Description + Message Distribution - Distribution de message + Distribution de message + + Public - Public + Public + + Restricted to Group - Limité au groupe + Limité au groupe + + Only For Your Friends - Seulement pour vos amis + Seulement pour vos amis + Publish Signatures - Signatures publiées + Signatures publiées + Open - Ouvrir + Ouvrir + New Thread - Nouveau fil + Nouveau fil + Required - Requis + Requis + Encrypted Msgs - Msgs encryptés + Msgs chiffrés + Personal Signatures - Signature personnelle + Signature personnelle + PGP Required - PGP requis + PGP requis + Signature Required - Signature requise + Signature requise + If No Publish Signature - Si aucune signature publique + Si aucune signature publique + + Comments - Commentaires + Commentaires + Allow Comments - Autoriser les commentaires + Autoriser les commentaires + No Comments - Pas de commentaires - - - Contacts: - Contacts : - - - Please add a Name - Veuillez ajoutez un nom - - - Load Group Logo - Charger le logo du groupe - - - Submit Group Changes - Soumettre des changements de groupe - - - Failed to Prepare Group MetaData - please Review - Echec à préparer les méta-données de groupe - veuillez examiner - - - Will be used to send feedback - Sera utilisé pour envoyer du retour d'information - - - Owner: - Propriétaire : - - - Set a descriptive description here - Mettez ici une description descriptive - - - Info - Info - - - Comments allowed - Commentaires autorisés - - - Comments not allowed - Commentaires non autorisés - - - ID - ID - - - Last Post - Dernier article - - - Popularity - Popularité - - - Posts - Posts - - - Type - Type - - - Author - Auteur - - - GxsIdLabel - GxsIdLabel + Pas de commentaires + Spam-protection - + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> - + + Favor PGP-signed ids - + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> - + + Keep track of posts - + + Anti spam - + + PGP-signed ids - + + Track of Posts - + + + + + Contacts: + Contacts : + + + + Please add a Name + Veuillez ajoutez un nom + + + + Load Group Logo + Charger le logo du groupe + + + + Submit Group Changes + Soumettre des changements de groupe + + + + + Failed to Prepare Group MetaData - please Review + Echec à préparer les méta-données de groupe - veuillez examiner + + + + Will be used to send feedback + Sera utilisé pour envoyer du retour d'information + + + + Owner: + Propriétaire : + + + + Set a descriptive description here + Mettez ici une description descriptive + + + + Info + Info + + + + Comments allowed + Commentaires autorisés + + + + Comments not allowed + Commentaires non autorisés + + + + ID + ID + + + + Last Post + Dernier article + + + + Popularity + Popularité + + + + Posts + Posts + + + + Type + Type + + + + Author + Auteur + + + + GxsIdLabel + GxsIdLabel GxsGroupFrameDialog + Loading - Chargement + Chargement + Todo - À faire + À faire + Print - Imprimer + Imprimer + PrintPreview - Aperçu avant impression + Aperçu avant impression + Unsubscribe - Se désabonner + Se désabonner + Subscribe - S'abonner + S'abonner + Open in new tab - Ouvrir dans un nouvel onglet + Ouvrir dans un nouvel onglet + Show Details - Afficher détails + Afficher détails + Edit Details - Modifier détails + Modifier détails + Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare + Mark all as read - Tout marquer comme lu + Tout marquer comme lu + Mark all as unread - Tout marquer comme non lu + Tout marquer comme non lu + AUTHD - Authentification + Authentification + Share admin permissions - Partager des permissions d'administration + Partager des permissions d'administration GxsIdChooser + No Signature - Sans signature + Sans signature + Create new Identity - Créer une nouvelle identité + Créer une nouvelle identité GxsIdDetails + Loading - Chargement + Chargement + Not found - Non trouvé + Non trouvé + No Signature - Sans signature - - - Authentication - Authentification - - - unknown Key - clé inconnue - - - anonymous - anonyme - - - Identity&nbsp;name - Nom&nbsp;d'identité - - - Identity&nbsp;Id - Id&nbsp;d'identité - - - Signed&nbsp;by - Signé&nbsp;par - - - [Unknown] - [Inconnu] + Sans signature + + + [Banned] - + [Banni] + + + + + Authentication + Authentification + + + + unknown Key + clé inconnue + + + + anonymous + anonyme + + + + Identity&nbsp;name + Nom&nbsp;d'identité + + + + Identity&nbsp;Id + Id&nbsp;d'identité + + + + Signed&nbsp;by + Signé&nbsp;par + + + + [Unknown] + [Inconnu] GxsMessageFramePostWidget + Loading - Chargement + Chargement + No name - Aucun nom + Aucun nom GxsTunnelsDialog + Authenticated tunnels: - + + Tunnel ID: %1 - + + from: %1 - + + to: %1 - + + status: %1 - + + total sent: %1 bytes - + + total recv: %1 bytes - + + Unknown Peer - Contact inconnu + HashBox + + Drop file error. - Erreur lors de l'ajout du fichier. + Erreur lors de l'ajout du fichier. + Directory can't be dropped, only files are accepted. - On ne peut pas déposer un dossier, seuls les fichiers sont acceptés. + On ne peut pas déposer un dossier, seuls les fichiers sont acceptés. + File not found or file name not accepted. - Le fichier n'a pas été trouvé ou le nom du fichier n'est pas accepté. + Le fichier n'a pas été trouvé ou le nom du fichier n'est pas accepté. HelpBrowser + + RetroShare Help - Aide Retroshare + Aide Retroshare + Find: - Trouver : + Trouver : + Find Previous - Précédent + Précédent + Find Next - Suivant + Suivant + Case sensitive - Respecter la casse + Respecter la casse + Whole words only - Mots entiers seulement + Mots entiers seulement + Contents - Contenus + Contenus + Help Topics - Rubriques d'aide + Rubriques d'aide + + Search - Recherche + Recherche + Searching for: - Chercher : + Chercher : + Found Documents - Documents trouvés + Documents trouvés + Back - Retour + Retour + Move to previous page (Backspace) - Retourner à la page précédente (Retour Arrière) + Retourner à la page précédente (Retour Arrière) + Backspace - Retour arrière + Retour arrière + Forward - Suivant + Suivant + Move to next page (Shift+Backspace) - Avancer à la page suivante (Maj+Retour arrière) + Avancer à la page suivante (Maj+Retour arrière) + Shift+Backspace - Maj+Retour arrière + Maj+Retour arrière + Home - Accueil + Accueil + Move to the Home page (Ctrl+H) - Aller à la page d'accueil (Ctrl+H) + Aller à la page d'accueil (Ctrl+H) + Ctrl+H - Ctrl+H + Ctrl+H + + + Find - Trouver + Trouver + Search for a word or phrase on current page (Ctrl+F) - Rechercher un mot ou une expression dans la page courante (Ctrl+F) + Rechercher un mot ou une expression dans la page courante (Ctrl+F) + Ctrl+F - Ctrl+F + Ctrl+F + Close - Fermer + Fermer + Close Vidalia Help - Fermer l'aide Vidalia + Fermer l'aide Vidalia + Esc - Echap + Echap + Supplied XML file is not a valid Contents document. - Le fichier XML fourni n'est pas un document valide. + Le fichier XML fourni n'est pas un document valide. + Search reached end of document - La recherche a atteint la fin du document + La recherche a atteint la fin du document + Search reached start of document - La recherche a atteint le début du document + La recherche a atteint le début du document + Text not found in document - Le texte n'a pas été trouvé dans le document + Le texte n'a pas été trouvé dans le document + Found %1 results - %1 résultats trouvés + %1 résultats trouvés + + Error Loading Help Contents: - Erreur lors du chargement de l'aide : + Erreur lors du chargement de l'aide : HelpDialog + About - À propos - - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare est une plateforme de communication, privée et sécurisée, </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-weight:600;">open source et trans-plateformes.</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-weight:600;">Il vous laisse partager de façon sécurisée avec vos amis, </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-weight:600;">en utilisant la technique web-of-trust (web de confiance) afin d'authentifier vos amis, et OpenSSL pour chiffrer toute la 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-weight:600;">RetroShare permet le partage de fichiers, tchat, messages et chaînes</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-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; font-weight:600;">Liens externes utiles pour davantage d'informations :</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Le site web de Retroshare</span></a></li> -<li style=" font-size:12pt; 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">Le Wiki de Retroshare</a></li> -<li style=" font-size:12pt; 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">Les forums de Retroshare</a></li> -<li style=" font-size:12pt; 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">La page du projet Retroshare</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Le blog de l'équipe de Retroshare</a></li> - <li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Le Twitter Dev de Retroshare</a></li></ul></body></html> + À propos + Authors - Auteurs + Auteurs + Thanks to - Remerciements + Remerciements + Translation - Traduction + Traduction + License Agreement - Accord de licence + Accord de licence + <!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-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"> + <!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-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;">À propos de 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;"> +</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-size:8pt; font-weight:600;">RetroShare Translations:</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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" text-decoration: underline; color:#0000ff;">http://retroshare.sourceforge.net/wiki/index.php/Translation</span></a></p> @@ -8039,7 +9093,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Swedish: </span><span style=" font-size:8pt;"> Daniel Wester</span><span style=" font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-size:8pt;">wester@speedmail.se</span><span style=" 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-size:8pt; font-weight:600;">German: </span><span style=" font-size:8pt;">Jan</span><span style=" font-size:8pt; font-weight:600;"> </span><span style=" font-size:8pt;">Keller</span> &lt;<span style=" font-size:8pt;">trilarion@users.sourceforge.net</span>&gt;</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-weight:600;">Polish: </span>Maciej Mrug</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:9pt; font-weight:400; font-style:normal;"> @@ -8055,14 +9109,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-weight:600;">Polish: </span>Maciej Mrug</p></body></html> - Libraries - Bibliothèques - - + <!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;"> +</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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-weight:600;">It lets you share securely your friends, </span></p> @@ -8072,186 +9123,148 @@ 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;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> <li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> <li style=" font-size:12pt; 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">Retroshare Project Page</a></li> <li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> <li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</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 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-weight:600;">RetroShare est un logiciel open source trans-plate-formes, </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-weight:600;">destiné à être une plate-forme private de communication décentralisée et sécurisée. </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-weight:600;">Il vous laisse partager de façon sécurisée avec vos amis, </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-weight:600;">en utilisant un web de confiance (web-of-trust) afin d'authentifier les pairs, et utilise OpenSSL pour chiffrer toutes les communications. </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-weight:600;">RetroShare permet le partage de fichiers, tchat, messages et chaînes</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-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; font-weight:600;">Des liens utiles vers davantage d'informations :</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Page web RetroShare</span></a></li> +<li style=" font-size:12pt; 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">Wiki de Retroshare</a></li> +<li style=" font-size:12pt; 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 de RetroShare</a></li> +<li style=" font-size:12pt; 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">Page du projet Retroshare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Blog de l'équipe de RetroShare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Twitter du développement de RetroShare</a></li></ul></body></html> + + + + Libraries + Bibliothèques HelpTextBrowser + Opening External Link - Ouverture d'un lien externe + Ouverture d'un lien externe + 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 peut ouvrir le lien que vous avez sélectionné dans votre navigateur web par défaut. Si votre navigateur n'est pas configuré pour utiliser Tor alors la demande ne sera pas anonyme. + Retroshare peut ouvrir le lien que vous avez sélectionné dans votre navigateur web par défaut. Si votre navigateur n'est pas configuré pour utiliser Tor alors la demande ne sera pas anonyme. + Do you want Retroshare to open the link in your Web browser? - Voulez-vous que Retroshare ouvre le lien dans votre navigateur web ? + Voulez-vous que Retroshare ouvre le lien dans votre navigateur web ? + Unable to Open Link - Impossible d'ouvrir le lien + Impossible d'ouvrir le lien + 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 n'a pas été capable d'ouvrir le lien choisi dans votre navigateur web. Vous pouvez toujours copier l'URL et le coller directement dans la barre d'adresse de votre navigateur. + Retroshare n'a pas été capable d'ouvrir le lien choisi dans votre navigateur web. Vous pouvez toujours copier l'URL et le coller directement dans la barre d'adresse de votre navigateur. + Error opening help file: - Erreur lors de l'ouverture du fichier d'aide : + Erreur lors de l'ouverture du fichier d'aide : IdDetailsDialog + + Person Details - Détails de la personne + Détails de la personne + Identity Info - Info d'identité + Info d'identité + Owner node ID : - ID du noeud propriétaire : + ID du noeud propriétaire : + Type: - Type : + Type : + Owner node name : - Nom du noeud propriétaire : + Nom du noeud propriétaire : + Identity name : - Nom de l'identité : + Nom de l'identité : + Identity ID : - ID de l'identité : + ID de l'identité : + + Last used: + Dernièrement utilisée : + + + Your Avatar Click here to change your avatar - Votre avatar + Votre avatar + Reputation - Réputation - - - Overall - Global - - - Implicit - Implicite - - - Opinion - Opinion - - - Peers - Contacts - - - Edit Reputation - Modifier la réputation - - - Tweak Opinion - Tordre opinion - - - Accept (+100) - Accepter (+100) - - - Positive (+10) - Positive (+10) - - - Negative (-10) - Négative (-10) - - - Ban (-100) - Bannir (-100) - - - Custom - Personnalisé - - - Modify - Modifier - - - Unknown real name - Vrai nom inconnu - - - Anonymous Id - ID anonyme - - - Identity owned by you, linked to your Retroshare node - Identité possédée par vous, liée à votre noeud Retroshare - - - Anonymous identity, owned by you - Identité anonyme, possédée par vous - - - Owned by a friend Retroshare node - Possédée(s) par un noeud Retroshare ami - - - Owned by 2-hops Retroshare node - Possédée par noeud Retroshare à 2-étapes - - - Owned by unknown Retroshare node - Possédée(s) par un noeud Retroshare inconnu - - - Anonymous identity - Identité anonyme - - - Last used: - Dernièrement utilisée : + Réputation + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - <html><head/><body><p>Moyenne des opinions exprimées par les noeuds voisins,</p><p>positif=ok. Zero=neutrel.</p></body></html> + + Your opinion: - Votre opinion + Votre opinion : + Neighbor nodes: - Noeuds voisins + Nodes voisins : + <!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:9pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> @@ -8261,1549 +9274,1775 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Votre opinion d'une identité influe sur sa visibilité dans l'application,</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">et sa capacité à être partagée avec les noeuds voisins. Un score final est calculé a partir de votre propre opinion et de la ,oyenne des opinions des noeuds voisins:</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = votre_opinion * a + moyenne_des_amis * (1-a)</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> + + Negative - Negative + Négative + Neutral - Neutre + Neutre + Positive - Positive + Positive + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> - <html><head/><body><p>Score de réputation, prenant en compte votre propre avis et celui des noeuds voisins'.</p><p>Négatif=mauvais; positif=ok. Si le score est trop bas,</p><p>l'identité est bannie, et sera progressivement éliminée des forums; chaînes, etc.</p></body></html> + + Overall: - Global + Générale : + + Unknown real name + Vrai nom inconnu + + + + Anonymous Id + ID anonyme + + + + Identity owned by you, linked to your Retroshare node + Identité possédée par vous, liée à votre noeud Retroshare + + + + Anonymous identity, owned by you + Identité anonyme, possédée par vous + + + + Owned by a friend Retroshare node + Possédée(s) par un noeud Retroshare ami + + + + Owned by 2-hops Retroshare node + Possédée par noeud Retroshare à 2-étapes + + + + Owned by unknown Retroshare node + Possédée(s) par un noeud Retroshare inconnu + + + + Anonymous identity + Identité anonyme + + + +50 Known PGP - +50 PGP connue + +50 PGP connues + +10 UnKnown PGP - +10 PGP inconnue + +10 PGP inconnues + +5 Anon Id - +5 ID anonyme + +5 ID anonymes + OK - OK + OK + Banned - Banni + Banni IdDialog + New ID - Nouvelle ID + Nouvelle ID + + All - Tout + Tout + + Reputation - Réputation - - - Todo - À faire + Réputation + Search - Rechercher - - - Unknown real name - Vrai nom inconnu - - - Anonymous Id - ID anonyme - - - Create new Identity - Créer une nouvelle identité - - - Overall - Global - - - Implicit - Implicite - - - Opinion - Opinion - - - Peers - Contacts - - - Edit reputation - Modifier la réputation - - - Tweak Opinion - Tordre opinion - - - Accept (+100) - Accepter (+100) - - - Positive (+10) - Positive (+10) - - - Negative (-10) - Négative (-10) - - - Ban (-100) - Bannir (-100) - - - Custom - Personnaliser - - - Modify - Modifier - - - Edit identity - Modifier l'identité - - - Delete identity - Supprimer l'identité - - - Chat with this peer - Tchater avec ce pair - - - Launches a distant chat with this peer - Lancer un tchat distant avec ce pair - - - Identity name - Nom de l'identité - - - Owner node ID : - ID du noeud propriétaire : - - - Identity name : - Nom de l'identité : - - - Identity ID - ID de l'identité - - - Send message - Envoyer message - - - Identity info - Info d'identité - - - Identity ID : - ID de l'identité : - - - Owner node name : - Nom du noeud propriétaire : - - - Type: - Type : - - - Owned by you - Vous appartient - - - Anonymous - Anonymes - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identités</h1> <p>Dans cet onglet vous pouvez créer/éditer des identités pseudo-anonymes. </p> <p>Les identités sont utilisées pour identifier vos données de façon sécurisée : signer vos messages dans les forums et chaînes, et recevoir du compte rendu en utilisant le système embarqué de messagerie de Retroshare, poster des commentaires à la suite de messages postés dans des chaînes, etc.</p> <p> En option, les identités peuvent être signées par le certificat de votre noeud Retroshare. Il est plus facile de faire confiance à des identités signées, mais il est aussi plus facile de faire le rapprochement avec l'adresse IP de votre noeud. </p> <p> Les identités anonymes vous permettent d'interagir anonymement avec d'autres utilisateurs. Elles ne peuvent pas êtres usurpées, mais personne ne peut non plus prouver qui est celui qui possède une identité précise. </p> - - - This identity is owned by you - Cette identité est possédée par vous-même - - - Unknown PGP key - Clé PGP inconnue - - - Unknown key ID - ID de clé inconnu - - - Identity owned by you, linked to your Retroshare node - Identité possédée par vous, liée à votre noeud Retroshare - - - Anonymous identity, owned by you - Identité anonyme, possédée par vous-même - - - Anonymous identity - Identité anonyme - - - Distant chat cannot work - Le tchat distant ne peut pas fonctionner - - - Error code - Code erreur - - - People - Gens - - - Your Avatar - Click here to change your avatar - Votre avatar - - - Linked to your node - Liée(s) à votre noeud - - - Linked to neighbor nodes - Liée(s) aux noeuds voisins - - - Linked to distant nodes - Liée(s) aux noeuds distants - - - Linked to a friend Retroshare node - Liée(s) à un noeud Retroshare ami - - - Linked to a known Retroshare node - Liée(s) à un noeud Retroshare connu - - - Linked to unknown Retroshare node - Liée(s) à un noeud Retroshare inconnu - - - Chat with this person - Tchater avec cette personne - - - Chat with this person as... - Tchater avec cette personne en tant que ... - - - Send message to this person - Envoyer un message à cette personne - - - Columns - Colonnes - - - Distant chat refused with this person. - Tchat distant avec cette personne refusé - - - Last used: - Dernièrement utilisée : - - - +50 Known PGP - +50 PGP connue - - - +10 UnKnown PGP - +10 PGP inconnue - - - +5 Anon Id - +5 ID anonyme - - - Do you really want to delete this identity? - Voulez-vous vraiment supprimer cette identité ? - - - Owned by - Possédé par - - - Show - Montrer - - - column - colonne - - - Node name: - Nom de noeud : - - - Node Id : - ID de noeud : - - - Really delete? - Vraiment supprimer ? - - - () - - - - Persons - Gens - - - Send Invite - Envoyer une invitation - - - <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - <html><head/><body><p>Moyenne des opinions exprimées par les noeuds voisins,</p><p>positif=ok. Zero=neutrel.</p></body></html> - - - Your opinion: - Votre opinion - - - Neighbor nodes: - Noeuds voisins - - - <!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:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Votre opinion d'une identité influe sur sa visibilité dans l'application,</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">et sa capacité à être partagée avec les noeuds voisins. Un score final est calculé a partir de votre propre opinion et de la ,oyenne des opinions des noeuds voisins:</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = votre_opinion * a + moyenne_des_amis * (1-a)</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - - Negative - Negative - - - Neutral - Neutre - - - Positive - Positive - - - <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> - <html><head/><body><p>Score de réputation, prenant en compte votre propre avis et celui des noeuds voisins'.</p><p>Négatif=mauvais; positif=ok. Si le score est trop bas,</p><p>l'identité est bannie, et sera progressivement éliminée des forums; chaînes, etc.</p></body></html> - - - Overall: - Global - - - Contacts - Contacts - - - ID - ID - - - Search ID Rechercher - <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>Dans ce panneau vous pouvez créer des identités pseudo-anonymes. </p> <p>Une telle identité vous permet de signer les posts dans les forums, entrer descommentaires dans une chaîne, utiliser le chat à distance et envoyer ou recevoir des messages.</p> <p> Une identité peut être signée.par la clé de votre noeud Retroshare ou au contraire être anonyme: Une identité signée vous identifie de facon sûre et peut potentiellement être associée à votre adresse IP. </p> <p> Une identité anonyme...est anonyme. Elle ne peut pas être remplacée ou utilisée par un autre noeud mais personne ne peut non plus prouver que vous en êtes le possesseur. </p> + + Unknown real name + Vrai nom inconnu + + Anonymous Id + ID anonyme + + + + Create new Identity + Créer une nouvelle identité + + + + Persons + + + + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + + + + + + Edit identity + Modifier l'identité + + + + Delete identity + Supprimer l'identité + + + + Chat with this peer + Tchater avec ce pair + + + + Launches a distant chat with this peer + Lancer un tchat distant avec ce pair + + + + Owner node ID : + ID du noeud propriétaire : + + + + Identity name : + Nom de l'identité : + + + + () + + + + + Identity ID + ID de l'identité + + + + Send message + Envoyer message + + + + Identity info + Info d'identité + + + + Identity ID : + ID de l'identité : + + + + Owner node name : + Nom du noeud propriétaire : + + + + Type: + Type : + + + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + Votre opinion : + + + + Neighbor nodes: + Nodes voisins : + + + + Negative + Négative + + + + Neutral + Neutre + + + + Positive + Positive + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + Générale : + + + + Contacts + + + + + Owned by you + Possédée(s) par vous + + + + Anonymous + Anonymes + + + + ID + + + + + Search ID + + + + + This identity is owned by you + Cette identité est possédée par vous-même + + + + Unknown PGP key + Clé PGP inconnue + + + + + Unknown key ID + ID de clé inconnu + + + + Identity owned by you, linked to your Retroshare node + Identité possédée par vous, liée à votre noeud Retroshare + + + + Anonymous identity, owned by you + Identité anonyme, possédée par vous-même + + + + Anonymous identity + Identité anonyme + + + OK OK + Banned Banni + Add to Contacts - Ajouter aux contacts + + Remove from Contacts - Retirer de la liste des contacts + + Set positive opinion - Donner une opinion positive + + Set neutral opinion - Donner une opinion neutre + + Set negative opinion - Donner une opinion negative + + + Distant chat cannot work + Le tchat distant ne peut pas fonctionner + + + + Error code + Code erreur + + + Hi,<br>I want to be friends with you on RetroShare.<br> - + + You have a friend invite - + + Respond now: - + + Thanks, <br> - Remerciements, <br> + - <!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:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Votre opinion sur une identité influe sur la propagation des messages signés par cette identité. Votre propre opinion est partagée avec les noeuds amis et un score de réputation est calculé ainsi: Si votre opinion est neutre le score de réputation est la moyenne des opinions de vos amis. Sinon votre opinion décide du score.</p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Le score de réputation est.utilisé par les forums les chaines et les salons de chat pour bloquer les utilisateurs indésirables Quand la réputation est inférieure à -0.6, lù'identité est bannie.et ses messages ne sont pas propagés Certains forums ont des options anti-spam qui demandent une réputation. Les identités bannies perdent graduellement leur activité et finissent par disparaitre (au bout de 30 jours). </p> -<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + + + + + People + Pers. + + + + Your Avatar + Click here to change your avatar + Votre avatar + + + + Linked to your node + Liée(s) à votre noeud + + + + Linked to neighbor nodes + Liée(s) aux noeuds voisins + + + + Linked to distant nodes + Liée(s) aux noeuds distants + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identités</h1> <p>Dans cet onglet vous pouvez créer/éditer des identités pseudo-anonymes. </p> <p>Les identités sont utilisées pour identifier vos données de façon sécurisée : signer vos messages dans les forums et chaînes, et recevoir du compte rendu en utilisant le système embarqué de messagerie de Retroshare, poster des commentaires à la suite de messages postés dans des chaînes, etc.</p> <p> En option, les identités peuvent être signées par le certificat de votre noeud Retroshare. Il est plus facile de faire confiance à des identités signées, mais il est aussi plus facile de faire le rapprochement avec l'adresse IP de votre noeud. </p> <p> Les identités anonymes vous permettent d'interagir anonymement avec d'autres utilisateurs. Elles ne peuvent pas êtres usurpées, mais personne ne peut non plus prouver qui est celui qui possède une identité précise. </p> + + + + Linked to a friend Retroshare node + Liée(s) à un noeud Retroshare ami + + + + Linked to a known Retroshare node + Liée(s) à un noeud Retroshare connu + + + + Linked to unknown Retroshare node + Liée(s) à un noeud Retroshare inconnu + + + + Chat with this person + Tchater avec cette personne + + + + Chat with this person as... + Tchater avec cette personne en tant que ... + + + + Distant chat refused with this person. + Tchat distant avec cette personne refusé + + + + Last used: + Dernièrement utilisée : + + + + +50 Known PGP + +50 PGP connue + + + + +10 UnKnown PGP + +10 PGP inconnue + + + + +5 Anon Id + +5 ID anonyme + + + + Do you really want to delete this identity? + Voulez-vous vraiment supprimer cette identité ? + + + + Owned by + Possédé par + + + + Node name: + Nom de noeud : + + + + Node Id : + ID de noeud : + + + + Really delete? + Vraiment supprimer ? IdEditDialog + Nickname - Surnom + Surnom + Key ID - ID de la clé + ID de la clé + PGP Name - Nom PGP + Nom PGP + PGP Hash - Hash PGP + Hash PGP + PGP Id - ID PGP + ID PGP + Pseudonym - Pseudonyme + Pseudonyme + New identity - Nouvelle identité + Nouvelle identité + + To be generated - Doit être généré + Doit être généré + + + + + + + + + N/A - N/A + N/A + + Edit identity - Modifier l'identité + Modifier l'identité + Error getting key! - Erreur lors de la récupération de la clé ! + Erreur lors de la récupération de la clé ! + Error KeyID invalid - Erreur ID de la clé invalide + Erreur ID de la clé invalide + Unknown GpgId - GpgId inconnu + GpgId inconnu + Unknown real name - Vrai nom inconnu + Vrai nom inconnu + Create New Identity - Créer une nouvelle identité + Créer une nouvelle identité + Type - Type + Type + + + + + + TextLabel - Etiquette + Etiquette + + + + + + RM + + + + Add - Ajouter + Ajouter + Your Avatar Click here to change your avatar - Votre avatar + Votre avatar + Set Avatar - Mettre l'avatar + Mettre l'avatar + Linked to your profile - Liée à votre profil + Liée à votre profil + You can have one or more identities. They are used when you write in chat lobbies, forums and channel comments. They act as the destination for distant chat and the Retroshare distant mail system. - Vous pouvez avoir une seule ou plusieurs identités. Elles sont utilisées lorsque vous écrivez dans des salons de tchat, forums, et dans les commentaires de chaînes. Elles agissent comme destination pour le tchat distant et pour le système de courrier distant de Retroshare. + Vous pouvez avoir une seule ou plusieurs identités. Elles sont utilisées lorsque vous écrivez dans des salons de tchat, forums, et dans les commentaires de chaînes. Elles agissent comme destination pour le tchat distant et pour le système de courrier distant de Retroshare. + The nickname is too short. Please input at least %1 characters. - Ce pseudonyme est trop court. Veuillez saisir au moins %1 caractères. + Ce pseudonyme est trop court. Veuillez saisir au moins %1 caractères. + The nickname is too long. Please reduce the length to %1 characters. - Ce pseudonyme est trop long. Veuillez réduire la longueur à %1 caractères. - - - RM - + Ce pseudonyme est trop long. Veuillez réduire la longueur à %1 caractères. IdentityWidget + Name - Nom + Nom + KeyId - KeyId + KeyId + GXSId - IdGXS + IdGXS + Add - Ajouter + Ajouter + + + GXS name: - Nom GXS : + Nom GXS : + + + PGP name: - Nom PGP : + Nom PGP : + + GXS id: - Id GXS : + Id GXS : + PGP id: - Id PGP : + Id PGP : ImHistoryBrowser + + Message History - Historique des messages + Historique des messages + + Copy - Copier + Copier + Remove - Supprimer + Supprimer + Mark all - Tout marquer + Tout marquer + Delete - Effacer + Effacer + Clear history - Nettoyer l'historique + Nettoyer l'historique + Send - Envoyer + Envoyer ImageUtil + + Save image - + + Cannot save the image, invalid filename - + + Not an image - + LocalSharedFilesDialog + + Open File - Ouvrir le fichier + Ouvrir le fichier + Open Folder - Ouvrir le dossier de destination + Ouvrir le dossier de destination + Edit Share Permissions - Modifier les droits de partage + Modifier les droits de partage + Checking... - Vérification en cours... + Vérification en cours... + Check files - Vérifier vos fichiers + Vérifier vos fichiers + Edit Shared Folder - Modifier les dossiers partagés + Modifier les dossiers partagés + Recommend in a message to - Recommander par messagerie à + Recommander par messagerie à + Set command for opening this file - Définir une commande d'ouverture pour ce fichier + Définir une commande d'ouverture pour ce fichier + Collection - Collection + Collection MainWindow + Add Friend - Ajouter un ami + Ajouter un ami + Add a Friend Wizard - Ajouter un ami + Ajouter un ami + Add Share - Ajouter un partage + Ajouter un partage + + + Options - Options + Options + Messenger - Messenger + Messenger + + About - À propos + À propos + SMPlayer - SMPlayer + SMPlayer + + Quit - Quitter + Quitter + + Quick Start Wizard - Assistant de configuration rapide + Assistant de configuration rapide + RetroShare %1 a secure decentralized communication platform - Retroshare %1 - Logiciel de communication sécurisé et décentralisé + Retroshare %1 - Logiciel de communication sécurisé et décentralisé + Unfinished - Inachevé + Inachevé + Low disk space warning - Alerte : Espace disque faible + Alerte : Espace disque faible + MB). RetroShare will now safely suspend any disk access to this directory. Please make some free space and click Ok. - Mo). + Mo). Retroshare va suspendre tout accès à ce dossier en toute sécurité. Veuillez libérer de l'espace disque et cliquer sur Ok. + Show/Hide - Montrer/Cacher + Montrer/Cacher + Status - Statut + Statut + Notify - Notifications - - - Open Messages - Ouvrir la messagerie - - - Bandwidth Graph - Graphique de bande passante - - - Applications - Applications - - - Help - Aide - - - Minimize - Réduire - - - Maximize - Agrandir - - - &Quit - &Quitter - - - RetroShare - Retroshare - - - %1 new message - %1 nouveau message - - - %1 new messages - %1 nouveau(x) message(s) - - - Down: %1 (kB/s) - Réception : %1 (Ko/s) - - - Up: %1 (kB/s) - Envoi : %1 (Ko/s) - - - %1 friend connected - %1 ami connecté - - - %1 friends connected - %1 amis connectés - - - Do you really want to exit RetroShare ? - Etes-vous sûr de vouloir quitter Retroshare ? - - - Internal Error - Erreur interne - - - Hide - Cacher - - - Show - Afficher - - - Make sure this link has not been forged to drag you to a malicious website. - Assurez-vous que ce lien n'a pas été créé pour vous emmener vers un site Web malveillant. - - - Don't ask me again - Ne plus me demander - - - It seems to be an old RetroShare link. Please use copy instead. - Cela semble être un ancien lien Retroshare. S'il vous plaît utiliser le copier à la place. - - - The file link is malformed. - Le lien du fichier est incorrect. - - - ServicePermissions - Service des droits - - - Service permissions matrix - Matrice des autorisations des services - - - Add - Ajouter - - - Statistics - Statistiques - - - Show web interface - Afficher l'interface web - - - The disk space in your - L'espace disque dans votre - - - directory is running low (current limit is - dossier a beaucoup diminué ! (la limite actuelle est - - - Really quit ? - Voulez-vous vraiment quitter ? + Notifications + Open Messenger - + Ouvrir le messenger + + + + Open Messages + Ouvrir la messagerie + + + + Bandwidth Graph + Graphique de bande passante + + + + Applications + Applications + + + + Help + Aide + + + + Minimize + Réduire + + + + Maximize + Agrandir + + + + &Quit + &Quitter + + + + RetroShare + Retroshare + + + + %1 new message + %1 nouveau message + + + + %1 new messages + %1 nouveau(x) message(s) + + + + Down: %1 (kB/s) + Réception : %1 (Ko/s) + + + + Up: %1 (kB/s) + Envoi : %1 (Ko/s) + + + + %1 friend connected + %1 ami connecté + + + + %1 friends connected + %1 amis connectés + + + + Do you really want to exit RetroShare ? + Etes-vous sûr de vouloir quitter Retroshare ? + + + + Internal Error + Erreur interne + + + + Hide + Cacher + + + + Show + Afficher + + + + Make sure this link has not been forged to drag you to a malicious website. + Assurez-vous que ce lien n'a pas été créé pour vous emmener vers un site Web malveillant. + + + + Don't ask me again + Ne plus me demander + + + + It seems to be an old RetroShare link. Please use copy instead. + Cela semble être un ancien lien Retroshare. S'il vous plaît utiliser le copier à la place. + + + + The file link is malformed. + Le lien du fichier est incorrect. + + + + ServicePermissions + Service des droits + + + + Service permissions matrix + Matrice des autorisations de services + + + + Add + Ajouter + + + + Statistics + Statistiques + + + + Show web interface + Afficher l'interface web + + + + The disk space in your + L'espace disque dans votre + + + + directory is running low (current limit is + dossier a beaucoup diminué ! (la limite actuelle est + + + + Really quit ? + Voulez-vous vraiment quitter ? MessageComposer + + Compose - Écrire + Écrire + Contacts - Contacts - - - >> To - >> Pour - - - >> Cc - >> Copie à - - - >> Bcc - >> Copie cachée à - - - >> Recommend - >> Recommander + Contacts + Paragraph - Paragraphe + Paragraphe + Heading 1 - Titre 1 + Titre 1 + + Heading 2 - Titre 2 + Titre 2 + Heading 3 - Titre 3 + Titre 3 + Heading 4 - Titre 4 + Titre 4 + Heading 5 - Titre 5 + Titre 5 + Heading 6 - Titre 6 + Titre 6 + Font size - Taille de police + Taille de police + Increase font size - Augmenter la police + Augmenter la police + Decrease font size - Diminuer la police + Diminuer la police + Bold - Gras + Gras + Italic - Italique + Italique + Alignment - Alignement + Alignement + Add an Image - Insérer une image + Insérer une image + Sets text font to code style - Paramétrer la police d'écriture dans le code + Paramétrer la police d'écriture dans le code + Underline - Souligné + Souligné + Subject: - Sujet : + Sujet : + Tags: - Mots clés : + Mots clés : + + Tags - Mots clés + Mots clés + + Address list: + + + + + Recommend this friend + + + + Set Text color - Définir la couleur du texte + Définir la couleur du texte + Set Text background color - Définir la couleur de fond du texte + Définir la couleur de fond du texte + Recommended Files - Fichiers recommandés + Fichiers recommandés + File Name - Nom du fichier + Nom du fichier + Size - Taille + Taille + Hash - Hash + Hash + Send - Envoyer + Envoyer + Send this message now - Envoyer le message maintenant + Envoyer le message maintenant + Reply - Répondre + Répondre + Toggle Contacts View - Afficher la liste des contacts + Afficher la liste des contacts + Save - Enregistrer + Enregistrer + Save this message - Enregistrer le message + Enregistrer le message + Attach - Joindre + Joindre + Attach File - Joindre un fichier + Joindre un fichier + Quote - Citer + Citer + Add Blockquote - Ajouter une citation + Ajouter une citation + Send To: - Envoyer à : + Envoyer à : + &Left - Aligner à Gauche + Aligner à Gauche + C&enter - C&entrer + C&entrer + &Right - Aligner à D&roite + Aligner à D&roite + &Justify - &Justifier le texte + &Justifier le texte + + All addresses (mixed) + + + + + All people + + + + + My contacts + + + + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> - Bonjour, <br>Je vous recommande un(e) bon(nne) ami(e), vous pouvez lui faire confiance autant qu'à moi. <br> + Bonjour, <br>Je vous recommande un(e) bon(nne) ami(e), vous pouvez lui faire confiance autant qu'à moi. <br> + You have a friend recommendation - Vous avez une recommandation d'ami + Vous avez une recommandation d'ami + This friend is suggested by - Cet ami est suggéré par + Cet ami est suggéré par + wants to be friends with you on RetroShare - veut devenir ami(e) avec toi sur Retroshare + veut devenir ami(e) avec toi sur Retroshare + 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 - Bonjour %1,<br><br>%2 veut devenir ton ami(e) sur Retroshare.<br><br>Répondre maintenant :<br>%3<br><br>Merci,<br>L'équipe de Retroshare + Bonjour %1,<br><br>%2 veut devenir ton ami(e) sur Retroshare.<br><br>Répondre maintenant :<br>%3<br><br>Merci,<br>L'équipe de Retroshare + + Save Message - Enregistrer le message + Enregistrer le message + Message has not been Sent. Do you want to save message to draft box? - Le message n'a pas été envoyé + Le message n'a pas été envoyé Désirez-vous enregistrer le message dans les brouillons? + Paste RetroShare Link - Coller le lien Retroshare + Coller le lien Retroshare + Add to "To" - Ajouter à "A" + Ajouter à "A" + Add to "CC" - Ajouter à "Cc" + Ajouter à "Cc" + Add to "BCC" - Ajouter à "Cci" + Ajouter à "Cci" + Add as Recommend - Ajouter comme fichier recommandé - - - Friend Details - Détails de cet ami + Ajouter comme fichier recommandé + Original Message - Message d'origine + Message d'origine + From - De + De + + + To - Pour + Pour + + + Cc - Cc + Cc + Sent - Eléments envoyés + Eléments envoyés + Subject - Sujet + Sujet + On %1, %2 wrote: - Sur %1, %2 à écrit : + Sur %1, %2 à écrit : + Re: - Re : + Re : + Fwd: - Tr : + Tr : + + + RetroShare - Retroshare + Retroshare + Do you want to send the message without a subject ? - Souhaitez-vous envoyer ce message sans sujet ? + Souhaitez-vous envoyer ce message sans sujet ? + Please insert at least one recipient. - Veuillez inscrire au moins un destinataire. + Veuillez inscrire au moins un destinataire. + + Bcc - Cci + Cci + Unknown - Inconnu + Inconnu + &File - &Fichier + &Fichier + &New - &Nouveau + &Nouveau + &Open... - &Ouvrir... + &Ouvrir... + &Save - Enregi&strer + Enregi&strer + Save &As File - Enregistrer sous... + Enregistrer sous... + Save &As Draft - Enregistrer comme brouillon + Enregistrer comme brouillon + &Print... - Im&primer + Im&primer + &Export PDF... - &Exporter PDF... + &Exporter PDF... + &Quit - &Quitter + &Quitter + &Edit - &Editer + &Editer + &Undo - Ann&uler + Ann&uler + &Redo - &Rétablir + &Rétablir + Cu&t - Couper + Couper + &Copy - &Copier + &Copier + &Paste - Coller + Coller + &View - Affichage + Affichage + &Contacts Sidebar - Barre latérale des &Contacts + Barre latérale des &Contacts + &Insert - &Insérer + &Insérer + &Image - &Image + &Image + &Horizontal Line - Ligne &horizontale + Ligne &horizontale + &Format - &Format + &Format + + Details + Détails + + + Open File... - Ouvrir un fichier... + Ouvrir un fichier... + + HTML-Files (*.htm *.html);;All Files (*) - Fichiers HTML (*.htm *.html);;tous les fichiers (*) + Fichiers HTML (*.htm *.html);;tous les fichiers (*) + Save as... - Enregistrer sous... + Enregistrer sous... + Print Document - Imprimer le document + Imprimer le document + Export PDF - Exporter en PDF + Exporter en PDF + Message has not been Sent. Do you want to save message ? - Le message n'a pas été envoyé. + Le message n'a pas été envoyé. Voulez-vous enregistrer votre message ? + Choose Image - Insérer une image + Insérer une image + Image Files supported (*.png *.jpeg *.jpg *.gif) - Type d'images supporté (*.png *.jpeg *.jpg *.gif) + Type d'images supporté (*.png *.jpeg *.jpg *.gif) + Add Extra File - Ajouter un fichier supplémentaire - - - Show: - Afficher : + Ajouter un fichier supplémentaire + Close - Fermer + Fermer + From: - De : - - - All - Tout + De : + Friend Nodes - Noeuds amis - - - Person Details - Détails de la personne - - - Distant peer identities - Identités de pair distant - - - Thanks, <br> - Remerciements, <br> - - - Distant identity: - Identité distante : - - - [Missing] - [Manquante] - - - Please create an identity to sign distant messages, or remove the distant peers from the destination list. - Veuillez créer une identité pour signer vos messages distants, ou enlever de la liste de destinations les pairs distants. - - - Node name & id: - Nom de noeud et id: - - - Address list: - - - - Recommend this friend - + Noeuds amis + Bullet list (disc) - + Liste à puces (disque) + Bullet list (circle) - + Liste à puces (cercle) + Bullet list (square) - + Liste à puces (carré) + Ordered list (decimal) - + Liste ordonnée (décimale) + Ordered list (alpha lower) - + Liste ordonnée (alpha minuscule) + Ordered list (alpha upper) - + Liste ordonnée (alpha majuscule) + Ordered list (roman lower) - + Liste ordonnée (romain minuscule) + Ordered list (roman upper) - + Liste ordonnée (romain majuscule) - All addresses (mixed) - + + Thanks, <br> + Remerciements, <br> - All people - Tout le monde + + Distant identity: + Identité distante : - My contacts - Mes contacts + + [Missing] + [Manquante] - Details - Détails + + Please create an identity to sign distant messages, or remove the distant peers from the destination list. + Veuillez créer une identité pour signer vos messages distants, ou enlever de la liste de destinations les pairs distants. + + + + Node name & id: + Nom de noeud et id: MessagePage + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Lecture + Set message to read on activate Signaler les messages non lus + Open messages in Ouvrir le message dans + Tags Mots clés + Tags can be used to categorize and prioritize your messages Les mots clés peuvent être utilisés pour classer et donner des priorités à vos messages + Add Ajouter + Edit Modifier + Delete Supprimer + Default Par défaut + A new tab Un nouvel onglet + A new window Une nouvelle fenêtre + Edit Tag Modifier le mot clé + Message Message + Distant messages: Messages distants : - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">Le lien ci-dessous permet aux gens dans le réseau de vous envoyer des messages cryptés, en utilisant des tunnels. Pour ce faire, ils ont besoin de votre clé PGP publique, qu'ils obtiendront en utilisant le système de la découverte de Retroshare.</p></body></html> - - - Accept encrypted distant messages from everyone - Accepter les messages cryptés distants de tout le monde - - + Load embedded images Charger les images incorporées - - Everyone - Tout le monde - - - Contacts - Contacts - - - Nobody - Personne - - - Accept encrypted distant messages from - Accepter les messages distants provenant de... - MessageToaster + Sub: Sous : @@ -9811,930 +11050,1168 @@ Voulez-vous enregistrer votre message ? MessageUserNotify + Message - Message + Message MessageWidget + Recommended Files - Fichiers recommandés + Fichiers recommandés + Download all Recommended Files - Télécharger tous les fichiers recommandés + Télécharger tous les fichiers recommandés + Subject: - Sujet : + Sujet : + From: - De : + De : + To: - Pour : + Pour : + Cc: - Cc : + Cc : + Bcc: - Cci : + Cci : + Tags: - Mots clés : + Mots clés : + File Name - Nom du fichier + Nom du fichier + Size - Taille + Taille + Hash - Hash + Hash + Print - Imprimer + Imprimer + Print Preview - Aperçu avant impression + Aperçu avant impression + Confirm %1 as friend - Confirmer %1 comme ami + Confirmer %1 comme ami + Add %1 as friend - Ajouter %1 comme ami + Ajouter %1 comme ami + No subject - Pas de sujet + Pas de sujet + Download - Télécharger + Télécharger + + Download all - Tout télécharger + Tout télécharger + Print Document - Imprimer le document + Imprimer le document + Save as... - Enregistrer sous... + Enregistrer sous... + HTML-Files (*.htm *.html);;All Files (*) - Fichiers HTML (*.htm *.html);;tous les fichiers (*) + Fichiers HTML (*.htm *.html);;tous les fichiers (*) + Load images always for this message - Toujours charger les images pour ce message + Toujours charger les images pour ce message + Hide the attachment pane - Cacher le panneau pièce jointe + Cacher le panneau pièce jointe + Show the attachment pane - Montrer le panneau pièce jointe + Montrer le panneau pièce jointe MessageWindow + New Message - Nouveau message + Nouveau message + Compose - Écrire + Écrire + Reply to selected message - Répondre au(x) message(s) sélectionné(s) + Répondre au(x) message(s) sélectionné(s) + Reply - Répondre + Répondre + Reply all to selected message - Répondre à tous les destinataires du(des) message(s) sélectionné(s) + Répondre à tous les destinataires du(des) message(s) sélectionné(s) + Reply all - Répondre à tous + Répondre à tous + Forward selected message - Transférer le(s) message(s) sélectionné(s) + Transférer le(s) message(s) sélectionné(s) + Forward - Suivante + Suivante + Remove selected message - Supprimer le(s) message(s) sélectionné(s) + Supprimer le(s) message(s) sélectionné(s) + Delete - Supprimer + Supprimer + Print selected message - Imprimer le(s) message(s) sélectionné(s) + Imprimer le(s) message(s) sélectionné(s) + + Print - Imprimer + Imprimer + Display - Affichage + Affichage + + + Tags - Mots clés + Mots clés + Print Preview - Aperçu avant impression + Aperçu avant impression + + Buttons Icon Only - Icônes uniquement + Icônes uniquement + Buttons Text Beside Icon - Texte à coté des icônes + Texte à coté des icônes + Buttons with Text - Icônes avec texte + Icônes avec texte + Buttons Text Under Icon - Texte en dessous des icônes + Texte en dessous des icônes + Set Text Under Icon - Définir le texte sous les icônes + Définir le texte sous les icônes + &File - &Fichier + &Fichier + Save &As File - Enregistrer sous... + Enregistrer sous... + &Print... - Im&primer... + Im&primer... + Print Preview... - Aperçu avant impression... + Aperçu avant impression... + &Quit - &Quitter + &Quitter MessagesDialog + + New Message - Nouveau message + Nouveau message + Compose - Écrire + Écrire + Reply to selected message - Répondre au(x) message(s) sélectionné(s) + Répondre au(x) message(s) sélectionné(s) + Reply - Répondre + Répondre + Reply all to selected message - Répondre à tous les destinataires du(des) message(s) sélectionné(s) + Répondre à tous les destinataires du(des) message(s) sélectionné(s) + Reply all - Répondre à tous + Répondre à tous + Forward selected message - Transférer le(s) message(s) sélectionné(s) + Transférer le(s) message(s) sélectionné(s) + Foward - Transférer + Transférer + Remove selected message - Supprimer le(s) message(s) sélectionné(s) + Supprimer le(s) message(s) sélectionné(s) + Delete - Supprimer + Supprimer + Print selected message - Imprimer le(s) message(s) sélectionné(s) + Imprimer le(s) message(s) sélectionné(s) + Print - Imprimer + Imprimer + Display - Affichage + Affichage + + + + + Tags - Mots clés + Mots clés + + + + Inbox - Boîte de réception + Boîte de réception + + + + Outbox - Boîte d'envoi + Boîte d'envoi + Draft - Brouillons + Brouillons + + Sent - Eléments envoyés + Eléments envoyés + + + + Trash - Corbeille + Corbeille + Total Inbox: - Tous les messages : + Tous les messages : + Folders - Dossiers + Dossiers + Quick View - Vue rapide + Vue rapide + + Print... - Imprimer... + Imprimer... + Print Preview - Aperçu avant impression + Aperçu avant impression + + Buttons Icon Only - Icônes uniquement + Icônes uniquement + Buttons Text Beside Icon - Texte à coté des icônes + Texte à coté des icônes + Buttons with Text - Icônes avec texte + Icônes avec texte + Buttons Text Under Icon - Texte en dessous des icônes + Texte en dessous des icônes + Set Text Under Icon - Définir le texte sous les icônes + Définir le texte sous les icônes + Save As... - Enregistrer sous... + Enregistrer sous... + Reply to Message - Répondre au message + Répondre au message + + Reply to All - Répondre à tous + Répondre à tous + Forward Message - Faire suivre le(s) message(s) + Faire suivre le(s) message(s) + + Subject - Sujet + Sujet + + + From - De + De + + Date - Date + Date + + Content - Contenu + Contenu + Click to sort by attachments - Cliquer pour trier par fichiers attachés + Cliquer pour trier par fichiers attachés + Click to sort by subject - Cliquer pour trier par sujet + Cliquer pour trier par sujet + Click to sort by read - Cliquer pour trier par lu + Cliquer pour trier par lu + + Click to sort by from - Cliquer pour trier par expéditeur + Cliquer pour trier par expéditeur + Click to sort by date - Cliquer pour trier par date + Cliquer pour trier par date + Click to sort by tags - Cliquer pour trier par mots clés + Cliquer pour trier par mots clés + Click to sort by star - Cliquer pour trier par suivi + Cliquer pour trier par suivi + Forward selected Message - Transférer le(s) message(s) sélectionné(s) + Transférer le(s) message(s) sélectionné(s) + Search Subject - Rechercher sujet + Rechercher sujet + Search From - Rechercher de + Rechercher de + Search Date - Rechercher date + Rechercher date + Search Content - Rechercher contenu + Rechercher contenu + Search Tags - Rechercher mots-clefs + Rechercher mots-clefs + Attachments - Pièces jointes + Pièces jointes + Search Attachments - Rechercher pièces jointes - - - Starred - Suivi - - - System - Système - - - Open in a new window - Ouvrir dans une nouvelle fenêtre - - - Open in a new tab - Ouvrir dans un nouvel onglet - - - Mark as read - Marquer comme lu - - - Mark as unread - Marquer comme non lu - - - Add Star - Suivre - - - Edit - Modifier - - - Edit as new - Modifier en tant que nouveau - - - Remove Messages - Supprimer le(s) message(s) - - - Remove Message - Supprimer le message - - - Undelete - Annuler la suppression - - - Empty trash - Vider la corbeille - - - Drafts - Brouillons - - - 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 gray star beside any message. - Il n'y a pas de messages suivis. Suivre un message vous permettra de le retrouver plus facilement ultérieurement. Pour suivre un message, cliquez sur l'étoile grise devant n'importe quel message. - - - No system messages available. - Aucun message système disponible. - - - To - Pour - - - Click to sort by to - Cliquer pour trier par destinataire - - - Total: - Total : - - - Messages - Messages - - - Click to sort by signature - Cliquer pour trier par signature - - - This message was signed and the signature checks - Ce message a été signé et la signature vérifiée - - - This message was signed but the signature doesn't check - Ce message a été signé mais la signature n'a pas été vérifiée - - - This message comes from a distant person. - Ce message vient d'une personne distante. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare a son propre système de messagerie interne. Vous pouvez en envoyer/recevoir vers/depuis les noeuds de vos amis connectés.</p> <p>Il est aussi possible d'envoyer des messages vers les Identités d'autres personnes en utilisant le système de routage global. Ces messages sont toujours chiffrés et sont relayés par des noeuds intermédiaires jusqu'à ce qu'ils atteignent leur destination finale. </p> <p>Il est recommandé de signer cryptographiquement les messages distants, comme preuve de votre identité, en utilisant le bouton <img width="16" src=":/images/stock_signature_ok.png"/> dans la fenêtre de composition du message. Les messages distants restent dans votre boite d'envoi jusqu'à ce qu'un accusé de réception soit reçu.</p> <p>De façon générale, vous pouvez utiliser les messages afin de recommander des fichiers à vos amis en y collant des liens de fichiers, ou recommander des noeuds amis à d'autres noeuds amis, afin de renforcer votre réseau, ou envoyer du retour d'information (feedback) au propriétaire d'une chaîne.</p> + Rechercher pièces jointes + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare a son propre système de messagerie interne. Vous pouvez en envoyer/recevoir vers/depuis les noeuds de vos amis connectés.</p> <p>Il est aussi possible d'envoyer des messages vers les Identités d'autres personnes en utilisant le système de routage global. Ces messages sont toujours chiffrés et sont relayés par des noeuds intermédiaires jusqu'à ce qu'ils atteignent leur destination finale. </p> <p>Les messages distants restent dans votre boite d'envoi jusqu'à ce qu'un accusé de réception soit reçu.</p> <p>De façon générale, vous pouvez utiliser les messages afin de recommander des fichiers à vos amis en y collant des liens de fichiers, ou recommander des noeuds amis à d'autres noeuds amis, afin de renforcer votre réseau, ou envoyer du retour d'information (feedback) au propriétaire d'une chaîne.</p> + + Starred + Suivi + + + + System + Système + + + + Open in a new window + Ouvrir dans une nouvelle fenêtre + + + + Open in a new tab + Ouvrir dans un nouvel onglet + + + + Mark as read + Marquer comme lu + + + + Mark as unread + Marquer comme non lu + + + + Add Star + Suivre + + + + Edit + Modifier + + + + Edit as new + Modifier en tant que nouveau + + + + Remove Messages + Supprimer le(s) message(s) + + + + Remove Message + Supprimer le message + + + + Undelete + Annuler la suppression + + + + Empty trash + Vider la corbeille + + + + + + Drafts + Brouillons + + + + 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 gray star beside any message. + Il n'y a pas de messages suivis. Suivre un message vous permettra de le retrouver plus facilement ultérieurement. Pour suivre un message, cliquez sur l'étoile grise devant n'importe quel message. + + + + No system messages available. + Aucun message système disponible. + + + + To + Pour + + + + Click to sort by to + Cliquer pour trier par destinataire + + + This message goes to a distant person. - + + + + + + + + + Total: + Total : + + + + + Messages + Messages + + + + Click to sort by signature + Cliquer pour trier par signature + + + + This message was signed and the signature checks + Ce message a été signé et la signature vérifiée + + + + This message was signed but the signature doesn't check + Ce message a été signé mais la signature n'a pas été vérifiée + + + + This message comes from a distant person. + Ce message vient d'une personne distante. MessengerWindow + RetroShare Messenger - Retroshare Messenger + Retroshare Messenger + Add a Friend - Ajouter un ami + Ajouter un ami + Share files for your friends - Partagez des fichiers avec vos amis + Partagez des fichiers avec vos amis MimeTextEdit - Paste RetroShare Link - Coller le lien Retroshare - - - Paste my certificate link - Coller le lien de votre certificat - - + Paste as plain text - + + Spoiler - + + Select text to hide, then push this button - + + + + + Paste RetroShare Link + Coller le lien Retroshare + + + + Paste my certificate link + Coller le lien de votre certificat MsgItem + Reply to Message - Répondre au message + Répondre au message + Reply Message - Répondre au message + Répondre au message + Delete Message - Supprimer le message + Supprimer le message + Play Media - Lecture + Lecture + + Expand - Développer + Développer + Remove Item - Effacer le message + Effacer le message + Message From - Message de + Message de + Sent Msg - Message(s) envoyé(s) + Message(s) envoyé(s) + Draft Msg - Brouillon(s) + Brouillon(s) + Pending Msg - Message(s) en attente + Message(s) en attente + Hide - Cacher + Cacher NATStatus + <strong>NAT:</strong> - <strong>NAT :</strong> + <strong>NAT :</strong> + Network Status Unknown - État du réseau inconnu + État du réseau inconnu + Offline - Hors ligne + Hors ligne + Nasty Firewall - Méchant pare-feu + Méchant pare-feu + DHT Disabled and Firewalled - DHT désactivée et derrière un pare-feu + DHT désactivée et derrière un pare-feu + Network Restarting - Redémarrage réseau + Redémarrage réseau + Behind Firewall - Derrière un pare-feu + Derrière un pare-feu + DHT Disabled - DHT désactivée + DHT désactivée + RetroShare Server - Serveur Retroshare + Serveur Retroshare + Forwarded Port - Port redirigé - - - OK | RetroShare Server - OK | Serveur Retroshare - - - Internet connection - Connexion internet - - - No internet connection - Pas de connexion internet - - - No local network - Pas de réseau local + Port redirigé NetworkDialog + Filter: - Filtre : + Filtre : + Search Network - Chercher dans le réseau + Chercher dans le réseau + + + Name - Nom + Nom + Did I authenticated peer - Votre authentification du contact + Votre authentification du contact + Did I sign his PGP key - Votre signature des clés PGP + Votre signature des clés PGP + Did peer authenticated me - L'authentification par le contact + L'authentification par le contact + + Cert Id - ID du certificat + ID du certificat + + Last used - Dernier utilisé + Dernier utilisé + Clear - Effacer + Effacer + Set Tabs Right - Mettre les onglets à droite + Mettre les onglets à droite + Set Tabs North - Mettre les onglets en haut + Mettre les onglets en haut + Set Tabs South - Mettre les onglets en bas + Mettre les onglets en bas + Set Tabs Left - Mettre les onglets à gauche + Mettre les onglets à gauche + Set Tabs Rounded - Onglets arrondis + Onglets arrondis + Set Tabs Triangular - Onglets carrés + Onglets carrés + Add Friend - Ajouter un ami + Ajouter un ami + Copy My Key to Clipboard - Copier ma clé dans le presse-papier + Copier ma clé dans le presse-papier + Export My Key - Exporter ma clé + Exporter ma clé + Create New Profile - Créer un nouveau profil + Créer un nouveau profil + Create a new Profile - Créer un nouveau profil + Créer un nouveau profil + Peer ID - ID du contact + ID du contact + Deny friend - Ignorer cet ami + Refuser cet ami + Peer details... - Détails du contact... + Détails du contact... + Remove unused keys... - Suppression des clés inutilisées... + Suppression des clés inutilisées... + Clean keyring - Nettoyer le trousseau + Nettoyer le trousseau - The selected keys below haven't been used in the last 3 months. + + The selected keys below haven't been used in the last 3 months. Do you want to delete them permanently ? Notes: Your old keyring will be backed up. The removal may fail when running multiple Retroshare instances on the same machine. - Les clés sélectionnées ci-dessous n'ont pas été utilisées dans les 3 derniers mois. + Les clés sélectionnées ci-dessous n'ont pas été utilisées dans les 3 derniers mois. Voulez-vous les supprimer définitivement ? Remarques : votre ancien trousseau sera sauvegardé. La suppression peut échouer lors de l'exécution de plusieurs instances de Retroshare sur la même machine. + + Keyring info - Info du trousseau + Info du trousseau + %1 keys have been deleted from your keyring. For security, your keyring was previously backed-up to file - %1 clés ont été supprimées de votre trousseau. + %1 clés ont été supprimées de votre trousseau. Par mesure de sécurité votre trousseau précédent à été sauvegardé sous forme de fichier + Unknown error - Erreur inconnu + Erreur inconnu + Cannot delete secret keys - Impossible de supprimer les clés secrêtes + Impossible de supprimer les clés secrêtes + Cannot create backup file. Check for permissions in pgp directory, disk space, etc. - Impossible de créer le fichier de sauvegarde. Vérifiez les permissions du répertoire PGP, espace disque, etc.. + Impossible de créer le fichier de sauvegarde. Vérifiez les permissions du répertoire PGP, espace disque, etc.. + Personal signature - Signature personnelle + Signature personnelle + PGP key signed by you - Clé PGP que vous avez signée + Clé PGP que vous avez signée + Marginally trusted peer - Confiance moyenne + Confiance moyenne + Fully trusted peer - Entière confiance + Entière confiance + Untrusted peer - Non fiable + Non fiable + Has authenticated me - M'a authentifié + M'a authentifié + Unknown - Inconnu + Inconnu + Last hour - Dernière heure + Dernière heure + Today - Aujourd'hui + Aujourd'hui + Never - Jamais + Jamais + %1 days ago - il y a %1 jours + il y a %1 jours + has authenticated you. Right-click and select 'make friend' to be able to connect. - vous a authentifié. + vous a authentifié. Clic droit et sélectionnez 'Devenir ami' pour vous connecter. + yourself - Moi + Moi + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. - Incohérence des données dans le trousseau de clés. Il s'agit très probablement d'un bug. S'il vous plaît contacter les développeurs. + Incohérence des données dans le trousseau de clés. Il s'agit très probablement d'un bug. S'il vous plaît contacter les développeurs. + Export/create a new node - Exporter/créer un nouveau noeud + Exporter/créer un nouveau noeud + Trusted keys only - Clés de confiance uniquement + Clés de confiance uniquement + Trust level - Niveau de confiance + Niveau de confiance + Do you accept connections signed by this key? - Acceptez-vous les connexions signées par cette clé ? + Acceptez-vous les connexions signées par cette clé ? + Name of the key - Nom de la clé + Nom de la clé + Certificat ID - ID du certificat + ID du certificat + Make friend... - Devenir ami ... + Devenir ami ... + Did peer authenticate you - Le pair vous a-t-il authentifié ? + Le pair vous a-t-il authentifié ? + This column indicates trust level and whether you signed their PGP key - Cette colonne indique le niveau de confiance et si vous avez signé leurs clés PGP + Cette colonne indique le niveau de confiance et si vous avez signé leurs clés PGP + Did that peer sign your PGP key - Ce pair a-t-il signé votre clé PGP + Ce pair a-t-il signé votre clé PGP + Since when I use this certificate - Depuis quand j'utilise ce certificat + Depuis quand j'utilise ce certificat + Search name - Chercher nom + Chercher nom + Search peer ID - Chercher ID de pair + Chercher ID de pair + Key removal has failed. Your keyring remains intact. Reported error: - La suppression de clé a échouée. Votre trousseau de clés reste intact. + La suppression de clé a échouée. Votre trousseau de clés reste intact. Erreur remontée : @@ -10742,908 +12219,957 @@ Erreur remontée : NetworkPage + Network - Réseau + Réseau NetworkView + Redraw - Rafraîchir + Rafraîchir + Friendship level: - Niveau d'amitié : + Niveau d'amitié : + Edge length: - Longueur des liaisons : + Longueur des liaisons : + Freeze - Geler + Geler NewTag + New Tag - Nouveau mot clé + Nouveau mot clé + Name: - Nom : + Nom : + Choose color - Choix de la couleur + Choix de la couleur + OK - OK + OK + Cancel - Annuler + Annuler NewsFeed + News Feed - Fil d'actualités + Fil d'actualités + Options - Options + Options + Remove All - Tout effacer + Tout effacer + This is a test. - C'est un test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Fil d'actualités</h1> <p>Le fil d'actualité affiche les derniers événements survenus dans votre réseau, triés selon le moment où vous les avez reçus. Il vous donne un résumé de l'activité de vos amis. Vous pouvez configurer les événements à afficher en cliquant sur <b>Options</ b>. </p> <p> Les divers événements affichés sont : <ul> <li>Les tentatives de connexion (utile pour ajouter de nouveaux amis et savoir qui essaie de vous contacter) </li> <li> Les nouveaux articles dans les chaînes et les forums</li> <li>Les nouvelles chaînes et forums auxquels vous pouvez vous abonner</li> <li>Les messages privés de vos amis </li> </ul> </p> + C'est un test. + News feed - Fil d'actualités + Fil d'actualités + Newest on top - Les plus récents en haut + Les plus récents en haut + Oldest on top - Les plus anciens en haut + Les plus anciens en haut + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Fil d'actualités</h1> <p>Le fil d'actualités affiche les derniers événements survenus dans votre réseau, triés selon le moment où vous les avez reçus. Cela vous donne un résumé de l'activité de vos amis. Vous pouvez configurer les événements à afficher en cliquant sur <b>Options</ b>. </p> <p> Les divers événements affichés sont : <ul> <li>Les tentatives de connexion (utile pour ajouter de nouveaux amis et savoir qui essaie de vous contacter) </li> <li> Les nouveaux articles dans les chaînes et les forums</li> <li>Les nouvelles chaînes et forums auxquels vous pouvez vous abonner</li> <li>Les messages privés de vos amis </li> </ul> </p> NotifyPage + News Feed - Fil d'actualités + Fil d'actualités + Channels - Chaînes + Chaînes + Forums - Forums + Forums + Blogs - Blogs + Blogs + Messages - Messages + Messages + Chat - Tchat + Tchat + Security - Sécurité + Sécurité + + Test - Test + Test + Systray Icon - Icônes sur la barre des tâches + Icônes sur la barre des tâches + Message - Message + Message + + Connect attempt - Tentative de connexion + Tentative de connexion + + Toasters - Notifications + Notifications + + Friend Connect - Connexion d'un ami + Connexion d'un ami + Ip security - Sécurité IP + Sécurité IP + New Message - Nouveau message + Nouveau message + Download completed - Téléchargement terminé + Téléchargement terminé + Private Chat - Tchat privé + Tchat privé + Group Chat - Tchat public + Tchat public + Chat Lobby - Salons de tchat + Salons de tchat + Position - Position + Position + X Margin - Axe Horizontal + Axe Horizontal + Y Margin - Axe Vertical + Axe Vertical + Systray message - Message sur la barre des tâches + Message sur la barre des tâches + Group chat - Tchat public + Tchat public + Chat lobbies - Salons de tchat + Salons de tchat + Combined - Combiné + Combiné + Blink - Clignotement - - - Top Left - En haut à gauche - - - Top Right - En haut à droite - - - Bottom Left - En bas à gauche - - - Bottom Right - En bas à droite - - - Notify - Notifications - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notifications</h1> -<p>Retroshare vous informe sur ce qui se passe dans votre réseau. En fonction de votre utilisation, vous pouvez activer ou désactiver une partie des notifications. Cette page est conçue pour ça!</p> - - - Disable All Toasters - Désactiver toutes les notifications grille-pain - - - Posted - Publié - - - Disable All Toaster temporarily - Désactiver toutes les notifications grille-pain temporairement - - - Feed - Flux - - - Systray - Zone de notification - - - Chat Lobbies - Salons de tchat - - - Count all unread messages - Compter tous les messages non lus - - - Count occurences of any of the following texts (separate by newlines): - Compter les occurences de n'importe lequel des textes suivants (séparés par des retours à la ligne) : - - - Count occurences of my current identity - Nombre d’occurrences de mon identité actuelle + Clignotement + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notifications</h1> <p>Retroshare vous informe sur ce qui se passe dans votre réseau. En fonction de votre utilisation, vous pouvez activer ou désactiver une partie des notifications. Cette page est conçue pour cela !</p> + + + + Top Left + En haut à gauche + + + + Top Right + En haut à droite + + + + Bottom Left + En bas à gauche + + + + Bottom Right + En bas à droite + + + + Notify + Notifications + + + + Disable All Toasters + Désactiver toutes les notifications grille-pain + + + + Posted + Publié + + + + Disable All Toaster temporarily + Désactiver toutes les notifications grille-pain temporairement + + + + Feed + Flux + + + + Systray + Zone de notification + + + + Chat Lobbies + Salons de tchat + + + + Count all unread messages + Compter tous les messages non lus + + + + Count occurences of any of the following texts (separate by newlines): + Compter les occurences de n'importe lequel des textes suivants (séparés par des retours à la ligne) : + + + + Count occurences of my current identity + Nombre d’occurrences de mon identité actuelle NotifyQt + PGP key passphrase - Mot de passe de la clé PGP + Mot de passe de la clé PGP + Wrong password ! - Mauvais mot de passe ! + Mauvais mot de passe ! + Unregistered plugin/executable - Extension/exécutable non enregistrée + Extension/exécutable non enregistrée + 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 a détecté une extension non enregistrée. Cela se produit dans deux cas: <UL> <LI>Votre exécutable Retroshare a changé.</LI><LI>L'extension a changé</LI> </UL>Cliquez sur Oui pour autoriser cette extension, ou Non pour la refuser. Vous pouvez changer d'avis plus tard dans Options -> Extensions, puis redémarrez. + Retroshare a détecté une extension non enregistrée. Cela se produit dans deux cas: <UL> <LI>Votre exécutable Retroshare a changé.</LI><LI>L'extension a changé</LI> </UL>Cliquez sur Oui pour autoriser cette extension, ou Non pour la refuser. Vous pouvez changer d'avis plus tard dans Options -> Extensions, puis redémarrez. + Please check your system clock. - S'il vous plaît vérifier votre horloge système. + S'il vous plaît vérifier votre horloge système. + Examining shared files... - Analyse des fichiers partagés... + Analyse des fichiers partagés... + Hashing file - Hashage fichiers + Hachage fichier + Saving file index... - Enregistrement de l'index des fichiers... + Enregistrement de l'index des fichiers... + Test - Test + Test + This is a test. - C'est un test. + C'est un test. + Unknown title - Titre inconnu + Titre inconnu + + Encrypted message - Message encrypté + Message chiffré + Please enter your PGP password for key - Veuillez entrer votre mot de passe PGP pour la clé + Veuillez entrer votre mot de passe PGP pour la clé + For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of several minutes was detected with your friends). - Afin que les salons de tchat fonctionnent correctement, l'heure de votre ordinateur doit être correcte. Veuillez vérifier que c'est le cas (un possible décalage de plusieurs minutes a été détecté avec vos amis). + Afin que les salons de tchat fonctionnent correctement, l'heure de votre ordinateur doit être correcte. Veuillez vérifier que c'est le cas (un possible décalage de plusieurs minutes a été détecté avec vos amis). OnlineToaster + Friend Online - En ligne + En ligne OpModeStatus + Normal Mode - Mode normal + Mode normal + No Anon D/L - Pas de D/L anonyme + Pas de D/L anonyme + Gaming Mode - Mode jeu + Mode jeu + Low Traffic - Faible trafic + Faible trafic - Use this DropList to quickly change Retroshare's behaviour + + Use this DropList to quickly change Retroshare's behaviour No Anon D/L: switches off file forwarding Gaming Mode: 25% standard traffic and TODO: reduced popups Low Traffic: 10% standard traffic and TODO: pauses all file-transfers - Utilisez cette liste déroulante pour rapidement changer le comportement de Retroshare + Utilisez cette liste déroulante pour rapidement changer le comportement de Retroshare Non Anon D/L : désactive le transfert de fichier Mode jeu : 25% du trafic standard et TODO : réduction des popups Trafic faible : 10% du trafic standard et TODO : tous les transferts de fichiers en pause - - OutQueueStatisticsWidget - - Outqueue statistics - Statistiques de file d'attente - - - By priority: - Par priorité : - - - By service : - Par service : - - PGPKeyDialog + Dialog Dialogue + PGP Key info Info de clé PGP + PGP name : Nom PGP : + Fingerprint : Empreinte : + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: Niveau de confiance : + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset Démettre + Unknown Inconnu + No trust Pas de confiance + Marginal Moyenne + Full Totale + Ultimate Ultime + Key signatures : Signatures de clé : + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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"> -<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;"> Signer la clé d'un ami est la manière d'exprimer votre confiance en cet ami, à vos autres amis. De plus, seuls les amis dont vous avez signé la clé pourront recevoir les informations sur vos autres amis de confiance.</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;">La signature d'une clé ne peut pas être révoquée, donc faîtes attention à qui vous accordez votre confiance.</p></body></html> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + Sign this PGP key Signer cette clé PGP + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Signer la clé PGP + + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections - Refuser les connexions + Refuser connexions + + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections - Accepter les connexions + Accepter connexions + ASCII format Format ASCII + + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Inclure les signatures + PGP Key details Détails de clé PGP + + + RetroShare RetroShare + + + Error : cannot get peer details. Erreur : impossible d'obtenir les détails de ce contact. + The supplied key algorithm is not supported by RetroShare (Only RSA keys are supported at the moment) L'algorithme de la clé fournie n'est pas supporté par Retroshare (pour l'instant uniquement les clés RSA sont supportées) + The trust level is a way to express your own trust in this key. It is not used by the software nor shared, but can be useful to you in order to remember good/bad keys. Le niveau de confiance est une façon d'exprimer votre propre confiance en cette clé. Cela n'est pas utilisé par le logiciel, ni partagé, mais cela peut être utile pour vous afin de vous rappeler les bonnes/mauvaises clés. + Your trust in this peer is ultimate Votre confiance dans ce contact est totale + Your trust in this peer is full. Vous faîtes pleinement confiance à ce contact. + Your trust in this peer is marginal. Vous faîtes moyennement confiance à ce contact. + Your trust in this peer is none. Vous ne faites pas confiance à ce contact. + + This key has signed your own PGP key Ce contact a signé votre propre clé PGP + <p>This PGP key (ID= <p>Cette clé PGP (ID= + You have chosen to accept connections from Retroshare nodes signed by this key. Vous avez choisi d'accepter les connexions venant des nœuds Retroshare signés par cette clé. + You are currently not allowing connections from Retroshare nodes signed by this key. Actuellement, vous n'autorisez pas les connexions de nœuds Retroshare signés par cette clé. + Signature Failure La signature a échoué + Maybe password is wrong Le mot de passe est peut-être incorrect + You haven't set a trust level for this key. Vous n'avez pas réglé de niveau de confiance pour cette clé. + This is your own PGP key, and it is signed by : Ceci est votre propre clé PGP, et elle a été signée par : + This key is signed by : Cette clé a été signée par : - - <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> - <html><head/><body><p>L'emprunte PGP est une caractéristique---supposée impossible à imiter--de votre clé PGP. Pour vérifier qu'une clé est la bonne, vérifiez son emprunte.</p></body></html> - - - <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> - <html><head/><body><p>Le parametre de confiance est pour votre usage personnel et peut être utilisé pour vous souvenir de votre opinion sur une clé particulière: Il n'est pas partagé avec les noeuds voisins. </p></body></html> - - - <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</span></p></body></html> - <html><head/><body><p><span style=" font-size:10pt;">Signer la clé d'un noeud ami est une facon d'exprimer sur le réseau votre confiance en cet ami. Cette information est partagée et signale à vos amis que vous reconnaissez une clé donnée comme valide.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</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:'Sans'; 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-size:10pt;">Signer la clé d'un noeud ami est une facon d'exprimer sur le réseau votre confiance en cet ami. Cette information est partagée et signale à vos amis que vous reconnaissez une clé donnée comme valide. Signer une clé est totallement optionel et ne peut pas être annulé.</span></p></body></html> - - - <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> - <html><head/><body><p><span style=" font-size:10pt;">Signer la clé d'un noeud ami est une facon d'exprimer sur le réseau votre confiance en cet ami. Cette information est partagée et signale à vos amis que vous reconnaissez une clé donnée comme valide.</span></p></body></html> - - - <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> - <html><head/><body><p>Clickez ici pour refuser les connexions de tout noeud autentifié par cette clé.</p></body></html> - - - <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> - <html><head/><body><p>Clickez ici pour accepter les connexions avec tout noeud autentifié par cette clé. Cette opération est normalement effectuée lors de 'échange de certificats, ce qui constitue une meilleure option car un certificat contient d'autre informations de connexion importantes (IP, DNS, SSL ids, etc).</p></body></html> - - - <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> - <html><head/><body><p>Inclure les signatures dans l'affichage ASCII de la clé. Voir les commentaires sur les signatures dans l'autre panneau </p></body></html> - PeerDefs + + + + + + Unknown - Inconnu + Inconnu PeerItem + Chat - Tchat + Tchat + Start Chat - Dialoguer + Dialoguer + + Expand - Développer + Développer + Remove Item - Effacer + Effacer + Name: - Nom : + Nom : + Peer ID: - ID du contact : + ID du contact : + Trust: - Confiance : + Confiance : + Location: - Emplacement : + Emplacement : + IP Address: - Adresse IP + Adresse IP + Connection Method: - Méthode de connexion : + Méthode de connexion : + Status: - Statut : + Statut : + Write Message - Écrire un message + Écrire un message + Friend - Ami + Ami + Friend Connected - Ami connecté + Ami connecté + Connect Attempt - Tentative de connexion + Tentative de connexion + Friend of Friend - Ami d'ami + Ami d'ami + Peer - Contact + Contact + + + + + + + + + Unknown Peer - Contact inconnu + Contact inconnu + Hide - Cacher + Cacher + Send Message - Envoyer le message + Envoyer le message PeerStatus + Friends: 0/0 - Amis : 0/0 + Amis : 0/0 + Online Friends/Total Friends - Amis en ligne/Nombre total d'amis + Amis en ligne/Nombre total d'amis + Friends - Amis + Amis PeopleDialog + + People - Gens + Pers. + External - Externe + Externe + + Drag your circles or people to each other. - Traînez vos cercles ou gens l'un vers l'autre. + Traînez vos cercles ou personnes les uns vers les autres. + Internal - Interne + Interne PhotoCommentItem + Form - Formulaire + Formulaire PhotoDialog + PhotoShare - PhotoShare + PhotoShare + Photo - Photo + Photo + TextLabel - Etiquette + Etiquette + Comment - Commentaire + Commentaire + Summary - Résumé + Résumé + Caption - Légende + Légende + Where: - Où : + Où : + Photo Title: - Titre de la photo : + Titre de la photo : + When - Quand : + Quand : + ... - ... + ... + Add Comment - Ajouter un commentaire + Ajouter un commentaire + Write a comment... - Ecrivez un commentaire... - - - <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; font-weight:600;">Photo View</span></p></body></html> - - - - Peer - Contact - - - Slideshow - - - - Thumb Image - - - - Image Name - - - - Date - Date - - - Location - - - - Size - Taille - - - PeerId - ID du pair - - - PhotoId - - - - Add Photo(s) - - - - Add Photo SlideShow - - - - Update Details - - - - Photo - - - - Description - Description - - - Insert Show Lists - - - - Open - Ouvrir - - - Remove - - - - Excellent - - - - Good - - - - Average - Normale - - - Below avarage - - - - Bad - - - - Unrated - - - - Rating - Évaluation + Ecrivez un commentaire... PhotoItem + Form - Formulaire + Formulaire + TextLabel - Etiquette + Etiquette + <!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; font-weight:600;">Photo Title :</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Titre de la photo :</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; font-weight:600;">Photographer :</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Photographe :</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; font-weight:600;">Author :</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;"> @@ -11653,974 +13179,951 @@ p, li { white-space: pre-wrap; } PhotoShare + Form - Formulaire + Formulaire + Create Album - Créer un album + Créer un album + View Album - Afficher l'album + Afficher l'album + Subscribe To Album - S'abonner à l'album + S'abonner à l'album + Slide Show - Diaporama + Diaporama + My Albums - Vos albums + Vos albums + Subscribed Albums - Albums abonnés + Albums abonnés + Shared Albums - Albums partagés + Albums partagés + View Photo - Afficher la photo + Afficher la photo + PhotoShare - PhotoShare + PhotoShare + Please select an album before requesting to edit it! - S'il vous plaît sélectionner un album + S'il vous plaît sélectionner un album avant de vouloir le modifier ! - - PhotoShow - - Photo Show - - - - Date: - - - - Location: - Emplacement : - - - Comment: - - - - Display Size: - - - - 320 x 320 - - - - 640 x 640 - - - - Full Size - - - - Play Rate: - - - - 1 Sec - - - - 2 Sec - - - - 5 Sec - - - - 10 Sec - - - - 20 Sec - - - - 1 Min - - - - Edit Photo Details - - - - Save Photo - - - - No Photo Selected - - - - Back - Retour - - - Start - Start - - - Play - - - - Pause - - - - Forward - - - PhotoSlideShow + Album Name - Nom de l'album + Nom de l'album + Image - Image + Image + Show/Hide Details - Afficher/cacher les détails + Afficher/cacher les détails + << - << + << + + Stop - Stop + Stop + >> - >> + >> + Close - Fermer + Fermer + Start - Start + Start + Start Slide Show - Lancer le diaporama + Lancer le diaporama + Stop Slide Show - Arrêter le diaporama + Arrêter le diaporama PluginFrame + Remove - Supprimer + Supprimer PluginItem + TextLabel - Etiquette + Etiquette + Show more details about this plugin - sera activé aprés le redémarrage de Retroshare + sera activé aprés le redémarrage de Retroshare + <!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=" font-size:8pt; 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"> + <!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;"><a href="more"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">Plus</span></a></p></body></html> + Enable this plugin (restart required) - Activer ce module complémentaire (redémarrage nécessaire) + Activer ce module complémentaire (redémarrage nécessaire) + Enable - Activer + Activer + Disable this plugin (restart required) - Désactiver ce module complémentaire (redémarrage nécessaire) + Désactiver ce module complémentaire (redémarrage nécessaire) + Disable - Désactiver + Désactiver + Launch configuration panel, if provided by the plugin - Lancement du panneau de configuration, s'il est fourni par l'extension + Lancement du panneau de configuration, s'il est fourni par l'extension + Configure - Configurer + Configurer + About - À propos + À propos + File name: - Nom du fichier : + Nom du fichier : + File hash: - Hash du fichier : + Hash du fichier : + Status: - Statut : + Statut : + will be enabled after your restart RetroShare. - sera activé aprés le redémarrage de Retroshare. + sera activé aprés le redémarrage de Retroshare. PluginManager + base folder %1 doesn't exist, default load failed - le dossier de base %1 n'existe pas, le chargement par défaut a échoué + le dossier de base %1 n'existe pas, le chargement par défaut a échoué + Error: instance '%1'can't create a widget - Erreur: l'instance '%1' ne peut pas créer un widget + Erreur: l'instance '%1' ne peut pas créer un widget + Error: no plugin with name '%1' found - Erreur : aucun plug-in trouvé ayant le nom '%1' + Erreur : aucun plug-in trouvé ayant le nom '%1' + Error(uninstall): no plugin with name '%1' found - Erreur (désinstallation) : aucune extension trouvée ayant le nom '%1' + Erreur (désinstallation) : aucune extension trouvée ayant le nom '%1' + Error(installation): plugin file %1 doesn't exist - Erreur (installation): le fichier plugin %1 n'existe pas + Erreur (installation): le fichier plugin %1 n'existe pas + Error: failed to remove file %1(uninstalling plugin '%2') - Erreur : échec de la suppression du fichier %1 (désinstallation de l'extension '%2') + Erreur : échec de la suppression du fichier %1 (désinstallation de l'extension '%2') + Error: can't copy %1 to %2 - Erreur : ne peut pas copier %1 vers %2 + Erreur : ne peut pas copier %1 vers %2 PluginManagerWidget + Install New Plugin... - Installation d'une nouvelle extension... + Installation d'une nouvelle extension... + Open Plugin to install - Ouvrir l'extension à installer + Ouvrir l'extension à installer + Plugins (*.so *.dll) - Extensions (*.so *.dll) + Extensions (*.so *.dll) + Widget for plugin %1 not found on plugins frame - Le widget (gadget) pour le plug-in %1 n'a pas été trouvé sur le cadre de plug-ins (plugins frame) + Le widget (gadget) pour le plug-in %1 n'a pas été trouvé sur le cadre de plug-ins (plugins frame) PluginsPage + Authorize all plugins - Autoriser toutes les extensions - - - Loaded plugins - Extensions chargées + Autoriser toutes les extensions + Plugin look-up directories - Dossiers des extensions + Dossiers des extensions - Hash rejected. Enable it manually and restart, if you need. - Hachage rejeté. Activer le manuellement et redémarrer, si vous avez besoin. + + Plugin disabled. Click the enable button and restart Retroshare + + + [disabled] + + + + No API number supplied. Please read plugin development manual. - Aucun numéro d'API fourni. S'il vous plaît lire le manuel de développement des extensions. + Aucun numéro d'API fourni. S'il vous plaît lire le manuel de développement des extensions. + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - Aucun numéro de SVN fourni. S'il vous plaît lire le manuel de développement des extensions. + Aucun numéro de SVN fourni. S'il vous plaît lire le manuel de développement des extensions. + Loading error. - Erreur de chargement. + Erreur de chargement. + Missing symbol. Wrong version? - Symbole manquant. Mauvaise version ? + Symbole manquant. Mauvaise version ? + No plugin object - Pas d'extension + Pas d'extension + Plugins is loaded. - L'extension est chargée + L'extension est chargée + Unknown status. - Statut inconnue. - - - Title unavailable - Titre indisponible - - - Description unavailable - Description indisponible - - - Unknown version - Version inconnue + Statut inconnue. + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from malicious behavior of crafted plugins. - Cochez cette case pour le développement des extensions. Elles ne seront pas + Cochez cette case pour le développement des extensions. Elles ne seront pas vérifié par hachage. Toutefois, dans des conditions normales en vérifiant la valeur de hachage cela vous protège contre les comportements malveillants des extensions. - Plugins - Extensions - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Extensions</h1> <p>Les extensions sont chargés depuis les répertoires listés dans la liste du bas.</p> <p>Pour des raisons de sécurité, les extensions reconnues sont chargées automatiquement jusqu'à ce que l'exécutable principal Retroshare ou que de la bibliothèque de plug-in changent. Dans un tel cas, l'utilisateur doit confirmer à nouveau. Après le démarrage du programme, vous pouvez activer un plugin manuellement en cliquant sur ​​le bouton "Activer" puis redémarrez Retroshare.</p> <p>Si vous voulez développer vos propres extensions, contactez l'équipe de développeurs, ils seront heureux de vous aider!</p> - - - Plugin disabled. Click the enable button and restart Retroshare - - - - [disabled] - - - - [loading problem] - - - + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Extensions</h1> <p>Les extensions sont chargées depuis les répertoires affichés dans la liste tout en bas.</p> <p>Pour des raisons de sécurité, les extensions reconnues sont chargées automatiquement, jusqu'à ce que l'exécutable principal Retroshare ou que de la bibliothèque de plug-in ne changent. Dans un tel cas, l'utilisateur doit confirmer les plugins à nouveau. Après le démarrage du programme, vous pouvez activer un plugin manuellement en cliquant sur ​​le bouton "Activer" puis ensuite redémarrer Retroshare.</p> <p>Si vous voulez développer vos propres extensions, contactez l'équipe de développeurs, ils seront heureux de vous aider !</p> + + + + + Plugins + Extensions PopularityDefs + Popularity - Popularité + Popularité PopupChatDialog + Clear offline messages - Effacer les messages hors ligne + Effacer les messages hors ligne + Hide Avatar - Cacher l'avatar + Cacher l'avatar + Show Avatar - Montrer l'avatar + Montrer l'avatar PopupChatWindow + Avatar - Avatar + Avatar + Set your Avatar Picture - Définir votre image d'avatar + Définir votre image d'avatar + + Dock tab - Activer les onglets + Activer les onglets + + Undock tab - Désactiver les onglets + Désactiver les onglets + + Set Chat Window Color - Définir la couleur de la fenêtre du tchat + Définir la couleur de la fenêtre du tchat + + Set window on top - Mettre la fenêtre sur le dessus + Mettre la fenêtre sur le dessus PopupDistantChatDialog - The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - La personne à laquelle vous parliez a supprimé le tunnel de tchat sécurisé. Vous pouvez maintenant supprimer la fenêtre de chat. - - - Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. - La fermeture de cette fenêtre met fin à la conversation, informez le contact puis supprimez le tunnel crypté. - - - Kill the tunnel? - Tuer ce tunnel ? - - - Hash Error. No tunnel. - Erreur de hachage. Pas de tunnel. - - - Can't send message, because there is no tunnel. - Ne peut pas envoyer le message, parce qu'il n'y a pas de tunnel. - - - Can't send message, because the chat partner deleted the secure tunnel. - Ne peut pas envoyer le message, parce que le partenaire de tchat a effacé le tunnel sécurisé. - - + Chat remotely closed. Please close this window. - + + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. + La personne à laquelle vous parliez a supprimé le tunnel de tchat sécurisé. Vous pouvez maintenant supprimer la fenêtre de chat. + + + + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. + La fermeture de cette fenêtre met fin à la conversation, informez le contact puis supprimez le tunnel chiffré. + + + + Kill the tunnel? + Tuer ce tunnel ? + + + + Can't send message, because there is no tunnel. + Ne peut pas envoyer le message, parce qu'il n'y a pas de tunnel. + + + + Can't send message, because the chat partner deleted the secure tunnel. + Ne peut pas envoyer le message, parce que le partenaire de tchat a effacé le tunnel sécurisé. PostedCreatePostDialog + Signed by: - Signé par : + Signé par : + Notes - Notes + Notes + RetroShare - Retroshare + Retroshare + Please create or choose a Signing Id first - S'il vous plaît créer ou choisir une Signing Id en premier + S'il vous plaît créer ou choisir une Signing Id en premier + Submit Post - Soumettre l'article + Soumettre l'article + You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - Vous proposez un lien. La clé d'une proposition réussie est un contenu intéressant et ayant un titre descriptif. + Vous proposez un lien. La clé d'une proposition réussie est un contenu intéressant et ayant un titre descriptif. + Submit - Soumettre + Soumettre + Submit a new Post - Soumettre un nouveau sujet + Soumettre un nouveau lien + Please add a Title - Veuillez ajouter un titre + Veuillez ajouter un titre + Title - Titre + Titre + Link - Lien + Lien PostedDialog + Posted Links - Liens publiés + Liens publiés + Posted - Publié - - - Create Topic - Créer un sujet - - - My Topics - Vos sujets - - - Subscribed Topics - Sujets abonnés - - - Popular Topics - Sujets populaires - - - Other Topics - Autres sujets - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Publication</h1> <p>Le service de publication vous permet de partager des liens internet, qui se propage entre les nœuds Retroshare comme les forums et les canaux</p> <p>Les liens peuvent être commentés par les utilisateurs inscrits. Un système de promotion donne également la possibilité de mettre en avant liens importants.</p> <p>Il n'y a aucune restriction lorsque ces liens sont partagés. Soyez donc prudent lorsque vous cliquez.</p> <p>Les publications sont effacées après %1 mois.</p> + Publié + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Publié</h1> <p>Le service de publication vous permet de partager des liens internet, qui se propagent entre les nœuds Retroshare à la manière des forums et des chaînes</p> <p>Les liens peuvent être commentés par les utilisateurs inscrits. Un système de promotion donne également la possibilité de mettre en avant les liens importants.</p> <p>Il n'y a aucune restriction concernant les liens qui sont partagés. Soyez prudent lorsque vous cliquez sur eux.</p> <p>Les publications sont effacées après %1 mois.</p> + + + + Create Topic + Créer un sujet + + + + My Topics + Vos sujets + + + + Subscribed Topics + Sujets abonnés + + + + Popular Topics + Sujets populaires + + + + Other Topics + Autres sujets PostedGroupDialog + Posted Topic - Sujet publié + Sujet publié + Add Topic Admins - Ajouter des admins au sujet + Ajouter des admins au sujet + Select Topic Admins - Selectionner les admins + Selectionner les admins + Create New Topic - Créer un nouveau sujet + Créer un nouveau sujet + Edit Topic - Éditer le sujet + Éditer le sujet + Update Topic - Mettre à jour le sujet + Mettre à jour le sujet + Create - Créer + Créer PostedGroupItem + Subscribe to Posted - Abonné à Posté + Abonné à Posté + + Expand - Montrer + Montrer + Remove Item - Supprimer l'élement + Supprimer l'élement + Posted Description - Description postée + Description postée + Loading - Chargement + Chargement + New Posted - Nouveau post + Nouveau post + Hide - Cacher + Cacher PostedItem + 0 - 0 + 0 + Site - Site + Site + + Comments - Commentaires + Commentaires + Comment - Commentaire + Commentaire + Vote up - Voter pour + Voter pour + Vote down - Voter contre + Voter contre + \/ - \/ + \/ + Set as read and remove item - Définir comme lu et supprimer l'élément + Définir comme lu et supprimer l'élément + New - Nouveau + Nouveau + Toggle Message Read Status - Changer l'état de lecture du message + Changer l'état de lecture du message + Remove Item - Supprimer + Supprimer + Loading - Chargement + Chargement + By - Par + Par PostedListWidget + Form - Formulaire + Formulaire + Hot - Hot + Chaud + New - Nouveau + Nouveau + Top - Top + Top + Today - Aujourd'hui + Aujourd'hui + Yesterday - Hier + Hier + This Week - Cette semaine + Cette semaine + This Month - Ce mois + Ce mois-ci + This Year - Cette année + Cette année + Submit a new Post - Soumettre un nouveau poste + Soumettre un nouveau lien + Next - Suivant + Suivant + RetroShare - RetroShare + RetroShare + Please create or choose a Signing Id before Voting - Veuillez créer ou choisir une ID de signature avant de voter + Veuillez créer ou choisir une ID de signature avant de voter + Previous - Précédent + Précédent + 1-10 - 1-10 + 1-10 PostedPage + Tabs - Onglets + Onglets + Posted - Publié + Publié + Open each topic in a new tab - Ouvrir chaque sujet dans un nouvel onglet + Ouvrir chaque sujet dans un nouvel onglet PostedUserNotify + Posted - Publié + Publié PrintPreview + RetroShare Message - Print Preview - Message Retroshare - Aperçu avant impression + Message Retroshare - Aperçu avant impression + Print - Imprimer + Imprimer + &Print... - Im&primer... + Im&primer... + Page Setup... - Mise en page... + Mise en page... + Zoom In - Zoom + + Zoom + + Zoom Out - Zoom - + Zoom - + &Close - &Fermer - - - - ProfileEdit - - Profile Edit - - - - Profile - - - - Category - - - - Thoughts - - - - Edit Profile Category - - - - Birthday - - - - School - - - - University - - - - Phone Number - - - - Favourite Books - - - - Favourite Music - - - - Favourite Films - - - - or Custom Entry - - - - Add Entry - - - - Move - - - - Close Editor - - - - Remove Profile Entry - - - - Move Profile Entry Up - - - - Move Profile Entry Down - + &Fermer ProfileManager + + Profile Manager - Gestionnaire de profil + Gestionnaire de profil + Name - Nom + Nom + Email - Courrier électronique + Courrier électronique + GID - GID + GID + + Export Identity - Exporter l'identité + Exporter l'identité + + RetroShare Identity files (*.asc) - Fichiers d'identité Retroshare (*.asc) + Fichiers d'identité Retroshare (*.asc) + Identity saved - Identité sauvegardée + Identité sauvegardée + Your identity was successfully saved It is encrypted You can now copy it to another computer and use the import button to load it - Votre identité a été enregistrée avec succès -Elle est cryptée + Votre identité a été enregistrée avec succès, +elle est chiffrée Vous pouvez maintenant la copier sur un autre ordinateur et utiliser le bouton d'importation pour la charger + Identity not saved - Identité non enregistrée + Identité non enregistrée + Your identity was not saved. An error occurred. - Votre identité n'a pas été enregistrée. Une erreur est survenue. + Votre identité n'a pas été enregistrée. Une erreur est survenue. + Import Identity - Importer une identité + Importer une identité + Identity not loaded - Identité non chargée + Identité non chargée + Your identity was not loaded properly: - Votre identité n'a pas été chargée correctement : + Votre identité n'a pas été chargée correctement : + New identity imported - Nouvelle identité importée + Nouvelle identité importée + Your identity was imported successfully: - Votre identité a été importée avec succès : + Votre identité a été importée avec succès : + Select Trusted Friend - Définir la confiance de vos amis + Définir la confiance de vos amis + Certificates (*.pqi *.pem) - Certificats (*.pqi *.pem) + Certificats (*.pqi *.pem) + <!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;"> +</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;">Select a Retroshare node key from the list below to be used on another computer, and press &quot;Export selected key.&quot;</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;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To create a new location on a different computer, select the identity manager in the login window. From there you can import the key file and create a new location for that key. </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;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Creating a new node with the same key allows your your friend nodes to accept you automatically.</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:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> @@ -12631,673 +14134,720 @@ 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;">Créer un nouveau noeud avec la même clé permet à vos noeuds amis de vous accepter automatiquement.</p></body></html> + Full keys available in your keyring: - Clés complètes disponibles dans votre trousseau de clés : + Clés complètes disponibles dans votre trousseau de clés : + Export selected key - Exporter la clé sélectionnée + Exporter la clé sélectionnée + You can use it now to create a new node. - Vous pouvez l'utiliser maintenant pour créer un nouveau noeud. - - - - ProfileView - - Profile View - - - - Name - - - - Peer ID - ID du contact - - - Last Post: - - - - <!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 Serif'; font-size:9pt; 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:16pt; vertical-align:sub;">Profile</span></p></body></html> - - - - Edit Profile - - - - Category - - - - Thoughts - - - - Favourite Files - - - - Size - Taille - - - Hash - Hash - - - Close Profile - - - - Clear Photo - - - - Change Photo - - - - Remove Favourite - - - - Clear Favourites - - - - Download File - Télécharger le fichier - - - Download All - - - - RetroShare - - - - Error : cannot get peer details. - Erreur : impossible d'obtenir les détails de ce contact. + Vous pouvez l'utiliser maintenant pour créer un nouveau noeud. ProfileWidget + + Edit status message - Modifier le message d'état + Modifier le message d'état + Copy Certificate - Copier le certificat + Copier le certificat + Profile Manager - Gestionnaire de profil + Gestionnaire de profil + Public Information - Information publique + Information publique + Name: - Nom : + Nom : + Location: - Emplacement : + Emplacement : + Peer ID: - ID du contact : + ID du contact : + Number of Friends: - Nombre d'amis : + Nombre d'amis : + Version: - Version : + Version : + Online since: - En ligne depuis : + En ligne depuis : + Other Information - Autres informations + Autres informations + My Address - Votre adresse + Votre adresse + Local Address: - Adresse locale : + Adresse locale : + External Address: - Adresse externe : + Adresse externe : + Dynamic DNS: - DNS dynamique : + DNS dynamique : + Addresses list: - Liste d'adresses : + Liste d'adresses : + + RetroShare - Retroshare + Retroshare + Sorry, create certificate failed - Désolé, la création du certificat a échoué + Désolé, la création du certificat a échoué + Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Votre certificat a été copié dans le presse-papier, collez-le et envoyez-le par courrier electronique ou par tout autre moyen + Votre certificat a été copié dans le presse-papier, collez-le et envoyez-le par courrier electronique ou par tout autre moyen PulseAddDialog + Post From: - Article de : + Article de : + + Account 1 - Compte 1 + Compte 1 + + Account 2 - Compte 2 + Compte 2 + + Account 3 - Compte 3 + Compte 3 + + Add to Pulse - Ajouter a Pulse + Ajouter a Pulse + filter - filtre + filtre + URL Adder - Additionneur URL + Additionneur URL + Display As - Afficher en tant que + Afficher en tant que + URL - URL + URL + Cancel - Annuler + Annuler + Post Pulse to Wire - Publier Pulse sur Wire + Publier Pulse sur Wire PulseItem + From - De + De + Date - Date + Date + + + ... - ... + ... QObject + + + Confirmation - Confirmation + Confirmation + Do you want this link to be handled by your system? - Voulez-vous que ce lien soit traité par votre système ? + Voulez-vous que ce lien soit traité par votre système ? + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. - Cliquez pour ajouter ce certificat Retroshare à votre porte-clés PGP + Cliquez pour ajouter ce certificat Retroshare à votre porte-clés PGP et ouvrir Ajouter un ami. + Add file - Ajouter un fichier + Ajouter un fichier + Add files - Ajouter des fichiers + Ajouter des fichiers + Do you want to process the link ? - Voulez-vous traiter le lien ? + Voulez-vous traiter le lien ? + Do you want to process %1 links ? - Souhaitez-vous traiter les %1 liens ? + Souhaitez-vous traiter les %1 liens ? + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. - %1 des %2 lien Retroshare traité. + %1 des %2 lien Retroshare traité. + %1 of %2 RetroShare links processed. - %1 des %2 liens Retroshare traités. + %1 des %2 liens Retroshare traités. + File added - Fichier ajouté + Fichier ajouté + Files added - Fichiers ajoutés + Fichiers ajoutés + File exist - Fichier existe + Fichier existe + Files exist - Fichiers existent + Fichiers existent + Friend added - Ami ajouté + Ami ajouté + Friends added - Amis ajoutés + Amis ajoutés + Friend exist - Ami existe + Ami existe + Friends exist - Amis existent + Amis existent + Friend not added - Ami non ajouté + Ami non ajouté + Friends not added - Amis non ajoutés + Amis non ajoutés + Friend not found - Ami non trouvé + Ami non trouvé + Friends not found - Amis non trouvés + Amis non trouvés + Forum not found - Forum non trouvé + Forum non trouvé + Forums not found - Forums non trouvés + Forums non trouvés + Forum message not found - Message du forum non trouvé + Message du forum non trouvé + Forum messages not found - Messages du forum non trouvés + Messages du forum non trouvés + Channel not found - Chaîne non trouvé + Chaîne non trouvé + Channels not found - Chaînes non trouvées + Chaînes non trouvées + Channel message not found - Message de la chaîne non trouvé + Message de la chaîne non trouvé + Channel messages not found - Messages de la chaîne non trouvés + Messages de la chaîne non trouvés + Recipient not accepted - Destinataire non accepté + Destinataire non accepté + Recipients not accepted - Destinataires non acceptés + Destinataires non acceptés + Unkown recipient - Destinataire inconnu + Destinataire inconnu + Unkown recipients - Destinataires inconnus + Destinataires inconnus + Malformed links - Le lien du fichier est incorrecte. + Le lien du fichier est incorrecte. + Invalid links - Liens non valides + Liens non valides + Warning: forbidden characters found in filenames. Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. - Avertissement : des caractères interdits sont utilisés dans les noms de fichiers. + Avertissement : des caractères interdits sont utilisés dans les noms de fichiers. Les caractères <b>",|,/,\,&lt;,&gt;,*,?</b> seront remplacés par des '_'. + Result - Résultat + Résultat + Unable to make path - Impossible de créer le chemin + Impossible de créer le chemin + Unable to make path: - Impossible de créer le chemin : + Impossible de créer le chemin : + Failed to process collection file - Impossible de créer le fichier collection + Impossible de créer le fichier collection + Deny friend - Ignorer cet ami + Refuser cet ami + Make friend - Devenir ami + Devenir ami + Peer details - Détails du contact + Détails du contact + File Request canceled - Demande de fichier annulée + Demande de fichier annulée + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. - Cette version de Retroshare utilise OpenPGP SDK. En contre partie, elle n'utilise plus le système de trousseau de clés PGP, mais possède son propre trousseau de clés partagé par toutes les instances de Retroshare. <br><br> Vous ne semblez pas posséder un tel trousseau, bien que des clés PGP apparaissent pour les comptes Retroshare existants, probablement parce que vous venez d'installer cette nouvelle version du logiciel. + Cette version de Retroshare utilise OpenPGP SDK. En contre partie, elle n'utilise plus le système de trousseau de clés PGP, mais possède son propre trousseau de clés partagé par toutes les instances de Retroshare. <br><br> Vous ne semblez pas posséder un tel trousseau, bien que des clés PGP apparaissent pour les comptes Retroshare existants, probablement parce que vous venez d'installer cette nouvelle version du logiciel. + 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> - Choisissez entre :<br><ul><li><b>Ok</b> copier le trousseau de clés existant de gnupg (choix le plus sûr), ou </li><li><b> Fermer sans enregistrer </b> repartir de zéro avec un trousseau de clés vide (il vous sera demandé de créer une nouvelle clé PGP pour Retroshare, ou d'importer une paire de clés PGP précédemment enregistrée). </li><li><b>Annuler</b> quitter et fabriquer un trousseau de clés par vous-même (avoir quelques compétences PGP)</li></ul> + Choisissez entre :<br><ul><li><b>Ok</b> copier le trousseau de clés existant de gnupg (choix le plus sûr), ou </li><li><b> Fermer sans enregistrer </b> repartir de zéro avec un trousseau de clés vide (il vous sera demandé de créer une nouvelle clé PGP pour Retroshare, ou d'importer une paire de clés PGP précédemment enregistrée). </li><li><b>Annuler</b> quitter et fabriquer un trousseau de clés par vous-même (avoir quelques compétences PGP)</li></ul> + + RetroShare - Retroshare + Retroshare + Initialization failed. Wrong or missing installation of PGP. - L'initialisation a échoué. Installation de PGP est corrompue ou manquante. + L'initialisation a échoué. Installation de PGP est corrompue ou manquante. + An unexpected error occurred. Please report 'RsInit::InitRetroShare unexpected return code %1'. - Une erreur inattendue s'est produite. Vous pouvez la reporter 'RsInit::InitRetroShare unexpected return code %1'. + Une erreur inattendue s'est produite. Vous pouvez la reporter 'RsInit::InitRetroShare unexpected return code %1'. + An unexpected error occured. Please report 'RsInit::InitRetroShare unexpected return code %1'. - Une erreur inattendue s'est produite. Vous pouvez la reporter 'RsInit::InitRetroShare unexpected return code %1'. + Une erreur inattendue s'est produite. Vous pouvez la reporter 'RsInit::InitRetroShare unexpected return code %1'. + + Multiple instances - Instances multiples + Instances multiples + Another RetroShare using the same profile is already running on your system. Please close that instance first Lock file: - Une autre instance de Retroshare utilise actuellement le même profil sur votre système. Veuillez dans un premier temps fermer ce profil puis réessayez de l'ouvrir. - Fichier vérrouillé : - + Une autre instance de RetroShare utilisant le même profil est actuellement en fonctionnement sur votre système. Veuillez d'abord la refermer. +Fichier verrouillé : + An unexpected error occurred when Retroshare tried to acquire the single instance lock Lock file: - Une erreur inattendue s'est produite lorsque Retroshare a essayé d'acquérir le verrou d'instance unique + Une erreur inattendue s'est produite lorsque Retroshare a essayé d'acquérir le verrou d'instance unique Fichier verrouillé : + Start with a RetroShare link is only supported for Windows. - Démarrer avec un lien Retroshare est seulement possible sous Windows. + Démarrer avec un lien Retroshare est seulement possible sous Windows. + Distant peer has closed the chat - Le contact distant a fermé le tchat + Le contact distant a fermé le tchat + Tunnel is pending... - Tunnel en attente... - - - Secured tunnel established. Waiting for ACK... - Tunnel sécurisé établi. En attente d'ACK ... + Tunnel en attente... + Secured tunnel is working. You can talk! - Le tunnel sécurisé fonctionne. Vous pouvez parler ! + Le tunnel sécurisé fonctionne. Vous pouvez parler ! + The collection file %1 could not be opened. Reported error is: %2 - Le fichier de collection %1 n'a pas pu être ouvert. + Le fichier de collection %1 n'a pas pu être ouvert. L'erreur rapportée est : %2 + Click to send a private message to %1 (%2). - Cliquer pour envoyer un message privé à %1 (%2). + Cliquer pour envoyer un message privé à %1 (%2). + %1 (%2, Extra - Source included) - %1 (%2, supplémentaire - source incluse) + %1 (%2, supplémentaire - source incluse) + Click this link to send a private message to %1 (%2) - Cliquez sur ce lien pour envoyer un message privé à %1 (%2) + Cliquez sur ce lien pour envoyer un message privé à %1 (%2) + RetroShare Certificate (%1, @%2) - Certificat RetroShare (%1, @%2) + Certificat RetroShare (%1, @%2) + secs - secs + secs + TR up - TR émis + TR émis + TR dn - TR reçus + TR reçus + Data up - Données envoyées + Données envoyées + Data dn - Données reçues + Données reçues + Data forward - Données transférées + Données transférées + You appear to have nodes associated to DSA keys: - Vous semblez avoir des noeuds associés à vos clés DSA : + Vous semblez avoir des noeuds associés à vos clés DSA : + DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - Les clés DSA ne sont pas encore supportées par cette version de RetroShare. Tous ces noeuds seront inutilisables. Nous sommes vraiment désolés pour cela. + Les clés DSA ne sont pas encore supportées par cette version de RetroShare. Tous ces noeuds seront inutilisables. Nous sommes vraiment désolés pour cela. + enabled - activé + activé + disabled - désactivé + désactivé + Join chat lobby - Rejoindre le salon de tchat + Rejoindre le salon de tchat + Move IP %1 to whitelist - Ajouter l'IP %1 en liste blanche + Ajouter l'IP %1 en liste blanche + Whitelist entire range %1 - Ajouter la plage entière %1 en liste blanche + Ajouter la plage entière %1 en liste blanche + whitelist entire range %1 - ajouter la plage entière %1 en liste blanche + ajouter la plage entière %1 en liste blanche + + %1 seconds ago - %1 secondes avant + %1 secondes avant + + %1 minute ago - %1 minute avant + %1 minute avant + + %1 minutes ago - %1 minutes avant + %1 minutes avant + + %1 hour ago - %1 heure avant + %1 heure avant + + %1 hours ago - %1 heures avant + %1 heures avant + + %1 day ago - %1 jour avant + %1 jour avant + + %1 days ago - il y a %1 jours + il y a %1 jours + Subject: - Sujet : + Sujet : + Participants: - Participants : + Participants : + Auto Subscribe: - Abonnement automatique : + Abonnement automatique : + Id: - Id : - - - This cert is malformed. Error code: - Ce certificat est mal formé. Code d'erreur : - - - The following has not been added to your download list, because you already have it: - Celui qui suit n'a pas été ajouté à votre liste de téléchargement, parce que vous l'avez déjà : + Id : + Security: no anonymous IDs - + + + + This cert is malformed. Error code: + Ce certificat est mal formé. Code d'erreur : + + + + The following has not been added to your download list, because you already have it: + Celui qui suit n'a pas été ajouté à votre liste de téléchargement, parce que vous l'avez déjà : + + + Error - Erreur + Erreur + unable to parse XML file! - - - - Select who can contact you: - - - - Group details - - - - Chat this peer - - - - This file already exists. Do you want to open it ? - + QuickStartWizard + Quick Start Wizard - Assistant de configuration rapide + Assistant de configuration rapide + <!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> @@ -13306,7 +14856,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Choose which files you share.</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;"> </span><img src=":/images/list_bullet_arrow.png" /><span style=" font-size:8pt;"> Get started using RetroShare.</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;"> @@ -13325,79 +14875,107 @@ 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;"> De commencer à utiliser Retroshare.</span></p></body></html> + + + + Next > - Suivant > + Suivant > + + + + + Exit - Quitter + Quitter + For best performance, RetroShare needs to know a little about your connection to the internet. - Pour obtenir de meilleures performances, Retroshare a besoin d'informations au sujet de votre connexion internet. + Pour obtenir de meilleures performances, Retroshare a besoin d'informations au sujet de votre connexion internet. + Choose your download speed limit: - Vitesse de réception maximale : + Vitesse de réception maximale : + + KB/s - Ko/s + Ko/s + Choose your upload speed limit: - Vitesse d'envoi maximale : + Vitesse d'envoi maximale : + Connection : - Connexion : + Connexion : + Automatic (UPnP) - Automatique (UPnP) + Automatique (UPnP) + Firewalled - Pare-feu + Pare-feu + Manually forwarded port - Redirection de port manuelle + Redirection de port manuelle + Discovery : - Découverte : + Découverte : + Public: DHT & Discovery - Publique : DHT & Découverte + Publique : DHT & Découverte + Private: Discovery Only - Privée : Découverte seulement + Privée : Découverte seulement + Inverted: DHT Only - Inversé : DHT seulement + Inversé : DHT seulement + Dark Net: None - Dark Net : Aucun + Dark Net : Aucun + + + + < Back - < Précédent + < Précédent + <!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, initially 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"> + <!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;"> @@ -13407,38 +14985,66 @@ p, li { white-space: pre-wrap; } <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;">Partage anonyme </span><span style=" font-family:'Sans'; font-size:8pt;">: vos fichiers sont accessibles par n'importe qui par l'intermédiaire d'un tunnel anonyme.</span></p></body></html> + Directory - Dossier + Dossier + + Network Wide - Anonyme + Anonyme + Browseable - Publique + Publique + Add - Ajouter + Ajouter + Remove - Supprimer + Supprimer + Automatically share incoming directory (Recommended) - Partager automatiquement le dossier de réception (recommandé) + Partager automatiquement le dossier de réception (recommandé) + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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"> + <!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;"> @@ -13447,15 +15053,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:'MS Shell Dlg 2'; font-size:8pt;">Amusez-vous bien avec 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> - <!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;"> @@ -13465,2550 +15072,2692 @@ 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 - Ne pas afficher d'avertissement à la fermeture de Retroshare + Ne pas afficher d'avertissement à la fermeture de Retroshare + Start Minimized - Démarrer en mode réduit + Démarrer en mode réduit + Start RetroShare when my System Starts. - Démarrer Retroshare au lancement du système + Démarrer Retroshare au lancement du système + Start minimized on system start - Minimiser au démarrage du système + Minimiser au démarrage du système + Finish - Fin de la configuration + Fin de la configuration + Select A Folder To Share - Choisir un dossier à partager + Choisir un dossier à partager + Shared Directory Added! - Le dossier partagé a été ajouté ! + Le dossier partagé a été ajouté ! + Warning! - Attention ! + Attention ! + Browsable - Visible + Parcourable + Universal - Universel + Universel + If checked, the share is anonymously shared to anybody. - Si coché, le partage est partagé anonymement avec tout le monde. + Si coché, le partage est partagé anonymement avec tout le monde. + If checked, the share is browsable by your friends. - Si coché, le partage est visible par vos amis. + Si coché, le partage est visible et parcourable par vos amis. + Please decide whether this directory is * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - Veuillez décider si ce répertoire est + Veuillez décider si ce répertoire est * À l'échelle du réseau : partagé anonymement à travers tout le réseau (ceci incluant vos amis) * Parcourable : parcourable par vos amis * Universel : les deux + Do you really want to stop sharing this directory ? - Etes-vous certain(e) de ne plus vouloir partager ce dossier ? - - - RetroShare Page Display Style - - - - Where do you want to have the buttons for the page? - Où voulez-vous avoir les boutons pour la page ? - - - ToolBar View - - - - List View - - - - <!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 align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Welcome to RetroShare.</span></p> -<p align="center" 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;">No Questions, No Limits, Pure Privacy. </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:14pt;"></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:14pt;">The QuickStart wizard helps you get 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-size:14pt;"></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:14pt;">This Wizard helps you </span><span style=" font-size:14pt; font-weight:600;">Add Friends</span><span style=" font-size:14pt;"> and </span><span style=" font-size:14pt; font-weight:600;">Add Shared Folders</span><span style=" font-size:14pt;">.</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:'Lucida Grande'; font-size:13pt;"></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:14pt;">You can restart the Wizard at anytime from the Toolbar.</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:14pt;"></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:14pt;">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:14pt;"></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Help I don't know what I'm doing! Someone just sent me a link...</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:14pt;"></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:14pt;">Firstly, </span><span style=" font-size:14pt; font-weight:600;">Don't Panic... </span><span style=" font-size:14pt;">Retroshare is easy to use. Most things are handled automatically for 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-size:14pt;"></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:14pt;">Retroshare is a </span><span style=" font-size:14pt; font-weight:600;">Secure Social Network</span><span style=" font-size:14pt;"> which allows you to privately share stuff with your friends. </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-size:14pt;"></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:14pt;">Follow the Instructions on each page of this wizard to setup Retroshare. (Click the &quot;Next&quot; Button!)</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:14pt;"></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:14pt;"></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Retroshare References</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-size:14pt; font-style:italic;"></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:14pt;">You will find more information about Retroshare on the Following Webpages:</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:14pt;"></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.retroshare.org"><span style=" font-family:'Lucida Grande'; font-size:13pt; text-decoration: underline; color:#0000ff;">Retroshare Offical Website</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"> -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 align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Invite Your Friends To Retroshare</span></p> -<p align="center" 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;">No Questions, No Limits, Pure Privacy. </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:14pt;"></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:14pt;">Increasing your number of friends makes Retroshare a more powerful tool. </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:14pt;"></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:14pt;">Each person provides a some content, </span><span style=" font-size:14pt; font-weight:600;">together with Retroshare</span><span style=" font-size:14pt;"> you form a </span><span style=" font-size:14pt; font-weight:600;">secure social network.</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:14pt; font-weight:600;"></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">How do I invite with 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-size:14pt;"></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:14pt;">Retroshare uses a Web of Trust to identify people. To connect with a friend, you must exchange &quot;Certificates&quot;</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:14pt;"></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:14pt;">This is easy to do: Click on the &quot;Launch Invite Email&quot; button below and an email will be created.</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:14pt;"></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:14pt;">Select your closest friends, add their email address, and send it!</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-size:14pt;"></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">How do I add Friends Certificates?</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:14pt;"></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:14pt;">If someone has sent you a Retroshare Invite Email, Click the &quot;Add Friend&quot; button below.</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:14pt;"></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:14pt;">Cut and Paste their invitation into the new Window and click Okay. Then click Make friend to add them.</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:14pt;"></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:14pt;">Be sure to send them your certificate as well, otherwise you will not connect.</span></p></body></html> - - - - Add Friend - Ajouter un ami - - - Launch Invite Email - - - - <!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 align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Setup your Shared Folders.</span></p> -<p align="center" 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;">No Questions, No Limits, Pure Privacy. </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:14pt;"></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:14pt;">Click the &quot;Add&quot; Button, and select which Folder you want to share with 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-size:14pt;"></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:14pt;">You can Share Folders in two different Modes:</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:14pt; font-weight:600;"> Browsable by friends</span><span style=" font-family:'Sans'; font-size:14pt;">: 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:14pt; font-weight:600;"> Anonymously shared</span><span style=" font-family:'Sans'; font-size:14pt;">: files can be downloaded by anybody through anonymous tunnels.</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-size:14pt;">When you add a new folder, It will be initially be shared both Anonymously and be Browsable by your 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-size:14pt;">Be sure to change the shared flags to your prefered settings.</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 align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Congratulations, you have just configured Retroshare.</span></p> -<p align="center" 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;">No Questions, No Limits, Pure Privacy. </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:14pt;"></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:14pt;">When your Friends reply with Invitations, Launch the Wizard again, Add Your Friends and Start Retrosharing!</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:14pt;"></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-size:14pt;"></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Getting the Most Out of 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:14pt;"></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:14pt; font-weight:600;">Invite your friends:</span><span style=" font-size:14pt;"> We suggest you get at least 5 friends to make Retroshare really useful.</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:14pt;"></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:14pt; font-weight:600;">Keep Retroshare running</span><span style=" font-size:14pt;">: You help make the network better by running Retroshare in the background.</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:14pt;"></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:14pt; font-weight:600;">Open a External Port </span><span style=" font-size:14pt;">on your Router via uPnP, this improves the Network Performance.</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:14pt;"></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:14pt;"></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Retroshare Tutorials</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:14pt; font-style:italic;"></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:14pt;">If you want to learn a little bit more about using Retroshare. Have a look at the following Websites:</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:14pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://pclosmag.com/html/Issues/201105/page14.html"><span style=" font-family:'Lucida Grande'; font-size:14pt; text-decoration: underline; color:#0000ff;">PcLinuxOS Tutorial. Part 1 getting started with Retroshare</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-family:'Lucida Grande'; font-size:14pt; text-decoration: underline; color:#0000ff;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://pclosmag.com/html/Issues/201104/page20.html"><span style=" font-family:'Lucida Grande'; font-size:14pt; text-decoration: underline; color:#0000ff;">PcLinuxOS Tutorial. Part 2 explaining the Windows</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-family:'Lucida Grande'; font-size:14pt; text-decoration: underline; color:#0000ff;"></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:18pt; font-weight:600; font-style:italic;">Thank you for trying out Retroshare. We hope that you find it useful.</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-size:14pt;"></p></body></html> - + Etes-vous certain(e) de ne plus vouloir partager ce répertoire ? RSGraphWidget + %1 KB - %1 Ko + %1 Ko + %1 MB - %1 Mo + %1 Mo + %1 GB - %1 Go + %1 Go RSImageBlockWidget + Form - Formulaire + Formulaire + The loading of embedded images is blocked. - Le chargement des images intégrées est bloqué. + Le chargement des images intégrées est bloqué. + Load images - Charger les images + Charger les images RSPermissionMatrixWidget + Allowed by default - Autorisé par défaut + Autorisé par défaut + Denied by default - Refusé par défaut + Refusé par défaut + Enabled for this peer - Permis pour ce pair + Permis pour ce pair + Disabled for this peer - Désactivé pour ce pair + Désactivé pour ce pair + Enabled by remote peer - Permis pour ce pair distant + Permis pour ce pair distant + Disabled by remote peer - Désactivé pour ce pair distant - - - Switched Off - Éteint - - - Service name: - Nom du service : - - - Peer name: - Nom du contact : - - - Peer Id: - ID du contact : + Désactivé par ce pair distant + Globally switched Off - + Globalement éteint + + + + Service name: + Nom du service : + + + + Peer name: + Nom du pair : + + + + Peer Id: + ID du pair : RSettingsWin + Error Saving Configuration on page - Une erreur est survenue lors de l'enregistrement de la configuration sur la page + Une erreur est survenue lors de l'enregistrement de la configuration sur la page RatesStatus + Down - Réception + Réception + Up - Émission + Émission + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - <strong>Réception :</strong> 0.00 (kB/s) | <strong>Émission :</strong> 0.00 (kB/s) + <strong>Réception :</strong> 0.00 (kB/s) | <strong>Émission :</strong> 0.00 (kB/s) RelayPage + Enable Relay Connections - Activer les connexions relais + Activer les connexions relais + Use Relay Servers - Utiliser les serveurs relais + Utiliser les serveurs relais + Relay options - Options des relais + Options des relais + Number - Nombre + Nombre + Bandwidth per link - Bande passante par lien + Bande passante par lien + Total Bandwidth - Bande passante totale + Bande passante totale + Friends - Amis + Amis + + + kB/s - Ko/s + Ko/s + Friends of Friends - Amis de vos amis + Amis de vos amis + General - Général + Général + Total: - Total : + Total : + Relay Server Setup - Configuration du serveur relais + Configuration du serveur relais + Add Server - Ajouter un serveur + Ajouter un serveur + Server DHT Key - Clé DHT du serveur + Clé DHT du serveur + Remove Server - Supprimer serveur + Supprimer serveur + Relay - Relais - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relais</h1> <p>En activant les relais, vous permettez à votre Retroshare d'agir comme un pont entre les utilisateurs qui ne peuvent pas se connecter directement, par exemple lorsqu'ils sont derrière un Firewall.</p> <p>Vous pouvez choisir de servir de relais en cochant <i>Activer les connexions relais</i>, ou tout simplement profiter d'autres serveurs relais en cochant <i>Utiliser les serveurs relais</i>. Pour les premiers, vous pouvez spécifier la bande passante allouée lorsqu'il agit comme un relais pour les amis à vous, pour les amis de vos amis, ou pour n'importe qui dans le réseau Retroshare.</p> <p>Dans tous les cas, un nœud Retroshare agissant comme un relais ne peut pas voir le trafic relayé, car le trafic est crypté et authentifié par les deux nœuds relayés.</p> + Relais + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> - + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relais</h1> <p>En activant les relais, vous permettez à votre Retroshare d'agir comme un pont entre les utilisateurs qui ne peuvent pas se connecter directement, par exemple lorsqu'ils sont derrière un pare-feu (firewall).</p> <p>Vous pouvez choisir de servir de relais en cochant <i>Activer les connexions relais</i>, ou tout simplement profiter d'autres serveurs relais en cochant <i>Utiliser les serveurs relais</i>. Pour les premiers, vous pouvez spécifier la bande passante allouée lorsqu'il agit comme relais pour des amis à vous, pour des amis de vos amis, ou pour n'importe qui dans le réseau Retroshare.</p> <p>Dans tous les cas, un nœud Retroshare agissant comme un relais ne peut pas voir le trafic relayé, car le trafic est chiffré et authentifié par les deux nœuds relayés.</p> RemoteSharedFilesDialog + Download - Télécharger + Télécharger + Recommend in a message to - Recommander par messagerie à + Recommander par messagerie à + Collection - Collection + Collection RetroshareDirModel + NEW - NOUVEAU + NOUVEAU RsBanListDefs + IP address not checked - Adresse IP non vérifiée + Adresse IP non vérifiée + IP address is blacklisted - L'adresse IP est en liste noire + L'adresse IP est en liste noire + IP address is not whitelisted - L'adresse IP n'est pas en liste blanche + L'adresse IP n'est pas en liste blanche + IP address accepted - Adresse IP acceptée + Adresse IP acceptée + Unknown - Inconnu + Inconnue RsBanListToolButton + Add IP to whitelist - Ajouter l'IP dans liste blanche + Ajouter l'IP à la liste blanche + Remove IP from whitelist - Retirer l'IP de la liste blanche + Retirer l'IP de la liste blanche + Add IP to blacklist - Ajouter l'IP à la liste noire + Ajouter l'IP à la liste noire + Remove IP from blacklist - Retirer l'IP de la liste noire + Retirer l'IP de la liste noire + Only IP - Seulement l'IP + Seulement l'IP + + Entire range - Plage entière + Plage entière RsCollectionDialog + Collection - Collection + Collection + File name : - Nom du fichier : + Nom du fichier : + Total size : - Taille totale : + Taille totale : + + Cancel - Annuler + Annuler + Download! - Télécharger ! + Télécharger ! + File - Fichier + Fichier + Size - Taille + Taille + Hash - Hash + Hash + Bad filenames have been cleaned - Les mauvais noms de fichiers ont été nettoyé + Les mauvais noms de fichiers ont été nettoyé + Some filenames or directory names contained forbidden characters. -Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. +Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replaced by '_'. Concerned files are listed in red. - Des fichiers ou des noms de dossier contiennent des caractères interdits. + Des fichiers ou des noms de dossier contiennent des caractères interdits. Les caractères <b>",|,/,\,&lt;,&gt;,*,?</b> seront remplacés par des '_'. Les fichiers concernés sont affichés en rouge. + Selected files : - Fichiers choisis : + Fichiers choisis : + ... - ... + ... + <html><head/><body><p>Add selected item to collection one by one.</p><p>Select parent dir to add this too.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Enter&gt;</span></p></body></html> - <html><head/><body><p>Ajouter à la collection les articles sélectionnés un par un.</p><p>Sélectionner le répertoire parent pour ajouter ceci aussi.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Entrée&gt;</span></p></body></html> + <html><head/><body><p>Ajouter à la collection les articles sélectionnés un par un.</p><p>Sélectionner le répertoire parent pour ajouter ceci aussi.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Entrée&gt;</span></p></body></html> + <html><head/><body><p>Add selected item to collection.</p><p>If a directory is selected, all of his children will be added.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Enter&gt;</span></p></body></html> - <html><head/><body><p>Ajouter à la collection l'article sélectionné.</p><p>Si un répertoire est sélectionné, tous ses enfants seront ajoutés.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Entrée&gt;</span></p></body></html> + <html><head/><body><p>Ajouter à la collection l'article sélectionné.</p><p>Si un répertoire est sélectionné, tous ses enfants seront ajoutés.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Entrée&gt;</span></p></body></html> + >> - >> + >> + <html><head/><body><p>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - <html><head/><body><p>Faire une nouveau dossier dans la collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> + <html><head/><body><p>Faire une nouveau dossier dans la collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> + + - + + + + Save - Sauvegarder + Sauvegarder + Collection Editor - Éditeur de collection + Éditeur de collection + File Count - Compte fichiers + Compte fichiers + This is the root directory. - Ceci est le répertoire racine. + Ceci est le répertoire racine. + + Real Size: Waiting child... - Taille réelle : attente d'enfant... + Taille réelle : attente d'enfant... + + Real File Count: Waiting child... - Compte réel de fichiers : attente d'enfant... + Compte réel de fichiers : attente d'enfant... + This is a directory. Double-click to expand it. - Ceci est un dossier. Double-cliquez pour l'étendre. + Ceci est un dossier. Double-cliquez pour l'étendre. + + Real Size=%1 - Vraie taille = %1 + Vraie taille = %1 + + Real File Count=%1 - Vrai nombre de fichiers = %1 + Vrai nombre de fichiers = %1 + Save Collection File. - Sauvegarder fichier collection. + Sauvegarder fichier collection. + What do you want to do? - Que voulez-vous faire ? + Que voulez-vous faire ? + Overwrite - Écraser + Écraser + Merge - Mêler + Mêler + Warning, selection contains more than %1 items. - Attention, la sélection contient plus de %1 éléments. + Attention, la sélection contient plus de %1 éléments. + Do you want to remove them and all their children, too? <br> - Voulez-vous les enlever et tous leurs enfants aussi ? <br> + Voulez-vous les enlever et tous leurs enfants aussi ? <br> + New Directory - Nouveau dossier + Nouveau dossier + Enter the new directory's name - Entrez le nom du nouveau dossier + Entrez le nom du nouveau dossier + <html><head/><body><p>Change the file where collection will be saved.</p><p>If you select an existing file, you could merge it.</p></body></html> - <html><head/><body><p>Changer le fichier où la collection sera sauvegardée.</p><p>Si vous sélectionnez un fichier existant, vous pourrez le fusionner.</p></body></html> + <html><head/><body><p>Changer le fichier où la collection sera sauvegardée.</p><p>Si vous sélectionnez un fichier existant, vous pourrez le fusionner.</p></body></html> + File already exists. - Le fichier existe déjà. + Le fichier existe déjà. + <html><head/><body><p>Remove selected item from collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Del&gt;</span></p></body></html> - <html><head/><body><p>Enlever de la collection l'article sélectionné.</p><p><span style=" font-style:italic; vertical-align:sub;"><Suppr></span></p></body></html> + <html><head/><body><p>Enlever de la collection l'article sélectionné.</p><p><span style=" font-style:italic; vertical-align:sub;"><Suppr></span></p></body></html> RsCollectionFile + + Cannot open file %1 - Ne peut pas ouvrir le fichier %1 + Ne peut pas ouvrir le fichier %1 + Error parsing xml file - Erreur d'analyse du fichier xml + Erreur d'analyse du fichier xml + Open collection file - Ouvrir le fichier collection + Ouvrir le fichier collection + + + + Collection files - Fichiers collection + Fichiers collection + + + Create collection file - Créer un fichier collection + Créer un fichier collection + This file contains the string "%1" and is therefore an invalid collection file. If you believe it is correct, remove the corresponding line from the file and re-open it with Retroshare. - Le fichier contient la chaîne "%1" et donc ce qui en fait un fichier de collection incorrecte. + Le fichier contient la chaîne "%1" et donc ce qui en fait un fichier de collection incorrecte. Si vous pensez qu'il est correct, supprimez la ligne correspondante du fichier et ré-ouvrez le avec Retroshare. + Save Collection File. - Sauvegarder fichier collection. + Sauvegarder fichier collection. + What do you want to do? - Que voulez-vous faire ? + Que voulez-vous faire ? + Overwrite - Écraser + Écraser + Merge - Mêler + Mêler + Cancel - Annuler + Annuler + File already exists. - Le fichier existe déjà. + Le fichier existe déjà. RsHtml + Image is oversized for transmission. Reducing image to %1x%2 pixels? - L'image est trop grande pour la transmission. + L'image est trop grande pour la transmission. Réduire l'image par %1x%2 pixels ? RsNetUtil + Invalid format - Format invalide + Format invalide Rshare + Resets ALL stored RetroShare settings. - Réinitialisation de tous les paramètres de Retroshare. + Réinitialisation de tous les paramètres de Retroshare. + Sets the directory RetroShare uses for data files. - Définit le dossier utilisé par Retroshare pour stocker le profil utilisateur. + Définit le dossier utilisé par Retroshare pour stocker le profil utilisateur. + Sets the name and location of RetroShare's logfile. - Définit le nom et l'emplacement des fichiers log de Retroshare. + Définit le nom et l'emplacement des fichiers log de Retroshare. + Sets the verbosity of RetroShare's logging. - Définit la verbosité du log de Retroshare. + Définit la verbosité du log de Retroshare. + Sets RetroShare's interface style. - Définit le style visuel de Retroshare. + Définit le style visuel de Retroshare. + Sets RetroShare's interface stylesheets. - Définit la feuille de style de l'interface de Retroshare. + Définit la feuille de style de l'interface de Retroshare. + Sets RetroShare's language. - Définit la langue de Retroshare. + Définit la langue de Retroshare. + RetroShare Usage Information - Information sur l'utilisation de Retroshare + Information sur l'utilisation de Retroshare + Unable to open log file '%1': %2 - Impossible d'ouvrir le journal '%1': %2 + Impossible d'ouvrir le journal '%1': %2 + built-in - intégré + intégré + Could not create data directory: %1 - N'a pas pu créer le dossier de données : %1 + N'a pas pu créer le dossier de données : %1 + Revision - Révision + Révision + Invalid language code specified: - Le code de langue indiqué n'est pas valide : + Le code de langue indiqué n'est pas valide : + Invalid GUI style specified: - Le style visuel de l'interface indiqué n'est pas valide : + Le style visuel de l'interface indiqué n'est pas valide : + Invalid log level specified: - Niveau du journal spécifié invalide : + Niveau du journal spécifié invalide : RttStatistics + RTT Statistics - Statistiques RTT - - - - SFListDelegate - - B - O - - - KB - Ko - - - MB - Mo - - - GB - Go + Statistiques RTT SearchDialog + Enter a keyword here (at least 3 char long) - Entrez un mot clé ici (minimum 3 caractères) + Entrez un mot clé ici (minimum 3 caractères) + Start Search - Lancer la recherche + Lancer la recherche + Search - Rechercher + Rechercher + Advanced Search - Recherche avancée + Recherche avancée + Advanced - Avancé + Avancé + Search inside "browsable" files of your friends - Rechercher dans les dossiers "consultables" de vos amis + Rechercher dans les dossiers "consultables" de vos amis + Browsable files - Fichiers consultables + Fichiers consultables + Multi-hop search at distance 6 in the network (always reports available files) - Recherche jusqu'à 6 niveaux de contacts dans le réseau + Recherche jusqu'à 6 niveaux de contacts dans le réseau (toujours proposer des fichiers disponibles) + Distant - Distant + Distant + Include files from your own file list in the search result - Afficher vos fichiers dans les résultats de recherche + Afficher vos fichiers dans les résultats de recherche + Own files - Vos fichiers + Vos fichiers + Close all Search Results - Fermer tous les résultats de recherche + Fermer tous les résultats de recherche + Clear - Effacer + Effacer + KeyWords - Mots clés + Mots clés + Results - Résultats + Résultats + Search Id - ID de recherche + ID de recherche + Filename - Nom du fichier + Nom du fichier + Size - Taille + Taille + Sources - Sources + Sources + Type - Type + Type + Age - Ancienneté + Ancienneté + Hash - Hash + Hash + Filter: - Filtre : + Filtre : + Filter Search Result - Résultats filtrés + Résultats filtrés + Max results: - Résultats max : + Résultats max : + Any - Tout + Tout + Archive - Archive + Archive + Audio - Audio + Audio + CD-Image - Image Disque + Image Disque + Document - Document + Document + Picture - Image + Image + Program - Programme + Programme + Video - Vidéo + Vidéo + Directory - Dossier + Dossier + Download Selected - Télécharger la sélection + Télécharger la sélection + Download selected - Télécharger la sélection + Télécharger la sélection + File Name - Nom du fichier + Nom du fichier + Download - Télécharger + Télécharger + + Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare + Send RetroShare Link - Envoyer le lien Retroshare + Envoyer le lien Retroshare + Download Notice - Télécharger la notice + Télécharger la notice + Skipping Local Files - Les fichiers que vous possédez déjà seront ignorés + Les fichiers que vous possédez déjà seront ignorés + + Sorry - Désolé + Désolé + + This function is not yet implemented. - Cette fonction n'est pas encore activée. + Cette fonction n'est pas encore activée. + Search again - Relancer la recherche + Relancer la recherche + Remove - Supprimer + Supprimer + Remove All - Tout supprimer + Tout supprimer + + Folder - Dossier + Dossier + New RetroShare Link(s) - Nouveau(x) lien(s) Retroshare + Nouveau(x) lien(s) Retroshare + Open Folder - Ouvrir répertoire + Ouvrir répertoire + Create Collection... - Créer une collection ... + Créer une collection ... + Modify Collection... - Modifier collection ... + Modifier collection ... + View Collection... - Vue collection ... + Vue collection ... + Download from collection file... - Télécharger à partir d'un fichier collection... + Télécharger à partir d'un fichier collection... + Collection - Collection + Collection SecurityIpItem + Peer details - Détails du contact + Détails du contact + + Expand - Étendre + Étendre + Remove Item - Supprimer élément + Supprimer élément + IP address: - Adresse IP : + Adresse IP : + Peer ID: - ID du contact : + ID du contact : + Location: - Emplacement : + Emplacement : + Peer Name: - Nom du contact: + Nom du contact: + + + Unknown Peer - Contact inconnu + Contact inconnu + Hide - Cacher + Cacher + but reported: - mais signalé : + mais signalé : + Wrong external ip address reported - Mauvaise adresse IP externe signalée + Mauvaise adresse IP externe signalée + IP address %1 was added to the whitelist - L'adresse IP %1 a été ajouté en liste blanche + L'adresse IP %1 a été ajouté en liste blanche + <p>This is the external IP your Retroshare node thinks it is using.</p> - <p>Ceci est l'IP externe que votre noeud Retroshare pense utiliser.</p> + <p>Ceci est l'IP externe que votre noeud Retroshare pense utiliser.</p> + <p>This is the IP your friend claims it is connected to. If you just changed IPs, this is a false warning. If not, that means your connection to this friend is forwarded by an intermediate peer, which would be suspicious.</p> - <p>Ceci est l'IP à laquelle votre ami prétend être connecté. Si vous avez juste changé d'IPs, ceci est une fausse alerte. Sinon, cela signifie que votre connexion à cet ami est retransmise via un pair intermédiaire, ce qui serait suspect.</p> + <p>Ceci est l'IP à laquelle votre ami prétend être connecté. Si vous avez juste changé d'IPs, ceci est une fausse alerte. Sinon, cela signifie que votre connexion à cet ami est retransmise via un pair intermédiaire, ce qui serait suspect.</p> + + <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> - <html><head/><body><p>Cet avertissement est ici pour vous protéger contre les attaques visant le traffic transféré. Dans un tel cas, l'ami auquel vous êtes connecté ne verra pas votre IP externe, mais celle de l'attaquant. </p><p><br/></p><p>Cependant, si vous avez juste changé d'IP pour quelque raison que ce soit (quelques fournisseurs d'accès Internet forcent régulièrement le changement d'IPs) cet avertissement vous informe juste qu'un ami s'est connecté à la nouvelle IP avant que Retroshare n'aie compris que l'IP avait changé. Dans ce cas tout va bien.</p><p><br/></p><p>Vous pouvez facilement supprimer les fausses alertes en mettant en liste blanche vos propres IPs (par exemple la plage d'adresses de votre votre fournisseur d'accès Internet), ou en mettant complètement hors de service ces avertissements dans Options -&gt; Notifications -&gt; le Fil d'actualités.</p></body></html> + <html><head/><body><p>Cet avertissement est ici pour vous protéger contre les attaques visant le traffic transféré. Dans un tel cas, l'ami auquel vous êtes connecté ne verra pas votre IP externe, mais celle de l'attaquant. </p><p><br/></p><p>Cependant, si vous avez juste changé d'IP pour quelque raison que ce soit (quelques fournisseurs d'accès Internet forcent régulièrement le changement d'IPs) cet avertissement vous informe juste qu'un ami s'est connecté à la nouvelle IP avant que Retroshare n'aie compris que l'IP avait changé. Dans ce cas tout va bien.</p><p><br/></p><p>Vous pouvez facilement supprimer les fausses alertes en mettant en liste blanche vos propres IPs (par exemple la plage d'adresses de votre votre fournisseur d'accès Internet), ou en mettant complètement hors de service ces avertissements dans Options -&gt; Notifications -&gt; le Fil d'actualités.</p></body></html> SecurityItem + wants to be friend with you on RetroShare - veut devenir ton ami(e) sur Retroshare + veut devenir ton ami(e) sur Retroshare + Accept Friend Request - Accepter la demande d'amitié + Accepter la demande d'amitié + Peer details - Détails du contact + Détails du contact + Deny friend - Ignorer cet ami + Refuser cet ami + Chat - Tchat + Tchat + Start Chat - Dialoguer + Dialoguer + + Expand - Déplier + Déplier + Remove Item - Supprimer + Supprimer + Name: - Nom : + Nom : + Peer ID: - ID du contact : + ID du contact : + Trust: - Confiance : + Confiance : + Location: - Emplacement : + Emplacement : + IP Address: - Adresse IP : + Adresse IP : + Connection Method: - Méthode de connexion : + Méthode de connexion : + Status: - Statut : + Statut : + Write Message - Envoyer un message + Envoyer un message + Connect Attempt - Tentative de connexion + Tentative de connexion + Connection refused by remote peer - Le contact ne vous a pas encore accepté + Le contact ne vous a pas encore accepté + Unknown (Incoming) Connect Attempt - Tentative de connexion (entrante) inconnue + Tentative de connexion (entrante) inconnue + Unknown (Outgoing) Connect Attempt - Tentative de connexion (sortante) inconnue + Tentative de connexion (sortante) inconnue + Unknown Security Issue - Problème de sécurité inconnue + Problème de sécurité inconnue + + + + + Unknown Peer - Contact inconnu + Contact inconnu + Hide - Cacher + Cacher + Do you want to remove this Friend? - Désirez-vous supprimer cet ami ? + Désirez-vous supprimer cet ami ? + Certificate has wrong signature!! This peer is not who he claims to be. - Ce certificat a une signature erronée ! Cette personne n'est pas celle qu'elle prétend être. + Ce certificat a une signature erronée ! Cette personne n'est pas celle qu'elle prétend être. + Missing/Damaged certificate. Not a real Retroshare user. - Certificat manquant/endommagé. Ce n'est pas un utilisateur réel de Retroshare. + Certificat manquant/endommagé. Ce n'est pas un utilisateur réel de Retroshare. + Certificate caused an internal error. - Ce certificat a provoqué une erreur interne. + Ce certificat a provoqué une erreur interne. + Peer/node not in friendlist (PGP id= - Le pair/noeud n'est pas dans la liste d'amis (ID PGP= + Le pair/noeud n'est pas dans la liste d'amis (ID PGP= + Missing/Damaged SSL certificate for key - Le certificat SSL de cette clé est manquant/endommagé + Le certificat SSL de cette clé est manquant/endommagé ServerPage + Network Configuration - Configuration du réseau + Configuration du réseau + + Network Mode + + + + + Nat + + + + Automatic (UPnP) - Automatique (UPnP) + Automatique (UPnP) + Firewalled - Pare-feu + Pare-feu + Manually Forwarded Port - Redirection de port manuelle + Redirection de port manuelle + Public: DHT & Discovery - Publique : DHT & Découverte + Publique : DHT & Découverte + Private: Discovery Only - Privé : Découverte seulement + Privé : Découverte seulement + Inverted: DHT Only - Inversé : DHT seulement + Inversé : DHT seulement + Dark Net: None - Dark Net : Aucun + Dark Net : Aucun + + Local Address - Adresse locale + Adresse locale + External Address - Adresse externe + Adresse externe + Dynamic DNS - DNS dynamique + DNS dynamique + + Port: - Port : + Port : + Local network - Réseau local + Réseau local + External ip address finder - Découverte de l'adresse IP externe + Découverte de l'adresse IP externe + UPnP - UPnP + UPnP + Known / Previous IPs: - IPs connues / précédentes : + IPs connues / précédentes : + Show Discovery information in statusbar - Montrer les informations de découverte dans la barre d'état + Montrer les informations de découverte dans la barre d'état + If you uncheck 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. - Si vous décochez cette case, Retroshare ne pourra déterminer votre adresse IP + Si vous décochez cette case, Retroshare ne pourra déterminer votre adresse IP que si vous vous connectez à quelqu'un. Laisser cette case cochée vous aidera à vous connecter si vous avez peu d'amis. Cela vous aidera aussi si vous êtes derrière un pare-feu ou un VPN (virtual private network). + Allow RetroShare to ask my ip to these websites: - Autoriser Retroshare à récupérer mon adresse IP à partir de ces sites : + Autoriser Retroshare à récupérer mon adresse IP à partir de ces sites : + + kB/s - Ko/s + Ko/s + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - La gamme de ports acceptables s'étend de 10 à 65535. Normalement les ports en dessous de 1024 sont réservés à votre système. + La gamme de ports acceptables s'étend de 10 à 65535. Normalement les ports en dessous de 1024 sont réservés à votre système. + Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - La gamme de ports acceptables s'étend de 10 à 65535. Normalement les ports en dessous de 1024 sont réservés à votre système. + La gamme de ports acceptables s'étend de 10 à 65535. Normalement les ports en dessous de 1024 sont réservés à votre système. + Onion Address - Adresse Onion - - - Expected torrc Port Configuration: - Configuration de port torrc attendue : - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 + Adresse Onion + Discovery On (recommended) - Découverte activée (recommandé) + Découverte activée (recommandé) + Discovery Off - Découverte désactivée + Découverte désactivée + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - Le proxy semble fonctionner. + Le proxy semble fonctionner. + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - [Mode caché] + [Mode caché] + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> - <html><head/><body><p>Ceci vide la liste d'adresses connues. Cette action est utile si, pour une raison quelconque, votre liste d'adresse contient une adresse invalide/sans rapport/expirée que vous voulez éviter de passer à vos amis en tant qu'adresse de contact.</p></body></html> + <html><head/><body><p>Ceci vide la liste d'adresses connues. Cette action est utile si, pour une raison quelconque, votre liste d'adresse contient une adresse invalide/sans rapport/expirée que vous voulez éviter de passer à vos amis en tant qu'adresse de contact.</p></body></html> + Clear - Effacer + Effacer + Download limit (KB/s) - Limite de téléchargement (KB/s) + Limite de téléchargement (KB/s) + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - <html><head/><body><p>Cette limite du téléchargement concerne l'application entière. Cependant, dans quelques situations, comme lors du transfert de beaucoup de petits fichiers simultanément, la bande passante évaluée devient incertaine et la valeur totale rapportée par Retroshare peut excéder cette limite.</p></body></html> + <html><head/><body><p>Cette limite du téléchargement concerne l'application entière. Cependant, dans quelques situations, comme lors du transfert de beaucoup de petits fichiers simultanément, la bande passante évaluée devient incertaine et la valeur totale rapportée par Retroshare peut excéder cette limite.</p></body></html> + Upload limit (KB/s) - Limite d'envoi (KB/s) + Limite d'envoi (KB/s) + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - <html><head/><body><p>La limite de téléversement (upload) concerne le logiciel entier. Une trop petite limite de téléversement pourrait éventuellement bloquer des services à basse priorité (forums, chaînes). La valeur minimum recommandée est 50 Ko/s. </p></body></html> + <html><head/><body><p>La limite de téléversement (upload) concerne le logiciel entier. Une trop petite limite de téléversement pourrait éventuellement bloquer des services à basse priorité (forums, chaînes). La valeur minimum recommandée est 50 Ko/s. </p></body></html> + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test - Test + Test + Network - Réseau + Réseau + IP Filters - Filtres d'IP + Filtres d'IP + IP blacklist - Liste noire d'IP + Liste noire d'IP + + IP range - Plage d'IP + Plage d'IP + + + Status - Statut + Statut + + + Origin - Origine + Origine + + Reason - Raison + Raison + + + Comment - Commentaire + Commentaire + IPs - IPs + IPs + IP whitelist - Liste blanche d'IP + Liste blanche d'IP + Manual input - Saisie manuelle + Saisie manuelle + <html><head/><body><p>Enter an IP range. Accepted formats:</p><p>193.190.209.15</p><p>193.190.209.15/24</p><p>193.190.209.15/16</p></body></html> - <html><head/><body><p>Entrer une plage d'IP. Formats accepté:</p><p>193.190.209.15</p><p>193.190.209.15/24</p><p>193.190.209.15/16</p></body></html> + <html><head/><body><p>Entrer une plage d'IP. Formats accepté:</p><p>193.190.209.15</p><p>193.190.209.15/24</p><p>193.190.209.15/16</p></body></html> + <html><head/><body><p>Enter any comment you'd like</p></body></html> - <html><head/><body><p>Entrez n'importe quel commentaire que vous souhaitez</p></body></html> + <html><head/><body><p>Entrez n'importe quel commentaire que vous souhaitez</p></body></html> + Add to blacklist - Ajouter à la liste noire + Ajouter à la liste noire + Add to whitelist - Ajouter en liste blanche - - - IP Range - Plage d'IP - - - Reported by DHT for IP masquerading - Rapporté par la DHT concernant masquerading d'IP (se fait passer pour). - - - Range made from %1 collected addresses - Gamme faite à partir de %1 adresses rassemblées - - - Remove - Enlever - - - Added by you - Ajouté par vous - - - <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - <html><head/><body><p>Les adresses IP de la liste blanche sont rassemblées depuis les sources suivantes : IPs venant à l'intérieur d'un certificat échangé manuellement, gammes IP entrées par vous dans cette fenêtre, ou dans les articles du flux de sécurité.</p><p>Le comportement par défaut de Retroshare est de (1) toujours permettre la connexion aux pairs ayant leur IP dans la liste blanche, même si cette IP est aussi présente dans la liste noire; (2) exiger facultativement que les IPs soient dans la liste blanche. Vous pouvez changer ce comportement pour chaque pair à partir de la fenêtre &quot;Détails&quot de chaque noeud Retroshare. </p></body></html> - - - <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - <html><head/><body><p>La DHT vous permet de répondre aux demandes de connexion de vos amis utilisant la DHT de BitTorrent. Elle améliore grandement la connectivité. Aucune informations ne sont stockées en réalité dans la DHT. Elle est seulement utilisé comme un système de proxy afin de se mettre en contact avec d'autres noeuds Retroshare.</p><p>Le service de Découverte envoie le nom de noeud et les IDs de vos contacts éprouvés à vos pairs connectés, afin de les aider à choisir de nouveaux amis. L'amitié n'est cependant jamais automatique, et deux pairs doivent toujours avoir confiance l'un en l'autre pour permettre la connexion. </p></body></html> - - - <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - <html><head/><body><p>La balle devient verte aussitôt que Retroshare réussit à obtenir votre propre IP depuis les sites Web listés ci-dessous, si vous avez permis cette action. Retroshare utilisera aussi d'autres moyens pour découvrir votre propre IP.</p></body></html> - - - <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - <html><head/><body><p>Cette liste est automatiquement remplie d'informations rassemblées depuis des sources multiples : pairs en mode masquerading rapportés par la DHT, plages IP entrées par vous et plages IP rapportées par vos amis. Les réglages par défaut devraient vous protéger contre le relayage de trafic de grande échelle.</p><p>Devenir automatiquement les IPs employant le masquage peut avoir pour conséquence de placer vos IPs amies dans la liste noire. Dans ce cas, utilisez le menu de contexte afin de les mettre en liste blanche.</p></body></html> - - - activate IP filtering - Activer le filtrage d'IP - - - <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> - <html><head/><body><p>Ceci est très radical, soyez prudent. Sachant que des IPs en masquerading pourraient être des IPs réelles actuelles, cette option pourrait causer la déconnexion, et probablement vous forcer à ajouter dans la liste blanche les IPs de vos amis.</p></body></html> - - - Ban every IP reported by your friends - Interdire chaque IP rapportée par vos amis - - - <html><head/><body><p>Another drastic option. If you use it, be prepared to add your friends' IPs into the whitelist when needed.</p></body></html> - <html><head/><body><p>Une autre option radicale. Si vous l'utilisez, soyez préparé à ajouter les IPs de vos amis dans la liste blanche quand cela sera nécessaire.</p></body></html> - - - Ban every masquerading IP reported by your DHT - Interdire chaque IP en masquerading (càd se faisant passer pour) rapportée par votre DHT - - - <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - <html><head/><body><p>Si utilisée seule, cette option vous protège assez bien de masquerading d'IP (usurpation d'IP) à grande échelle.</p></body></html> - - - Automatically ban ranges of DHT masquerading IPs starting at - Bannir automatiquement de la DHT les plages auxquelles débutent les IP masquerading - - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - <html><head/><body><p>Ce noeud Retroshare fonctionne en "%Mode caché". Cela signifie qu'il peut seulement être atteint à travers le réseau Tor.</p><p>C'est la raison pour laquelle certaines options réseau sont désactivées.</p></body></html> - - - Tor Configuration - Configuration TOR - - - Outgoing Tor Connections - Connections Tor sortantes - - - Tor Socks Proxy - Proxy Socks de Tor - - - Tor outgoing Okay - Tor sortant OK - - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - Paramètres par défaut du proxy Socks de Tor : 127.0.01:9050. Paramétrez torrc config, et mettez à jour ici. - -Vous pouvez vous connecter à des noeuds cachés, même si vous -êtes en train de faire fonctionner un noeud standard, alors pourquoi ne pas paramétrer Tor ? - - - Incoming Tor Connections - Connexions Tor entrantes - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - <html><head/><body><p>Ce bouton simule une connexion SSL à votre adresse Tor utilisant le proxy Tor. Si votre noeud Tor est accessible, cela devrait causer une erreur de poignée de main SSL, que RS interprétera comme un état de connexion valable. Cette opération pourrait aussi causer plusieurs "avertissements de sécurité" au sujet de connexions depuis votre adresse locale IP d'hôte (127.0.0.1) dans le "Fil d'actualités" si vous l'avez permis,</p></body></html> - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - <html><head/><body><p>Ceci est votre addresse onion. Elle devrait avoir une apparence de type <span style=" font-weight:600;">[something].onion. </span>Si vous configurez un service caché avec Tor, l'adresse onion est générée automatiquement par Tor. Vous pouvez l'obtenir par exemple dans <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - <html><head/><body><p>Ceci est l'adresse locale vers laquelle pointe le service caché Tor vers votre localhost. La plupart du temps, <span style=" font-weight:600;">127.0.0.1</span> est la bonne réponse.</p></body></html> - - - Tor incoming ok - Tor entrant OK - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - Afin de recevoir des connexions, vous devez d'abord paramétrer un service caché Tor. -Voyez la documentation de Tor pour des détails sur comment faire. - -Une fois ceci fait, collez l'adresse Onion dans la boîte ci-dessous. -C'est votre adresse externe dans le réseau Tor. -Finalement assurez-vous que les ports correspondent à la configuration de Tor. - -Si vous avez des soucis pour vous connecter via Tor, vérifiez aussi les logs de Tor. - - - Hidden - See Tor Config - Caché - Voir la config de Tor - - - Tor proxy is not enabled - Le proxy de Tor n'est pas activé - - - You are reachable through Tor. - Vous êtes accessible à travers Tor - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - Le proxy Tor n'est pas activé ou est cassé. -Exécutez-vous un service caché Tor ? -Vérifiez vos ports ! - - - Network Mode - Mode réseau - - - Nat - + Ajouter en liste blanche + Hidden Service Configuration - + + Outgoing Connections - + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> - + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> - + + I2P Socks Proxy - + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> - + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> - + + I2P outgoing Okay - + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: -Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! -Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? - + + Incoming Service Connections - - - - <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> - + + + Service Address - + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> - + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> - + + incoming ok - + + Expected Configuration: - + + Please fill in a service address - + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. For Tor: See torrc and documentation for HOWTO details. For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: -Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! Once this is done, paste the Onion/I2P (Base32) Address in the box above. This is your external address on the Tor/I2P network. Finally make sure that the Ports match the configuration. If you have issues connecting over Tor check the Tor logs too. - + - Hidden - See Config - + + IP Range + Plage d'IP - I2P Address - + + Reported by DHT for IP masquerading + Rapporté par la DHT concernant masquerading d'IP (se fait passer pour). - I2P incoming ok - + + Range made from %1 collected addresses + Gamme faite à partir de %1 adresses rassemblées - Points at: - + + + Remove + Enlever - Tor incoming ok - + + + + Added by you + Ajouté par vous - incoming ok - + + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> + <html><head/><body><p>Les adresses IP de la liste blanche sont rassemblées depuis les sources suivantes : IPs venant à l'intérieur d'un certificat échangé manuellement, gammes IP entrées par vous dans cette fenêtre, ou dans les articles du flux de sécurité.</p><p>Le comportement par défaut de Retroshare est de (1) toujours permettre la connexion aux pairs ayant leur IP dans la liste blanche, même si cette IP est aussi présente dans la liste noire; (2) exiger facultativement que les IPs soient dans la liste blanche. Vous pouvez changer ce comportement pour chaque pair à partir de la fenêtre &quot;Détails&quot de chaque noeud Retroshare. </p></body></html> - I2P proxy is not enabled - + + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> + <html><head/><body><p>La DHT vous permet de répondre aux demandes de connexion de vos amis utilisant la DHT de BitTorrent. Elle améliore grandement la connectivité. Aucune informations ne sont stockées en réalité dans la DHT. Elle est seulement utilisé comme un système de proxy afin de se mettre en contact avec d'autres noeuds Retroshare.</p><p>Le service de Découverte envoie le nom de noeud et les IDs de vos contacts éprouvés à vos pairs connectés, afin de les aider à choisir de nouveaux amis. L'amitié n'est cependant jamais automatique, et deux pairs doivent toujours avoir confiance l'un en l'autre pour permettre la connexion. </p></body></html> - You are reachable through the hidden service. - + + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> + <html><head/><body><p>La balle devient verte aussitôt que Retroshare réussit à obtenir votre propre IP depuis les sites Web listés ci-dessous, si vous avez permis cette action. Retroshare utilisera aussi d'autres moyens pour découvrir votre propre IP.</p></body></html> - The proxy is not enabled or broken. -Are all services up and running fine?? -Also check your ports! - + + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> + <html><head/><body><p>Cette liste est automatiquement remplie d'informations rassemblées depuis des sources multiples : pairs en mode masquerading rapportés par la DHT, plages IP entrées par vous et plages IP rapportées par vos amis. Les réglages par défaut devraient vous protéger contre le relayage de trafic de grande échelle.</p><p>Devenir automatiquement les IPs employant le masquage peut avoir pour conséquence de placer vos IPs amies dans la liste noire. Dans ce cas, utilisez le menu de contexte afin de les mettre en liste blanche.</p></body></html> + + + + activate IP filtering + Activer le filtrage d'IP + + + + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> + <html><head/><body><p>Ceci est très radical, soyez prudent. Sachant que des IPs en masquerading pourraient être des IPs réelles actuelles, cette option pourrait causer la déconnexion, et probablement vous forcer à ajouter dans la liste blanche les IPs de vos amis.</p></body></html> + + + + Ban every IP reported by your friends + Interdire chaque IP rapportée par vos amis + + + + <html><head/><body><p>Another drastic option. If you use it, be prepared to add your friends' IPs into the whitelist when needed.</p></body></html> + <html><head/><body><p>Une autre option radicale. Si vous l'utilisez, soyez préparé à ajouter les IPs de vos amis dans la liste blanche quand cela sera nécessaire.</p></body></html> + + + + Ban every masquerading IP reported by your DHT + Interdire chaque IP en masquerading (càd se faisant passer pour) rapportée par votre DHT + + + + <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> + <html><head/><body><p>Si utilisée seule, cette option vous protège assez bien de masquerading d'IP (usurpation d'IP) à grande échelle.</p></body></html> + + + + Automatically ban ranges of DHT masquerading IPs starting at + Bannir automatiquement de la DHT les plages auxquelles débutent les IP masquerading + + + + Tor Socks Proxy + Proxy Socks de Tor + + + + Tor outgoing Okay + Tor sortant OK + + + + Tor proxy is not enabled + Le proxy de Tor n'est pas activé ServicePermissionDialog + Service permissions - Service des droits + Service des droits + Service Permissions - Service des droits + Service des droits + Use as direct source, when available - Utiliser en source directe, quand disponible + Utiliser en source directe, quand disponible + Auto-download recommended files - Télécharger automatiquement les fichiers recommandés + Télécharger automatiquement les fichiers recommandés + Require whitelist - Requiert la liste blanche + Requiert la liste blanche ServicePermissionsPage + ServicePermissions - Service des droits + Service des droits + Reset - Réinitialisation + Réinitialisation + Permissions - Droits - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Les permissions vous permettent de contrôler quels sont les services disponibles selon les amis</p> <p>Chaque interrupteur montre deux lumières, indiquant si vous ou votre ami a activé ce service. Tous deux nécessitent d'être ALLUMÉS (montrant <img height=20 src=":/images/switch11.png"/>) afin de laisser l'information être transférée afin de permettre un service spécifique / combinaison d'ami.</p> <p>Pour chaque service, l'onglet global <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> permet de basculer un service ON/OFF pour tous les amis à la fois.</p> <p>Soyez très prudent : certains services dépendent l'un de l'autre. Par exemple éteindre Turtle va aussi stopper tout le transfert anonyme, le tchat distant, et la messagerie distante.</p> + Droits + hide offline - cacher ceux hors-ligne + cacher ceux hors-ligne + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> - + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Les permissions vous permettent de contrôler quels sont les services disponibles selon les amis</p> <p>Chaque interrupteur montre deux lumières, indiquant si vous ou votre ami a activé ce service. Tous deux nécessitent d'être ALLUMÉS (montrant <img height=20 src=":/images/switch11.png"/>) afin de laisser l'information être transférée afin de permettre un service spécifique / combinaison d'ami.</p> <p>Pour chaque service, l'onglet global <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> permet de basculer un service ON/OFF pour tous les amis à la fois.</p> <p>Soyez très prudent : certains services dépendent l'un de l'autre. Par exemple éteindre Turtle va aussi stopper tout le transfert anonyme, le tchat distant, et la messagerie distante.</p> Settings + Options - Options + Options ShareDialog + RetroShare Share Folder - Retroshare Dossier de partage + Retroshare Dossier de partage + + Share Folder - Dossier partagé + Dossier partagé + Local Path - Chemin d'accès local + Chemin d'accès local + Browse - Parcourir + Parcourir + Virtual Folder - Dossier virtuel + Dossier virtuel + Share Flags - Types de partage + Types de partage + Edit Shared Folder - Modifier les dossiers partagés + Modifier les dossiers partagés + Select A Folder To Share - Selectionnez un dossier à partager + Selectionnez un dossier à partager + Share flags and groups: - Partager les drapeaux et les groupes : + Partager les drapeaux et les groupes : ShareKey + check peers you would like to share private publish key with - Visualiser les contacts avec qui vous partagez votre clé de publication privée + Visualiser les contacts avec qui vous partagez votre clé de publication privée + Share for Friend - Partager avec vos amis + Partager avec vos amis + Share - Partager + Partager + You can let your friends know about your Channel by sharing it with them. Select the Friends with which you want to Share your Channel. - Vous pouvez laisser vos amis connaître vos chaînes en les partageant avec eux. + Vous pouvez laisser vos amis connaître vos chaînes en les partageant avec eux. Sélectionnez les amis avec lesquels vous voulez partager votre chaîne. ShareManager + RetroShare Share Manager - Gestionnaire de partages Retroshare + Gestionnaire de partages Retroshare + Shared Folder Manager - Gestionnaire des dossiers partagés + Gestionnaire des dossiers partagés + Directory - Dossier + Dossier + Virtual Folder - Dossier virtuel + Dossier virtuel + Share flags - Types de partage + Types de partage + Groups - Groupes + Groupes + Add a Share Directory - Ajouter un dossier à partager + Ajouter un dossier à partager + Add - Ajouter + Ajouter + Stop sharing selected Directory - Arrêter de partager le dossier selectionné + Arrêter de partager le dossier selectionné + + Remove - Supprimer + Supprimer + Apply and close - Appliquer et fermer + Appliquer et fermer + Edit selected Shared Directory - Modifier les dossiers partagés selectionnés + Modifier les dossiers partagés selectionnés + + Edit - Modifier + Modifier + Share Manager - Gestionnaire de partage + Gestionnaire de partage + Edit Shared Folder - Modifier les dossiers partagés + Modifier les dossiers partagés + Warning! - Attention ! + Attention ! + Do you really want to stop sharing this directory ? - Etes-vous certains de ne plus vouloir partager ce dossier ? + Etes-vous certains de ne plus vouloir partager ce dossier ? + + Drop file error. - Erreur lors de l'ajout du fichier. + Erreur lors de l'ajout du fichier. + File can't be dropped, only directories are accepted. - On ne peut pas déposer un fichier, seuls les dossiers sont acceptés. + On ne peut pas déposer un fichier, seuls les dossiers sont acceptés. + Directory not found or directory name not accepted. - Le dossier n'a pas été trouvé ou le nom du dossier n'est pas accepté. + Le dossier n'a pas été trouvé ou le nom du dossier n'est pas accepté. + This is a list of shared folders. You can add and remove folders using the buttons at the bottom. When you add a new folder, intially all files in that folder are shared. You can separately setup share flags for each shared directory. - Il s'agit d'une liste des dossiers partagés. Vous pouvez ajouter et supprimer des dossiers en utilisant les boutons en bas. Lorsque vous ajoutez un nouveau dossier, initialement tous les fichiers contenus dans ce dossier sont partagés. Vous pouvez configurer séparément le type de partage pour chaque répertoire sélectionné. + Il s'agit d'une liste des dossiers partagés. Vous pouvez ajouter et supprimer des dossiers en utilisant les boutons en bas. Lorsque vous ajoutez un nouveau dossier, initialement tous les fichiers contenus dans ce dossier sont partagés. Vous pouvez configurer séparément le type de partage pour chaque répertoire sélectionné. SharedFilesDialog + Files - Fichiers + Fichiers + Search files - Rechercher des fichiers + Rechercher des fichiers + Start Search - Lancer la recherche + Lancer la recherche + Reset - Réinitialiser + Réinitialiser + Tree view - Affichage en arborescence + Affichage en arborescence + Flat view - Affichage à plat + Affichage à plat + All - Tout + Tout + One day old - Agé d'un jour + Agé d'un jour + One Week old - Agé d'une semaine + Agé d'une semaine + One month old - Agé d'un mois + Agé d'un mois + check files - Vérifier vos fichiers + Vérifier vos fichiers + Download selected - Télécharger la sélection + Télécharger la sélection + Download - Télécharger + Télécharger + Copy retroshare Links to Clipboard - Copier le lien Retroshare + Copier le lien Retroshare + Copy retroshare Links to Clipboard (HTML) - Copier le lien Retroshare dans le presse-papier (HTML) + Copier le lien Retroshare dans le presse-papier (HTML) + Send retroshare Links - Envoyer le lien Retroshare + Envoyer le lien Retroshare + Send retroshare Links to Cloud - Envoyer les liens Retroshare dans le nuage de liens + Envoyer les liens Retroshare dans le nuage de liens + Add Links to Cloud - Ajouter les liens Retroshare dans le nuage de liens + Ajouter les liens Retroshare dans le nuage de liens + RetroShare Link - Lien Retroshare + Lien Retroshare + + Recommendation(s) - Recommandation(s) + Recommandation(s) + Add Share - Ajouter un partage + Ajouter un partage + Create Collection... - Créer une collection ... + Créer une collection ... + Modify Collection... - Modifier collection ... + Modifier collection ... + View Collection... - Vue collection ... + Vue collection ... + Download from collection file... - Télécharger à partir d'un fichier collection... + Télécharger à partir d'un fichier collection... SoundManager + Friend - Ami + Ami + Go Online - Passer en ligne + Passer en ligne + Chatmessage - Message tchat + Message tchat + New Msg - Nouveau msg + Nouveau msg + Message - Message + Message + + Message arrived - Message arrivé + Message arrivé + Download - Télécharger + Télécharger + Download complete - Téléchargement terminé + Téléchargement terminé + Lobby - + SoundPage + Event: - Événement : + Événement : + Filename: - Nom du fichier : + Nom du fichier : + Browse - Parcourir + Parcourir + Event - Événement + Événement + Filename - Nom du fichier + Nom du fichier + Open File - Ouvrir le fichier + Ouvrir le fichier + Sound - Sons + Sons + Default - Par défaut + Par défaut SoundStatus + Sound is off, click to turn it on - Le son est débranché, cliquer pour l'allumer + Le son est éteint, cliquer pour l'allumer + Sound is on, click to turn it off - Le son est branché, cliquer pour l'éteindre + Le son est allumé, cliquer pour l'éteindre SplashScreen + Load profile - Chargement du profil + Chargement du profil + Load configuration - Chargement de la configuration + Chargement de la configuration + Create interface - Création de l'interface + Création de l'interface StartDialog + RetroShare - Retroshare + Retroshare + Login - Se connecter + Se connecter + Name (PGP Id) - location: - Nom (ID PGP) - Emplacement : + Nom (ID PGP) - Emplacement : + Remember Password - Se rappeler du mot de passe + Se rappeler du mot de passe + Log In - Se connecter + Se connecter + Opens a dialog for creating a new profile or adding locations to an existing profile. The current identities/locations will not be affected. - Ouvre une boite de dialogue permettant de créer un nouveau profil ou + Ouvre une boite de dialogue permettant de créer un nouveau profil ou l'ajout d'un nouvel emplacement à un profil existant. Les identités actuelles/emplacements seront sauvegardés. + Load Person Failure - Echec du chargement de la personne + Echec du chargement de la personne + Missing PGP Certificate - Certificat PGP manquant + Certificat PGP manquant + + + Warning - Attention + Attention + <!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 nodes...</span></a></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:'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;">Gérer les profils et les noeuds ...</span></a></p></body></html> + The password to your SSL certificate (your node) will be stored encrypted in your Gnome Keyring. Your PGP passwd will not be stored. This choice can be reverted in settings. - Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans votre trousseau de clés Gnome. + Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans votre trousseau de clés Gnome. Votre mot de passe PGP ne sera pas stocké. Ce choix peut être inversé dans des paramétrages. + The password to your SSL certificate (your node) will be stored encrypted in your Keychain. Your PGP passwd will not be stored. This choice can be reverted in settings. - Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans votre trousseau de clés. + Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans votre trousseau de clés. Votre mot de passe PGP ne sera pas stocké. Ce choix peut être inversé dans des paramétrages. + The password to your SSL certificate (your node) will be stored encrypted in the keys/help.dta file. This is not secure. Your PGP password will not be stored. This choice can be reverted in settings. - Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans le fichier clés/help.dta. Ceci n'est pas sécurisé. + Le mot de passe de votre certificat SSL (votre noeud) sera stocké chiffré dans le fichier clés/help.dta. Ceci n'est pas sécurisé. Votre mot de passe PGP ne sera pas stocké. Ce choix peut être inversé dans des paramétrages. - - StatisticDialog - - Statistics - Statistiques - - - Now - - - - Transfer - - - - Session UL:DL Ratio: - - - - Cumulative UL:DL Ratio - - - - Download - Télécharger - - - Session: - - - - Downloaded: - - - - Count of Downloads: - - - - Overall - Global - - - Upload - - - - Session - - - - Uploaded: - - - - Count of Uploads: - - - - Uploaded - - - - Connections: - - - - Peers: - Contacts : - - - Time Statistics - - - - Uptime - - - - Since: - Statistiques enregistrées depuis : - - - Cumulative - - - - Records - - - - Uploadspeed: - - - - Downloadspeed: - - - - Uptime: - - - - Show Settings - - - - Reset - - - - Receive Rate - Vitesse de réception - - - Send Rate - Vitesse d'émission - - - Always On Top - - - - 100 - 100 - - - % Opaque - % opaque - - - Changes the transparency of the Bandwidth Graph - Modifier la transparence du graphique de bande passande - - - Save - - - - Cancel - Annuler - - - %1 days - - - - Hide Settings - Masquer les options - - StatisticsWindow + Add Friend - Ajouter un ami + Ajouter un ami + Add a Friend Wizard - Assistant pour ajouter un ami + Assistant pour ajouter un ami + Add Share - Ajouter un partage + Ajouter un partage + Options - Options + Options + Messenger - Messager + Messager + About - À propos + À propos + SMPlayer - SMPlayer + SMPlayer + Quit - Quitter + Quitter + + Quick Start Wizard - Assistant de configuration rapide + Assistant de configuration rapide + ServicePermissions - Service des droits + Service des droits + Service permissions matrix - Matrice des autorisations des services + Matrice des autorisations des services + DHT - DHT + DHT + Bandwidth - Bande passante + Bande passante + Turtle Router - Routeur Turtle + Routeur Turtle + Global Router - Routeur global + Routeur global + RTT Statistics - Statistiques RTT + Statistiques RTT StatusDefs + + Offline - Hors ligne + Hors ligne + Away - Absent(e) + Absent(e) + Busy - Occupé(e) + Occupé(e) + Online - En ligne + En ligne + Idle - Inactif + Inactif + Friend is offline - Ami hors ligne + Ami hors ligne + Friend is away - Ami absent + Ami absent + Friend is busy - Ami occupé + Ami occupé + Friend is online - Ami en ligne + Ami en ligne + Friend is idle - Ami inactif + Ami inactif + + Connected - Connecté + Connecté + Unreachable - Indisponible + Indisponible + Available - Disponible + Disponible + Neighbor - Voisinage + Voisinage + + Trying TCP - Tentative TCP + Tentative TCP + + Trying UDP - Tentative UDP + Tentative UDP + Connected: TCP - Connecté : TCP + Connecté : TCP + Connected: UDP - Connecté : UDP - - - Connected: Unknown - Connecté : Inconnu - - - DHT: Contact - DHT : Connectée - - - TCP-in - TCP-entrant - - - TCP-out - TCP-sortant - - - inbound connection - connexion entrante - - - outbound connection - connexion sortante - - - UDP - UDP - - - Tor-in - Tor-entrant - - - Tor-out - Tor-sortant - - - unkown - inconnu - - - Connected: Tor - Connecté : Tor + Connecté : UDP + Connected: I2P - + Connecté : I2P + + Connected: Unknown + Connecté : Inconnu + + + + DHT: Contact + DHT : Connectée + + + + TCP-in + TCP-entrant + + + + TCP-out + TCP-sortant + + + + inbound connection + connexion entrante + + + + outbound connection + connexion sortante + + + + UDP + UDP + + + + Tor-in + Tor-entrant + + + + Tor-out + Tor-sortant + + + I2P-in - + I2P-entrant + I2P-out - + I2P-sortant + + + + unkown + inconnu + + + + Connected: Tor + Connecté : Tor StatusMessage + Status message - Message d'état + Message d'état + Message: - Message : + Message : + <!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;">Status message</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14pt; font-weight:600;">Message d'état</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 message</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;"> @@ -16018,535 +17767,693 @@ p, li { white-space: pre-wrap; } StyleDialog + + Define Style - Définir le style + Définir le style + + Choose color - Choix de la couleur + Choix de la couleur + Color 2 - Couleur 2 + Couleur 2 + Color 1 - Couleur 1 + Couleur 1 + Style - Style + Style + None - Aucune + Aucune + Solid - Solide + Solide + Gradient - Dégradé + Dégradé SubFileItem + %p Kb - %p Ko + %p Ko + Cancel Download - Annuler le téléchargement + Annuler le téléchargement + Download File - Télécharger le fichier + Télécharger le fichier + Download - Télécharger + Télécharger + + + Play File - Lecture + Lecture + Play - Lire + Lire + Save File - Enregistrer le fichier + Enregistrer le fichier + + ERROR - ERREUR + ERREUR + EXTRA - EXTRA + EXTRA + REMOTE - DISTANT + DISTANT + DOWNLOAD - TÉLÉCHARGE + TÉLÉCHARGE + LOCAL - LOCAL + LOCAL + UPLOAD - ENVOI + ENVOI + + Remove Attachment - Supprimer la pièce jointe + Supprimer la pièce jointe + File %1 does not exist at location. - Le fichier %1 n'existe pas à cet endroit. + Le fichier %1 n'existe pas à cet endroit. + File %1 is not completed. - Le fichier %1 est incomplet. + Le fichier %1 est incomplet. + Save Channel File - Enregistrer le fichier de la chaîne + Enregistrer le fichier de la chaîne + Open - Ouvrir + Ouvrir + Open File - Ouvrir le fichier + Ouvrir le fichier + Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare SubscribeToolButton + Subscribed - Abonné + Abonné + Unsubscribe - Se désabonner + Se désabonner + Subscribe - S'abonner + S'abonner TBoard + Pause - En pause + En pause TagDefs + Important - Important + Important + Work - Professionnel + Professionnel + Personal - Personnel + Personnel + Todo - À faire + À faire + Later - Plus tard + Plus tard TagsMenu + Remove All Tags - Supprimer tout les mots clés + Supprimer tout les mots clés + New tag ... - Nouveau mot clé... + Nouveau mot clé... ToasterDisable + All Toasters are disabled - Toutes les notifications grille-pain sont empêchées + Toutes les notifications grille-pain sont empêchées + Toasters are enabled - Les notifications grille-pain sont permises + Les notifications grille-pain sont permises TransferPage + Transfer options - Options de transfert + Options de transfert + Maximum simultaneous downloads: - Maximum de téléchargements simultanés : + Maximum de téléchargements simultanés : + Slots reserved for non-cache transfers: - Emplacements réservés pour les transferts non-cache : + Emplacements réservés pour les transferts non-cache : + Default chunk strategy: - Mode de téléchargement : + Mode de téléchargement : + Safety disk space limit : - Limitation de l'espace disque de sécurité : + Limitation de l'espace disque de sécurité : + Streaming - Streaming + Streaming + Progressive - Progressive + Progressive + Random - Aléatoire + Aléatoire + MB - Mo + Mo + <!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 transferring 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;"><br /></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 transferring 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;"><br /></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"> 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;"> est capable de transférer des fichiers et d'effectuer des recherches entre personnes qui ne sont pas amies. Cependant, ce trafic se fait à travers une liste de contacts anonymes.</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;">Vous pouvez paramétrer le type de partage dans la fenêtre de partage de dossier :</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;">Visible par mes amis </span>: les fichiers sont visibles par mes amis.</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;">Partage anonyme </span>: les fichiers sont accessibles anonymement par des tunnels F2F.</li></ul></body></html> + Max. tunnel req. forwarded per second: - Nombre max. de requêtes de tunnels transmises par sec. : + Nombre max. de requêtes de tunnels transmises par sec. : + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Streaming </span> a pour conséquence que le transfert demande des morceaux de fichier de taille de 1 Mo en ordre croissant, ceci facilitant la prévisualisation lors du téléchargement. <span style=" font-weight:600;">Random</span> est purement aléatoire et favorise le comportement en essaimage. <span style=" font-weight:600;">Progressif</span> est un compromis, choisissant le prochain morceau au hasard dans moins de 50 Mo après la fin du fichier partiel. Cela permet un certain aléatoire tout en empêchant des grands temps d'initialisation de fichiers vides.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Streaming </span> a pour conséquence que le transfert demande des morceaux de fichier de taille de 1 Mo en ordre croissant, ceci facilitant la prévisualisation lors du téléchargement. <span style=" font-weight:600;">Random</span> est purement aléatoire et favorise le comportement en essaimage. <span style=" font-weight:600;">Progressif</span> est un compromis, choisissant le prochain morceau au hasard dans moins de 50 Mo après la fin du fichier partiel. Cela permet un certain aléatoire tout en empêchant des grands temps d'initialisation de fichiers vides.</p></body></html> + <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> - <html><head/><body><p>Retroshare suspendra tous les transferts et la sauvegarde de fichier de configuration si l'espace disque descend en dessous de cette limite. Cela empêche la perte d'informations sur certains systèmes. Une fenêtre contextuelle vous avertira si cela arrive.</p></body></html> + <html><head/><body><p>Retroshare suspendra tous les transferts et la sauvegarde de fichier de configuration si l'espace disque descend en dessous de cette limite. Cela empêche la perte d'informations sur certains systèmes. Une fenêtre contextuelle vous avertira si cela arrive.</p></body></html> + <html><head/><body><p>This value controls how many tunnel request your peer can forward per second. </p><p>If you have a large internet bandwidth, you may raise this up to 30-40, to allow statistically longer tunnels to pass. Be very careful though, since this generates many small packets that can significantly slow down your own file transfer. </p><p>The default value is 20. If you're not sure, keep it that way.</p></body></html> - <html><head/><body><p>Cette valeur contrôle le nombre de requêtes de tunnels que votre pair peut transmettre par seconde. </p><p> Si vous avez une grande bande passante, vous pouvez l'augmenter jusqu'à 30-40, pour permettre statistiquement aux tunnels plus long de passer. Soyez très prudent cependant, car cela génère de nombreux petits paquets qui peuvent considérablement ralentir le transfert de vos propres fichiers. </p><p>La valeur par défaut est de 20. Si vous n'êtes pas certain, gardez là ainsi.</p></body></html> + <html><head/><body><p>Cette valeur contrôle le nombre de requêtes de tunnels que votre pair peut transmettre par seconde. </p><p> Si vous avez une grande bande passante, vous pouvez l'augmenter jusqu'à 30-40, pour permettre statistiquement aux tunnels plus long de passer. Soyez très prudent cependant, car cela génère de nombreux petits paquets qui peuvent considérablement ralentir le transfert de vos propres fichiers. </p><p>La valeur par défaut est de 20. Si vous n'êtes pas certain, gardez là ainsi.</p></body></html> + File transfer - Transfert de fichier + Transfert de fichier + <html><head/><body><p>You can use this to force RetroShare to download your files rather <br/>than cache files for as many slots as requested. Setting that number <br/>to be equal to the queue size above will always prioritize your files<br/>over cache. <br/><br/>It is however recommended to leave at least a few slots for cache files. For now, cache files are only used to transfer friend file lists.</p></body></html> - <html><head/><body><p>Vous pouvez utiliser cela pour forcer Retroshare à télécharger vos fichiers, plutôt <br/>que les fichiers caches, pour autant d'emplacements que nécessaire. Paramétrer ce nombre <br/>afin qu'il soit égal à la taille de queue ci-dessus aura pour conséquence de toujours passer en priorité vos fichiers<br/> par rapport au cache. <br/><br/>Il est cependant recommandé de laisser au moins quelques emplacements pour les fichiers caches. Pour l'instant, les fichiers cache sont encore utilisés pour transférer les listes de fichiers des amis.</p></body></html> + <html><head/><body><p>Vous pouvez utiliser cela pour forcer Retroshare à télécharger vos fichiers, plutôt <br/>que les fichiers caches, pour autant d'emplacements que nécessaire. Paramétrer ce nombre <br/>afin qu'il soit égal à la taille de queue ci-dessus aura pour conséquence de toujours passer en priorité vos fichiers<br/> par rapport au cache. <br/><br/>Il est cependant recommandé de laisser au moins quelques emplacements pour les fichiers caches. Pour l'instant, les fichiers cache sont encore utilisés pour transférer les listes de fichiers des amis.</p></body></html> TransferUserNotify + Download completed - Téléchargement terminé + Téléchargement terminé + You have %1 completed downloads - Vous avez %1 téléchargements terminés + Vous avez %1 téléchargements terminés + You have %1 completed download - Vous avez %1 téléchargement terminé + Vous avez %1 téléchargement terminé + %1 completed downloads - %1 téléchargements terminés + %1 téléchargements terminés + %1 completed download - %1 téléchargement terminé + %1 téléchargement terminé TransfersDialog + + Downloads - Téléchargements + Téléchargements + + Uploads - Envois + Envois + + Name i.e: file name - Nom + Nom + + Size i.e: file size - Taille + Taille + + Completed - Terminé + Terminé + Speed i.e: Download speed - Vitesse + Vitesse + Progress / Availability i.e: % downloaded - Progression / Disponibilité + Progression / Disponibilité + Sources i.e: Sources - Sources + Sources + + + Status - Statut + Statut + + Speed / Queue position - Vitesse / Position + Vitesse / Position + + Remaining - Restant + Restant + Download time i.e: Estimated Time of Arrival / Time left - Temps restant estimé + Temps restant estimé + Peer i.e: user name - Contact + Contact + Progress i.e: % uploaded - Progression + Progression + Speed i.e: upload speed - Vitesse + Vitesse + Transferred - Transféré + Transféré + + + Hash - Hash + Hash + Search - Rechercher + Rechercher + Friends files - Fichiers de vos amis + Fichiers de vos amis + My files - Vos fichiers + Vos fichiers + Download from collection file... - Télécharger à partir d'un fichier collection... + Télécharger à partir d'un fichier collection... + Pause - Mettre en pause + Mettre en pause + Resume - Reprendre + Reprendre + Force Check - Forcer la vérification + Forcer la vérification + Cancel - Annuler + Annuler + + Open Folder - Ouvrir le dossier de destination + Ouvrir le dossier de destination + Open File - Ouvrir le fichier + Ouvrir le fichier + Preview File - Prévisualiser + Prévisualiser + Details... - Détails... + Détails... + Clear Completed - Effacer les fichiers terminés de la liste + Effacer les fichiers terminés de la liste + + Copy RetroShare Link - Copier le lien Retroshare + Copier le lien Retroshare + Paste RetroShare Link - Coller le lien Retroshare + Coller le lien Retroshare + Down - Descendre + Descendre + Up - Monter + Monter + Top - En haut + En haut + Bottom - En bas + En bas + Streaming - Streaming + Streaming + + Slower - Basse + Basse + + + Average - Normale + Normale + + Faster - Rapide + Rapide + Random - Aléatoire + Aléatoire + Progressive - Progressive + Progressive + Play - Lecture + Lecture + Rename file... - Renommer le fichier... + Renommer le fichier... + Specify... - Spécifier... + Spécifier... + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Partage de fichiers</h1> <p>Retroshare utilise deux modes de transfert de fichiers : les transferts directs depuis vos amis, et les transferts distants anonymes par tunnels. En plus, le transfert de fichier est multi-source et permet l'essaimage (vous pouvez être une source pendant le téléchargement) </p> <p>Vous pouvez partager des fichiers en utilisant l'icône <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> dans la barre latérale gauche. Ces fichiers seront listés dans l'onglet "Vos fichiers". Vous pouvez décider pour chaque groupe d'amis s'ils peuvent ou pas voir ces fichiers dans l'onglet Mes amis</p> <p>L'onglet "Rechercher" liste les fichiers de vos amis et des fichiers distants qui peuvent être atteints anonymement en utilisant le système à effet tunnel à sauts multiples.</p> + + + Move in Queue... - Mettre en file d'attente... + Mettre en file d'attente... + Priority (Speed)... - Priorité (vitesse)... + Priorité (vitesse)... + Chunk strategy - Méthode de téléchargement + Méthode de téléchargement + Set destination directory - Spécifier le dossier de destination + Spécifier le dossier de destination + Choose directory - Choisir le répertoire + Choisir le répertoire + + + Failed - Echoué + Echoué + + + Okay - OK + OK + + Waiting - En attente + En attente + Downloading - Téléchargement en cours + Téléchargement en cours + + + + Complete - Terminé + Terminé + Queued - En file d'attente + En file d'attente + Paused - En pause + En pause + Checking... - Vérification en cours... + Vérification en cours... + Unknown - Inconnu + Inconnu + If the hash of the downloaded data does not correspond to the hash announced by the file source. The data is likely @@ -16557,7 +18464,7 @@ map of the data; it will compare and invalidate bad blocks, and download them again Try to be patient! - Si la valeur de hachage des données téléchargées + Si la valeur de hachage des données téléchargées ne correspond pas à la valeur de hachage annoncé par la source du fichier. Les données sont susceptibles d'être corrompues. @@ -16569,1097 +18476,1279 @@ les blocs défectueux, et de les télécharger à nouveau Essayez d'être patient ! + Transferring - En cours de transfert + En cours de transfert + Uploading - En cours d'envoi + En cours d'envoi + Are you sure that you want to cancel and delete these files? - Etes-vous sûr de vouloir annuler et supprimer ces fichiers ? + Etes-vous sûr de vouloir annuler et supprimer ces fichiers ? + RetroShare - Retroshare + Retroshare + + + + File preview - Prévisualiser + Prévisualiser + Can't create link for file %1. - Impossible de créer le lien pour le fichier %1. + Impossible de créer le lien pour le fichier %1. + File %1 preview failed. - La prévisualisation du fichier %1 a échoué. + La prévisualisation du fichier %1 a échoué. + Click OK when program terminates! - Cliquez sur OK lorsque le programme s'arrête ! + Cliquez sur OK lorsque le programme s'arrête ! + Open Transfer - Ouvrir le transfert + Ouvrir le transfert + File %1 is not completed. If it is a media file, try to preview it. - Le fichier %1 n'est pas terminé. Si c'est un fichier multimédia, essayez de le prévisualiser. + Le fichier %1 n'est pas terminé. Si c'est un fichier multimédia, essayez de le prévisualiser. + Change file name - Changer le nom du fichier + Changer le nom du fichier + Please enter a new file name - S'il vous plaît entrez le nouveau nom du fichier + S'il vous plaît entrez le nouveau nom du fichier + Please enter a new--and valid--filename - S'il vous plaît entrez un nouveau--et valide--nomdefichier + S'il vous plaît entrez un nouveau--et valide--nomdefichier + Last Time Seen i.e: Last Time Receiced Data - Dernière fois vu + Dernière fois vu + UserID - ID de l'utilisateur + ID de l'utilisateur + Expand all - Tout déplier + Tout déplier + Collapse all - Tout replier + Tout replier + Size - Taille + Taille + Show Size Column - Afficher la colonne des tailles + Afficher la colonne des tailles + Show Completed Column - Afficher la colonne des terminés + Afficher la colonne des terminés + Speed - Vitesse + Vitesse + Show Speed Column - Afficher la colonne des vitesses + Afficher la colonne des vitesses + Progress / Availability - Progression / Disponibilité + Progression / Disponibilité + Show Progress / Availability Column - Afficher la colonne de la progression / disponibilité + Afficher la colonne de la progression / disponibilité + Sources - Sources + Sources + Show Sources Column - Afficher la colonne des sources + Afficher la colonne des sources + Show Status Column - Afficher la colonne des états + Afficher la colonne des états + Show Speed / Queue position Column - Afficher la colonne de la Vitesse / Position + Afficher la colonne de la Vitesse / Position + Show Remaining Column - Afficher la colonne des restants + Afficher la colonne des restants + Download time - Temps restant estimé + Temps restant estimé + Show Download time Column - Afficher la colonne du temps de téléchargement + Afficher la colonne du temps de téléchargement + Show Hash Column - Afficher la colonne des Hashs + Afficher la colonne des Hashs + Last Time Seen - Dernière fois vu + Dernière fois vu + Show Last Time Seen Column - Afficher la colonne des derniers vus + Afficher la colonne des derniers vus + Columns - Colonnes + Colonnes + File Transfers - Transferts de fichiers + Transferts de fichiers + Path i.e: Where file is saved - Chemin + Chemin + Path - Chemin + Chemin + Show Path Column - Afficher la colonne des chemins - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Partage de fichiers</h1> <p>Retroshare utilise deux modes de transfert de fichiers : les transferts directs depuis vos amis, et les transferts distants anonymes par tunnels. En plus, le transfert de fichier est multi-source et permet l'essaimage (vous pouvez être une source pendant le téléchargement) </p> <p>Vous pouvez partager des fichiers en utilisant <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> l'icône dans la barre latérale gauche. Ces fichiers seront listés dans l'onglet Vos fichiers. Vous pouvez décider pour chaque groupe d'ami s'ils peuvent ou pas voir ces fichiers dans l'onglet Mes amis</p> <p>L'onglet recherche des fichiers liste les fichiers de vos amis et des fichiers distants qui peuvent être atteints anonymement en utilisant le système à effet tunnel à sauts multiples.</p> + Afficher la colonne des chemins + Could not delete preview file - N'a pas pu supprimer le fichier d'aperçu + N'a pas pu supprimer le fichier d'aperçu + Try it again? - Le réessayer ? + Le réessayer ? + Create Collection... - Créer une collection ... + Créer une collection ... + Modify Collection... - Modifier collection ... + Modifier collection ... + View Collection... - Vue collection ... + Vue collection ... + Collection - Collection + Collection + File sharing - Partage de fichiers + Partage de fichiers + Anonymous tunnel 0x - Tunnels anonymes 0x + Tunnel anonymes 0x + Show file list transfers - Afficher les transferts de listes de fichiers + Afficher les transferts de listes de fichiers + version: - version : - - - <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - + version : TreeStyle_RDM + + My files - Vos fichiers + Vos fichiers + + FILE - FICHIER + FICHIER + Files - Fichiers + Fichiers + File - Fichier + Fichier + + DIR - REP + REP + Friends Directories - Dossiers partagés de vos amis + Dossiers partagés de vos amis + My Directories - Vos dossiers + Vos dossiers + Size - Taille + Taille + Age - Ancienneté + Ancienneté + Friend - Ami + Ami + Share Flags - Type de partage + Type de partage + What's new - Quoi de neuf + Quoi de neuf + Groups - Groupes - - - - TrustView - - Zoom : - - - - Update - - - - Showing: whole network - - - - This table normally auto-updates every 10 seconds. - - - - Self - - - - Trust - - - - is authenticated (one way) by - - - - Half - - - - authenticated himself - - - - and - et - - - authenticated each other - - - - Full - Totale - - - is authenticated by - - - - peers, including him(her)self. - - - - authenticated - - - - Showing: peers connected to - + Groupes TurtleRouterDialog + + Search requests - Requêtes de recherche + Requêtes de recherche + + Tunnel requests - Requêtes de tunnel + Requêtes de tunnel + + + + + Unknown hashes - Hashs inconnus + Hashs inconnus + Tunnel id - ID du tunnel + ID du tunnel + last transfer - dernier transfert + dernier transfert + Speed - Vitesse + Vitesse + + Request id: %1 from [%2] %3 secs ago - Demande d'Id : %1 de [%2] il y a %3 secs + Demande d'Id : %1 de [%2] il y a %3 secs TurtleRouterDialogForm + Router Statistics - Statistiques de routage + Statistiques de routage + F2F router information - Information de routage F2F + Information de routage F2F TurtleRouterStatistics + Router Statistics - Statistiques de routage + Statistiques de routage + Age in seconds - Ancienneté en secondes + Ancienneté en secondes + Depth - Profondeur + Profondeur + total - total - - - Unknown Peer - Contact inconnu - - - Turtle Router - Routeur Turtle - - - Tunnel Requests - Requêtes tunnels + total + Anonymous tunnels - + + Authenticated tunnels - + + + + + Unknown Peer + Contact inconnu + + + + Turtle Router + Routeur Turtle TurtleRouterStatisticsWidget + Search requests repartition - Répartition des requêtes de recherche + Répartition des requêtes de recherche + Tunnel requests repartition - Répartition des requêtes de tunnel + Répartition des requêtes de tunnel + Turtle router traffic - Trafic de Routage Turtle + Trafic de Routage Turtle + Tunnel requests Up - Requêtes de Tunnel (envoi) + Requêtes de Tunnel (envoi) + Tunnel requests Dn - Requêtes de Tunnel (réception) + Requêtes de Tunnel (réception) + Incoming file data - Données entrantes + Données entrantes + Outgoing file data - Données sortantes + Données sortantes + TR Forward probabilities - probabilités de TR Forward + probabilités de TR Forward + Forwarded data - Données transmises + Données transmises UIStateHelper + + + + + Loading - Chargement + Chargement ULListDelegate + B - O + O + KB - Ko + Ko + MB - Mo + Mo + GB - Go + Go UserNotify + You have %1 new messages - Vous avez %1 nouveaux messages + Vous avez %1 nouveaux messages + You have %1 new message - Vous avez %1 nouveau message + Vous avez %1 nouveau message + %1 new messages - %1 nouveaux messages + %1 nouveaux messages + %1 new message - %1 nouveau message + %1 nouveau message VMessageBox + OK - OK + OK + Cancel - Annuler + Annuler + Yes - Oui + Oui + No - Non + Non + Help - Aide + Aide + Retry - Réessayer + Réessayer + Show Log - Afficher le log + Afficher le log + Show Settings - Afficher les paramètres + Afficher les paramètres + Continue - Continuer + Continuer + Quit - Quitter + Quitter + Browse - Parcourir + Parcourir WebuiPage + Form - Formulaire + Formulaire + Enable Retroshare WEB Interface - Activer l'interface WEB de Retroshare + Activer l'interface WEB de Retroshare + Web parameters - Paramètres web + Paramètres web + Port : - Port : + Port : + allow access from all IP adresses (Default: localhost only) - permettre l'accès depuis toutes les adresses IP (par défaut: seulement l’hôte local) + permettre l'accès depuis toutes les adresses IP (par défaut: seulement l’hôte local) + apply setting and start browser - Appliquer le réglage et démarrer le navigateur + Appliquer le réglage et démarrer le navigateur + Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. - Remarque : ces paramètres n'affectent pas retroshare-nogui. Retroshare-nogui dispose d'un commutateur en ligne de commande permettant d'activer l'interface web. - - - Webinterface not enabled - Interface web non permise - - - failed to start Webinterface - échec de lancement de l'interface web - - - Webinterface - Interface web - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Interrface WEB</h1> <p>L'interface web permet de contrôler Retroshare à partir du navigateur. Plusieurs périphériques peuvent partager le contrôle sur une instance Retroshare. Donc, vous pourriez commencer une conversation sur une tablette et utiliser plus tard un ordinateur de bureau pour continuer.</p> <p>Attention: ne pas exposer l'interface web à l'Internet, car il n'y a pas de contrôle d'accès et aucun chiffrement. Si vous voulez utiliser l'interface web sur Internet, utiliser un tunnel SSH ou un proxy pour sécuriser la connexion.</p> + Remarque : ces paramètres n'affectent pas retroshare-nogui. Retroshare-nogui dispose d'un commutateur en ligne de commande permettant d'activer l'interface web. + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Interrface WEB</h1> <p>L'interface web vous permet de contrôler Retroshare à partir de votre navigateur. Plusieurs périphériques peuvent partager le contrôle d'une instance Retroshare. Donc, vous pourriez commencer une conversation sur une tablette et utiliser plus tard un ordinateur de bureau pour la continuer.</p><p>Attention : ne pas exposer l'interface web à l'Internet, car il n'y a aucun contrôle d'accès et aucun chiffrement. Si vous voulez utiliser l'interface web sur Internet, utiliser un tunnel SSH ou un proxy pour sécuriser la connexion.</p> + + Webinterface not enabled + Interface web non permise + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. - + L'interface web n'est pas activée. Activez là via Options -> Interface web. + + + + failed to start Webinterface + échec de lancement de l'interface web + + + + Webinterface + Interface web WikiAddDialog + Basic Details - Détails de base + Détails de base + Group Name: - Nom du groupe : + Nom du groupe : + Category: - Catégorie : + Catégorie : + Travel - Voyage + Voyage + Holiday - Vacance + Vacance + Friends - Amis + Amis + + Family - Famille + Famille + Work - Professionnel + Professionnel + Random - Aléatoire + Aléatoire + Description: - Description : + Description : + Share Options - Options de partage + Options de partage + Public - Public + Public + All Friends - Tous les amis + Tous les amis + Restricted - Limité + Limité + N/A - N/A + N/A + University Friends - Amis d'université + Amis d'université + This List Contains - Cette liste comprend + Cette liste comprend + All your Groups - Tous vos groupes + Tous vos groupes + No Comments Allowed - Aucun commentaire admis + Aucun commentaire admis + Authenticated Comments - Commentaires authentifiés + Commentaires authentifiés + Any Comments Allowed - Aucun commentaire admis + Aucun commentaire admis + Publish with XXX Key - Publier avec la clé XXX + Publier avec la clé XXX + Cancel - Annuler + Annuler + Create Group - Créer un groupe + Créer un groupe WikiDialog + + Wiki Pages - Pages Wiki + Pages Wiki + New Group - Nouveau groupe + Nouveau groupe + Page Name - Nom de la page + Nom de la page + Page Id - ID de la page + ID de la page + Orig Id - Id d'origine + Id d'origine + << - << + << + >> - >> + >> + Republish - Re-publier + Re-publier + Edit - Modifier + Modifier + New Page - Nouvelle page + Nouvelle page + Refresh - Rafraîchir + Rafraîchir + Search - Rechercher + Rechercher + My Groups - Vos groupes + Vos groupes + Subscribed Groups - Groupes abonnés + Groupes abonnés + Popular Groups - Groupes populaires + Groupes populaires + Other Groups - Autres groupes + Autres groupes + Subscribe to Group - S'abonner au groupe + S'abonner au groupe + Unsubscribe to Group - Se désabonner du groupe + Se désabonner du groupe + Todo - À faire + À faire + Show Wiki Group - Afficher groupe Wiki + Afficher groupe Wiki + Edit Wiki Group - Modifier le groupe Wiki + Modifier le groupe Wiki WikiEditDialog + Page Edit History - Historique des modifications de la page + Historique des modifications de la page + Enable Obsolete Edits - Autoriser les modifications obsolètes + Autoriser les modifications obsolètes + Choose for Merge - Choisir pour merger + Choisir pour merger + Merge for Republish (TODO) - Merger pour re-publier (TODO) + Merger pour re-publier (TODO) + Publish Date - Date de publication + Date de publication + By - Par + Par + PageId - PageId + PageId + \/ - \/ + \/ + /\ - /\ + /\ + Wiki Group: - Groupe Wiki : + Groupe Wiki : + Page Name: - Nom de la page : + Nom de la page : + Previous Version - Version précédente + Version précédente + Tags - Mots clés + Mots clés + + + Show Edit History - Afficher l'historique des modifications + Afficher l'historique des modifications + Status - Statut + Statut + + Preview - Aperçu + Aperçu + Cancel - Annuler + Annuler + Revert - Revenir + Revenir + Submit - Soumettre + Soumettre + Hide Edit History - Masquer l'historique des modifications + Masquer l'historique des modifications + Edit Page - Modifier la page + Modifier la page + + Create New Wiki Page - Créer une nouvelle Page Wiki + Créer une nouvelle Page Wiki + Republish - Re-publier + Re-publier + + Edit Wiki Page - Modifier la Page Wiki + Modifier la Page Wiki WikiGroupDialog + Create New Wiki Group - Créer un nouveau Groupe Wiki + Créer un nouveau Groupe Wiki + Wiki Group - Groupe Wiki + Groupe Wiki + Edit Wiki Group - Modifier le Groupe Wiki + Modifier le Groupe Wiki + Add Wiki Moderators - Ajouter des modérateurs du Wiki + Ajouter des modérateurs du Wiki + Select Wiki Moderators - Selectionner des modérateurs du Wiki + Selectionner des modérateurs du Wiki + Create Group - Créer un groupe + Créer un groupe + Update Group - Mettre à jour le groupe + Mettre à jour le groupe WireDialog + TimeRange - TimeRange + TimeRange + + All - Tout + Tout + Last Month - Mois dernier + Mois dernier + Last Week - Semaine dernière + Semaine dernière + Today - Aujourd'hui + Aujourd'hui + New - Nouveau + Nouveau + from - De + De + until - jusqu'à + jusqu'à + Search/Filter - Rechercher/Filtrer + Rechercher/Filtrer + Network Wide - Tout le réseau + Tout le réseau + Manage Accounts - Gestionnaire de comptes + Gestionnaire de comptes + Showing: - Affichage : + Affichage : + Yourself - Moi + Moi + Friends - Amis + Amis + Following - Following + Following + Custom - Personnalisé + Personnalisé + Account 1 - Compte 1 + Compte 1 + Account 2 - Compte 2 + Compte 2 + Account 3 - Compte 3 + Compte 3 + + + + + CheckBox - CheckBox + CheckBox + Post Pulse to Wire - Publier Pulse sur Wire + Publier Pulse sur Wire misc + Unknown Unknown (size) - Inconnue + Inconnue + B bytes - O + O + KB kilobytes (1024 bytes) - Ko + Ko + MB megabytes (1024 kilobytes) - Mo + Mo + GB gigabytes (1024 megabytes) - Go + Go + TB, terabytes (1024 gigabytes) - To, + To, + TB terabytes (1024 gigabytes) - To + To + Unknown - Inconnu + Inconnu + < 1m < 1 minute - < 1m + < 1m + %1 minutes e.g: 10minutes - %1 minutes + %1 minutes + %1h %2m e.g: 3hours 5minutes - %1h %2m + %1h %2m + %1d %2h e.g: 2days 10hours - %1d %2h + %1d %2h + %1y %2d e.g: 2 years 2days - %1a %2j + %1a %2j + k e.g: 3.1 k - k + k + M e.g: 3.1 M - M + M + G e.g: 3.1 G - G + G + T e.g: 3.1 T - T + T + Load avatar image - Ajouter votre image d'avatar + Ajouter votre image d'avatar + Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - Images (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) + Images (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_hu.qm b/retroshare-gui/src/lang/retroshare_hu.qm index 65761eaf2be2bd110ed9c04da8f359c522bf4e9c..db8ad680372c41cd393e528f655537c1bf4b04a6 100644 GIT binary patch delta 21191 zcmXY(bwCu|*T>I|*$x%^X9EV9fZc?GiiLn;p@M;mT^MUVc7okvpdtn+_G6%kg@GN9 zg^C^6itm@1*MB~WElEyU2L_UyD#1=*IdCAjkBEDdbi5-HZAcCq z2mU6W6QNQLT0`WJWpH9X5hxCLsFZ_Fg0aK{CV?wSSkI}H!#08YZ~=cbhUBS~y#|6= zM9qF_oP-O^fBmb7O7^=J_=wox?cgV39u+l)Rv}0J3E3--NGXIj+Gz~!q*C@e1~w#~ zgbM>@L@5xT>2O!2?2`-bCOUv026=bfX+G!I08fzEovu=L3J2elC{RoF76|%SQZ48I_{)YK;dt zkr#fXkqtAmnds|(DtX0n8r=;VJ??1?cSNcOVm;;@e;__I0&ftjGgo6|AC)3)n@Sms zsq%+ieEXkD?)*um_>Bw0c{x4}>_Q^#Du^lc$JF^}5vzfz%x43P7%0v8=bykff)5e} zL=le!TW66dhA(P^KeUyAO(hde+M@9n46|JXvD@uciUPAR4Vc%4Yc<{uRLLu2L~vdX z7yxDvYxIDq<2Dlem%}#GiCqrWcpHC@*A8LBT;ML%efiqOd_EDt#yF z>PCDZthH-6u{$GG3a2qDWe`TF=V|=Sb(Jy_7uesI*s*kc2dsYbV&Z+@5o_3$cnU6{ z%Py7Nr#gwJ6JdW-hLN0!`75wrCAU-}IXizuhLfB>o22au$z?7?Lv1Q~fR*H$?KuC3 zhK_<*QPGWZ3_1AfFjSA!2>)$3Ktx^qb$k;HrT);PY2O7Xd_N;&8`$qOmO z_YEbPDM@U`&0cXOk&52|Wk?as{}o@%HSXXh49l~C#%32)vV$8mrs2bQpPj)E=JR%G zjc;13!CRAclCL3(1!&Fl0wn^1!be`%hFU4swkbE~u1^JxRW)Nxb%Lm9oz{lJ7Cn z8HY4p!uRLD&R*GHJ9q)t$v^QXRVA+@G%l{A@dD-=?+XilIG5~aYS<-sAN;G zk}?mr*r_qHyA(gx}(@tTTK!hjCAznTqW&duXDI-*JLkX3#$~TQeG2|yAiBU@ zR!gPGf^9uKPE@hEN`4JP`yA<_H=mC{_CEU9kL6syQ`9s#XTJlPT_ z5dYqS>@|N7tGSO#o?1ZcpZ!!Sq6_i$_o&oLMB%7n8izRUYX{RJsZ7E8M4Kb2?4nA< z7jGb!Ea(rBOfLCX+V(nC+>Z3zdJR?f+DBs7L+}%cBs*2ET?lMOm4o{rNtPnF{K(pD zAGskAvM&8p@@B8eEv+_*od%6>*OMCp9(OdKr5y~sO789m#om9&eJ=EZZx3?Mw_cA? z8hu?g4r)&B`Nry-LGEez90tuj6L;j-oT@?=Py;8GvO+FZ_02|rY^^b?u}X11O{J6t zsan-EB)byRsTTWA;`#`clFuQpJV~@xPxX#wL){gihSRDOFFK5xzJEr-Fpa$Lz|GDE zsAP3Ml20tIBFTqZB%~3Szp3T2G$N{@l9y_v(PO*DPq$S{QwQ>|atvapf*biC{!6S+ zeU;*jANju)@Z%*EP_s4h-BT%`HmrU30cuq_o>;xh)XIG-@in0;#aXHGzq{0`&QhY` z|5M2=Z!`wvY0UXXtp;@>Y9B?d#(0x-*+Q+-9SJ16)udK;df~)1YCRKE5Ob2+)cs9t zN-341Xfm}~2}M>pO5^OR8c)BZHb;_)UH?jLE<)srL~8Q{(buUMwRyS-oIrv6G_gz0 z8nY&<6nP(1$`Bt4bV%e9dm#!OaE#dh9%}42T;sDF6gUWhr_p!{TxKHP=B>tl3DkB@ z4)L=asqL~8#0K4=wpW`FOC3S&>)s&#sv5O#;YYl|2WlVCAGz!Yb*S5oq-!R1xCHNU zZ$=&GoFZ8zjvPVV^GNE}P^W2gh~l5AWL5gAVU|1Fo-5i9s&OkSxA#_y(4k% zqsBbDN?A9Rrv536x?(BK=sk^?^HKUIz?0a-*YwZ%5+q7`)57AHNqihhvBO~1TW(Wa z+;pP*$7t!$0VKA+(fFc2tt+vPM6F}AZYN61W8t)Za5S;5GicK~$4KG}2GbT#xX-x+ z+BS9_(ZR!%@CJ3_gPFAFDZX&u36;WmG3|A^PAsG*CAV5Y;^Zkx$-GQ#VHh27drEYp zF&(If0JWzB9dw#ZVv~sux-B5SG=>hkV@j4kq$34QB;AYAaj!4LH#DW=j&3lDHviCZ zkk@*pQucaIXX~Oe+H`?3hS`Y+?WXfV(4hgd=yE~0+t}Wem4TXMzyZ2H?I{UkL;CN| zD!5ZqdNSRMSU@#;T5>b-7SZ&yB_vs!uJo+V6p~0-FV^Sa_o~y2L}z0DWy$e=B+}~V z$@JN660xa&>1zwri8&ML`<1rHPE+Y`pcDLci%Rj@%vdV)!iDe5P^Jg5Z;TZPFv9Am zu)^P(6WxBGk~QnhirmEcisxAIbuPrVIO~gT#v#e{Y?&5zB!C* zPG45O^;6{QlFWHFY@tddt5GkHm{XEUZrZ?V#o^9p$1#t9803u2%qzo*ShpIi?v+>w zi6X52xIpBPXRLuQLUQ3S*08t>Mzj`dcm=Ny9AJ$e3WVYZ%;!4lmBcR0w|NudQyjZl zi=SsO)ZVP+k5Mp26Z2p7h3L;;*7{u(v8vrzo1IZ4svl!*UP2FCKfwYAy(Ly^6KfZF z2-)!z>sSjCYkqImv2!V6S3a_!iqL!?p0kjj80z7HD%t41Ec9wy2$3!BL(Z_sTv%_Bt875d4x(1^Y|thM zkay8+*xvmpd`qxVjc~y~JlObX#D3?c8ePw8bW396$6O}aZUS=zEkI#yVAE-v(^Z75LlxQ~lTL8%@A2!dLNqiG$^HC$PQGeOmfQQ6;O15@v zU1GUY*`^p&<<+OK`2B*!*+y*Z_AH`7o7uMh2(?>-*!HaHB}Wk$ zbMXc2=vd6<_lfN2>7~RHbnL{mQmCj`vh?1CiEUZKGTi%+FzsdMopI-*UD)|u1E8#q zu}gtFh*eplQk2hPm!cedh()bpm*yoAul7o%^qj-4EGkB9YD z6Kk;B$1&7h(lib~%kI?ih0Qc%50QXqTP}ON^$W>@>)DH{Wr(qC_R0z6-=N~`tudR# zF(dm>aU`+%t=I<#4n*Q#_F?HIV$aI5&lk{m_1gNEnW zpQ)ZGBwDDHp`M(|A)T&8B~mV#Xp*~1v9}Xvf8fS3cFyz9PrSqBL1f2J2R9_OBkr}B z7yRKuqUJpAD7wKHeTBEYm{$)JxvzQ2FQ~lxzvh(-IU%h^X^iU4t8}bSykKeW9tFRx z*@#y=v6*Q05ngx0T@r_%^LkApFg1GKpu!oV@9Dh3^%SCBA-r+zHN^jU%p32kOq?I& z%@%tSH6F!%=3+$pRdaCP7%w7wrb^k@hX;7V9otsr?T$*~RdRTHB^zE4t&$ZOs0at3*Kc3x-M^9@$eOxng)I>y+xlZiVXFkwA3VHkuAL=s=Y4VFo8Ir(<&+#VSc$Z3P9l}Q%F?U4<^O5_` z61~{KN11D*5t5;jw`r=e-w>7J{5(F&bu+PoHTkH=GZ5&?^U+(-HVAj(qcbvzIl{Z} zG5KE*9?!?TL;4NR=3}jq$WG0>X`;d%&!I!RhMxxm=zOoZ+;QdOzdQdd+wP}3KH`rP&$=8Pz#{0GS zCV7J#%>NpXe}0#kOK-k;(sY#94OPkkaeN2zzbG8U_vDL8@3wsJtJ)-|9Ofxi@dHg( z^8<4ry?i$D0~=#u6T5lpyZ;eiRDvJ;gLLe>m>)8Fq1AJrA2;Cwsy9$6QZ{K!HRaQR zz>%t+khQbc}&zEvBWpFE${(yuAuguzM~!YkAxZvZw zjTR9rirgxO`do-or;3rR_gR#!mqcuauW*|H>)o0osx8e!1=L96v4^7CMIW?&gs3s# z3fwA0)N<=XtbR*TDV+A zs2>}PfU!t4^TZGSJ}R2+{D2|;DVoo@PJGlA;oY|hQFf~E9fEXgBGK|YTDpJA3IDg3 ziFQ3w$rA31fR;`~KVw9z#XX3}dWzO3eTc=k5^Y1{(8(PyIu%A1eSAfP#>^mkG}<9T z_aM|}eAIZkw8pH18nZJsz6jU&wwcBs(JHxeNTacfMpJQ>!s@2cHdLkTRX~L1q6gV& zp6F`uBiVk8==KtgwT6x_BD`8{qNt4`qAK!vi?br~^hT16`-lOyQ4kanVpxGP#Qz=; zBgecWn$99|Guq1jA}$@0&v9^tST+1J(c~s#U5^>WheT*}cxz1Y5F6V05IuP=5}LvY zCw&(?c1}fuAxP|TUqEztwAj-)k|_0$N}iq}_B?4yG~$NXJMIg-=B?Pb{2lRMS4DCb zLUp;G;!u7QedaNh4)JKaI0ivT-3=nW!Bv#kdXau%JGx$t#QEhjh!rcLG3$#;-n+BL zh&vjSGsLBD=uL)&ip;LJi1t?!S3CG&rDmVFc{7*jVyL)XKZV%c_2PC)N#cpO#DiRK zVqa#9N7aWS{}-wt9-lW8t6e}meq|;}S>oxcc#_qRh-YYmi*}00zFHb$Gf6ye8;+#$ zLF2f3;-%pZdOfE^4o3iUY9Vs;--w4-5wE;qq{d0&O%jZ(wySts!HdM-AL4CoXw8pj zRq|Q8#fQa?(nJN1;Gi_|>`&t3P*g(YABoR;tP=!ziO;8skZfTVUn60~$-TulKP+wx zE2fg~id8Ag*A(BnZYS36h4}sqTJe8B#Lv5SBIga__dtbs>U@z`TM(UlsFKy+EVAo_KSl#ZjnpYmt<65%T z13`Rs6X~e+`8aAiE~L`^4p6)PK|VxfXVWuq|M*~2*5bS7kZ z=RVTgJ({T7ei;A-CH6IvtxCgtCJd3SX51k9lq*{;LW!2#NVc(H?uV6DDegU&ZEC^D z{YJ|+W1%T~tahje(#u`8Yo1Mf=nIWAy36+LI4YN)vgfOj5GaLYpMp<_9s4LF8Ip@_ zf{Y9tLaaohjEu(mR99aac@AjUrJtT+YS?@HKgI?szYvO;zRGZ79$EedIhN z3X2#BjN-dMBdAR+(^c z3$gU_8lOH;Da=LWcJpaSw@q^Ag0IA_`@!$v3z=9Y5@mfUnOJoT@v8MShX1EA+Dl`M zhfLh*z)()`l)Hu^ls?}hcTYpUK7CW}nY$Tsdx_k)>M60IVRGNebr6@aGC3M*Sr;W! z2Sa#_4U-2aqN0iUD~}~tM(=l@N@<=dPYs1lv2yZsu{4s-Z{%qQ((lSy^7O(iqDw-i zxjK>X?jX|~<6Md77L(^V+@z6@N?HG;Jl70LrcgVTZ1;YZvj1dxZU_2y_5aF@`p||w zb7e*tn$<}pGcKSuTzFbuczzFs%PN&Tv9n6?yoJ1YCI$`42l7%lykbhA%nV1I>3Ur{ zGV>QEGsa7m7oTg)wrG6*N#pB*D*0lm@d8sREJrnFZP9oqKxS^uMnAzMuQWIX9q>?I zX}mBlXIk;1g_VUIAL^w7?-gJX4Tv#Pa|1Npw~@+RDnefN?#Z$oNLoGowv#tlZE);MT~N`Aph zr3`V5mUo5+6YcIL@1ER3{NI)G{!|xiY;ae}J?$D-?p7&Hv*rDL)rr}=$p0(|G`*L| zC#$ZauRl{hZ=XS8{dtZ5;q@$t&?_TV3i}cHvVCK$6(z`=B52vp?jm#QoklloutVky z!UqSNRf;c-RLYPa@>LL&ir;+sx`7`;YXyxzE6X>qmus@Em5f&jE_Coq+z2E}@9P<;1)iD+-!M z^m(?TZQ)+dLfPBBBc>Koa9v)G=)*^B$xk~N0{APDIrQWQz$hw_D2UKdRv(os| z0^)<4Ys9KsleX_jw)&>{*j$PE4p3Tr!cZ#nm6qjjr`zL{*2lb%zfUWzAHkn98mMFq znyHj_52cL@l2jG5(q?Ta$-Y%Y4hamv7qD59Y2%AoC7SeW`u8NDNg z_y_fu%+y~$~f#%;EmFin5$mIM%GYb-r{`1bcZs235=`Ac8$SC zjd>GQayCV!j4~@zFONe*F+`c3HyOrORhd-@x#98-WmfC%L`Abz%4(%F1}GY%wkfkF zT!*PtRAy~NZjfe`;(e$xYfnoUz2l}b+p{pyo0rP$m-xavjg&dtozXxTrOZ7zllU$- zW$p!xjDNZ^uLXv(!CjTST1kzsf2b5YwD(2kS?%?UYZ||dQsyOkk??s8)+QP7P?>iz z4o#`w%7QAs7~%B3%A((JyK}vjC0N22{Z=bWf9@yopqH}DsR)Y6Z_0|}m{Sp{ta!c& zJ1yQTtI_8teIJc~LsarYLo~V$R4J}3P$^q=(>NqiS?f^(+3BWD$33{ zi3P?cD&?40N}|AqfvH24#AbNE&kmI${fv^Ni${9?pOW;rBZ;>j%IMb| zT(n9)*F)LYG7UMwRi&))pOWkincil%O0mINNeOnqy6ZPq4m3nQHvCl%41slbj#3V6 z`-z_Jew8Bmsd8{0q*jSIm2%)S<#@9Ql;h8pe;c4S{B}o4FN6&+wVai6W@y3I7nF1H z(1NxMCF5)sHp^I)^A9!?d-7MgFgTBBM`7h+7)rPRKjo66W)Z~d!pbF(`94y~mp)S| z3nhZJiM9HoTyLI(-BzuXyTwN$qD3h8=j|pT-zyI?k^P3uP#&Jc)Rmm1vEmSw{Ms<( zMXmirw8&UHSGXFs}C2 zRgg$BaS^%-y?oKBEUj}+U5P4rfzGu$hWbYK=sx=JQbJ5dwu%?YgdZ zFAVXRJYC%v2;JUxU41G{d~cktK^>^*4}EpbmIo1^)lug&s0qoAj(IwtlTN7BdZ=U` zJ2YN+q48G{mBLm-=kusAIvtC3Eh{Ui3&M2)atF48wa^7z!_w_Dhc4hAG+vK%U8}$o z*eMaOaZmwW+nH$LHc!@dY(E1PRuNst!Psfx;-U*4GXwpq6%nAWHA+LeG{!E-0*$@3rZ=>~_V@ht4X+Z|$`--PVQ0K=B-}t_zz4H*D2k7ls?+ z*73To48?1o1-kA*_@TC^b=@c7jtdmf^%QroKrvj`vwarU|BIS+Js*5VlX>fXQYCjOqYFQWDXHE|7ghEz`uU%9gPe||@7GN?=u96HZclWBo4OD;X6d4H zN06XRx}pC;34Q)gH+ruV+}c|=wvZ<}B-3@{+#zZQRnd*t!RzLj^NIDpZM)SIyx~EO zN&8ibH$_!SO9S16cRL|cg~p3DHNGmUk}J(sinF;YrSk-hbsp#@j@*on=s4XZuZJW{ z_R~!}3foxPO*g&fFzAj+x|vHHt4PGp*3DX7o`@~e&7SK_(rvLWzh)E7f9n?SgLI1N zty|JGm-zZJDn-4r8gCEMEm@7iqxEN9Tsqt``lfE>W2EE3>AE#VFd|N;bsKh8$JV}E zy7>OniEVGBi$8$sy2(e~=Er_eN)2_J9XQ~9%IUTq*iX{4vTlzXBvsN@U2=R7vEUuL z6l(<%CBAE{a6p%ujJ=6%7wHc5MAxy?6x~tZ>BKh|(;aPr9J1Y@J9TjoQQ$C@Jn6kk zaYg7(_p3|1YmDyPs*&gcch{Xeh$%UKT<6G$s|dGq(PgZwh(NPSrF3-GT|BlI)$Ci{ zi{A?TX@#A&*x?WW7ue&;~49PYPby>%5kZ5pHcjG2Rr|${f!-ZI2Xzi_g zbRK&NJ2%lijTk{ZGfMaL<`-hOQ*_z2(ukejpz-21hkC&K_EafSUTHkXHU7D(Qo>zc zgu*yaD!La*UPPIGx*QK=$qi3*@AHsGXExJ)NWc(pX`##YJ4LLgPWN>sR=HYN)crhq z10B{HDn({Dy>Neqp3q0VoQ7UgBgb65atV>oepIio;fcQ7QoX)o5{cIR^@cR0+b{d{ z=Gv{WLGhH{++YtPTn)X&eFj2mF};0+omi(O`U2~q6PCK@3qE>4Ec3a>7xz^PyFp*5 z&^r<*()CW!*NOEjrY}-Eme|j6`l17-!T*!|)dSgefW~go`l7=Z5DTlUFPe$a*>{mj z@vekQ8Jemu{ub^y>5#shCl(sdr0Xl?f3E9$eU)fT)zoQvw{Po_3;w5fpM}k^o=N(u z(iwq@>FeNg;_E9^ z`oKGv5i*6o-FJ85W!mUFxP(DWM(aBy+KG>=q3@J5iKHvjhrY$8$a<6X-LBUqQLvJ} z_s><3cJBHxds?$q~hHXVGcAMm{}_Js7&M|D{R{h#|uKNvqiqfcqvZB@yt7F5Z@ zdTESG)(<&{QnzP4{g8|k;5PlRgP8M^Lo{CdqaT&_3oY5^`f&p=mBp{>$DMmfv>{AC z?)oJ35u52%4Qbe*(Ir+tW1?dnvAk*e8Sk-{^Z2iRc3J}@k?#6=nagp9uk?$~eSu9B z)Gs-B0V+05ABVz3w&eP_auB1Um_BaEViYQY`lT*sy|hJDcm?%rF43%PwNsxqH3uAtT7gG z!C7Ow)hhX(487wlx>3|F8z+*HCfn)LjR-uKmgqA!V59n_8~Te25Yd`n&|ms}o}_!c z{_-c>S@>an<`4LD?+W^?>@4DOCGQr*`JVT>J z5SvGK7`(T)!4|Dv8eeO#W&IHbU+ZT4e&YrPzi01=Z_6|IM<2vO<1>}gnrQGJUJV-& zdmGx+#7gF};)b^SV2rhA8QL3=Y?}Sg(7xUXB72;nqZJ{y)CWUwnlo{B*bpL9h`x0& z^sIOt3mU`0&)9E9wa5Id@oN+{(z~Q+y0_a}ZGG_cYA!gZ2KZLktU88?;t`spMze3`<#a z61&!G{1s|gI^UCMUM0f{TN=^r$%a*Ry@+2pU|3zsji^I$!`dQP|C3ek;sErYYFL}p zgXn!J!{%5hl*G}7t*xG7Ur-Ih_C?rsyK$gl$DwSj>xUS2oI|!dG|R9fGXRq6pkc?u z0XVNW?0EVN?X`P`eHpl+79$KPi&3gA>|sb*3C&n>uOStSUA*^e!@<7au)s0VaL|!| z5LCf%_|HmosTQad@f|d#chUH*Hb4Z`RRmvgt3}@PV5}&~gXZo!swmHXeX5c?W zt9%USPa~dO>0~(nwItf})4=PnjcCKgnM+Zid^TK+uZevEmkpP&u~if*WN=)1n+y3o z(vW$vH#(co4Og%qlw!9SZU+BDti~>8hu%F>Uct;rPTEkPXP9&N> zF+6SIi8T7m@Y3T4u~{<=FQYMaO_v*TJfN5=+|=mO$?&R259ohS!>eS}h;e@nud)YV z@!H*C_|T#@@dkqpA2AiI#V*6gkf$v7%;^1g9rovJH~KuENc`nBqyLGySob@sl7}Q{T)1AP^jRL; zxGtU>_*>A}CZaZmu!_bq2Q|7~)cDa|C2urGW9LsA&zw;y^cyu63ef1>L8GseN@={W zu~kW9VB?9zo*RsT{UCe}?an9S#;dd1iC^oCZJ!Xy!N-gp9mo}9CK`k44QO7<5LE95K__HQ$C>Ju!AyknBzzGWM7adEc_1v1jE7;zi~fdwEH$CCyaHFKtsP z?v*z7>AMBn{tg)X|6GZ_<5A-<1LO478%Xw>Y@FE*?%OBRICBqds={-X{7Rg0R^P&ikXwy& zQd_}RKB{C@yj1dw;VMPBSH?LGd_deNsGYd;+8DRy6^V<#jmrxl0QDZNQU=8tSM^9H z_B+hD>IS?_e?_IN+|{^d6C~ZxO2!Q}1`#_EXpH}Z+>&B5Za&$TcyPLL>rC9~_@~Bg z+dg51rhrQEW|qd!!;Ow@JKJKd_mpv0kPA`h9+k54X5(JN2q>XH#(fJBdV^z)$vZKm zEwhZt-ylTFPdBEl#m?&URgL=v%63rgWBW4IyDJ#D-rvHFD z*9kD5tA-px4o_o7L<*Kr4;eES-a$P-+IYpcE&@(J`&w4&bioATEzIW6Gr0fBjfAN$wWI>8Q)+#j%;zj_-1r4))kAXO#1Qs$)d23lmFEA~xqv zZ1;wx9qjyZlXYVN@s0yb1@<7_cl0(D>XwbAn*dYc#!kfMg_=tFVZUN}q^a~7WYvrr zrZT@^OSh!Sxi>EScf859p9^;NXUV+l1?`-$?wEyz@TJMO3P zFH?(-N`lLA#wXXp>oY3lVHANtIU^kp8qETUD7veSE3Q@_gWU3U_&l(>UFhz{M zfjCoJW3JoSQ27xO7vbBMI&| zVvQ;Cd=}zKJ5%HxROyWkroL(3#5Z*`^}QGj#kIlIZ#9f^(_+&Ae_U|n8`GeI8%elk zs+8kPfv9CGnpMj2oxpg!ZmCj^pJy60I~IFe8>*D;-UvF0WGdOEw)3%OXC&+jO$;WfFzYnNBX8 zLTtx6)9LzN=vyo^ogN1Ff4ke1R-hyvGx%ystCvCKx=<7chREt;IzM>?8Xr?sGS6_0QD00~jv}rU5T-2aLp+hS&2-a0 z58M4dnr_B!M!-B`y1jHZ(U&;WgHkpkU9{0GTP2EQ!m&+*dnvYIs_r* zWmeXtKq+}oHtTw%6YsUgY#fIl`rOKF8jjpCu$sn0uT=8r{u*QYnN10WNuTxnP#^C;z$WeW~YJwB8SyC7cFoGkDvu=JX#jS!Y??2@@*V;^iGyP;A%dTValdol_AD|7Sh@6m>EHMhj~G8ZSae-|5x+(qWrj?q`p zf4pgKGc%j`)fpO}Z#K6(6i=+*dX>D_OLO~+h=_wd%t31r*@o3K2cN7!yk!e>@B^s& zmb=U$=Z2v-6{wOgergUqfFVEK#@smpBa(PeC382LdwRng_NAByqx~Sg3z!}1LFh#D zC=+6O*aGvY8`x=8`J;JE9NK&QzBwjz2ho5!=1Jl3SL00cG#k94=r;4T0*L*0+|1MG zL3wp>GtXL&o!7&Mn&(t3jLwWjrHslk&ufv5F8(9)e1Y%x9BiK7z8$gJXUvO~PAIyc zIn0axy-SpQO(pO4P~*T_=EbfU;`_DDvD2ZTu5U2M-3ud8_ON-)wnfA**HkI)C7IVG z!CRc>n%A1&5gT9BygmVyTFZFz`g6zeywiB|*8KrcbeGJDOREsyKgYal37Tf_{LOnN zZy`S15vm=`oNL}Y)EWPMz)*9txh=6oH*@l+IFgmX_h<>Vdu%??5}LDS4V7Ylb#v-b zwEbfCnU8uRJGUKWK54o^)W5d*)JaU$%P!_L|9o%AQ7I~n)_9|(#=C*$Ge^o0cWmxt zJ{OpV`l6&cBV;-n9Cq`CqQgnNw3;s+-HxVNm`WDY)_fT)V7{lE`C8pblzwjJ>uEhm zHv4VP+Jb=c?;Z2a?TC1;C(XB69-3k&%=dQn#zrWU`MwTQb?~+M!K0_d{;o4WG8H0T z$HV-1)+G3U?osoTUq)<(J8I58bsEo(WU1sHHB`#p?&cRW2M}xD+Wg|}b~MeT`DLs# zcH_S_zv~-7a!gb6#}i(7V8Th`x31=oXEC%n2h5-J5y%w{%wKC07EIcizvm`nA45rv z>qq1h`M>fq^#o75Wd2oP3=~(M`Pa=rqNGjcKkq7Fk$aT+Zxnubq++3H#O?#-EWFAn zqFx6qVpKHlaJfaU@*{TnluBM>rb;O%Xsqa^(L2GS)Q0F?JjJ4ngsqf2X3+&X^3XZy zX))yC65pM)82`AU!Rcu+t*uScrJKdtHHs)b%VK+qfOGzrrO=O6M6D`XoFwKrwt~g! zS}J7JWOX;z2?;-zLN>406a_9|9*`ZKcxt%QK z#vqv`SF@CJOdgEdbc3bb%w4E}7Ff!coP?#{pBhVku#}&Uy(dTdTgvao53zVl`JYfc zM^{)X;0vhFTa`RH#^Un!Hu1{WEUrGIurHyBrAqhx=*GENs$G5nx4y2Dogbw!bDhTL zEiI1x53m=@)f0S46^)m)KNQwp>T6*;r}4%ejd$-^s_PJMG-l+e6#KRJWvBA$ zYdN(Mn1q#EH%rGq?XaHF#1b^x6HjzFVl5#Z^u(9EwsiHyTst+ebdQQf-ri~nch7^H zjIay|gweE5wu}gUiv7hGEF*Fd;r8~hj9k72@!^SObbYAVoxd!jyJSHvf3b`{1zm8m zu4UX-Ou^c2mY7yei1zqdCY|#@0pxF)T4MtqDKl7RrA){6fbepbS>GW(2llbd)5RgZ z=2_-hq4jtP%Y6JWbM9(c)TuD`Bfhi5{_h=D-*;MK_fEqaQ%{xR^%j-VR?V`sH(Ef0 ze^^!=LLl<#Y+1$bl5nYES=Fl)$tou;8+_Z6Y@TA-@HhY=c%Wrt=ymx2wZ4{(Q}XAm zuVr&ZtNa4H9!A{CgvYNQXRAG zPk@mOPgTiAU$-3SAB|PD)s|FeFQV>OEvc;#5l>~S6fXTNhyLe_T|HYhjv8(`QfM%& zf0X6;Uj17+JgnyO`B|RXo zA6hP!L=RcN-EwI#B3Id|8b7zQWVXTx-8gKy!M#Xq&e8aIzU4MS4Ts&a+}`X>;?`Nq z!&lGHk4&}v*ATWbdWa?aSsDtF@0M4MP+8R|WO?-;Y(e>Kd0l@v@%4i(?;HV8v-HLC zZZP!v#bcJwwT;;JGu`sX4B^0!Sjmczx%0D?ySR|}wZzI#!L5dl*EnsrRkZaZ@|$H9 ztF~c}OH->zMAF%4R4Fd>waTD}$a<%(iXj`jc6(WsDnZyL_&=+4MLd?8zgitd6Je$C zN!DVw5K2p}u@-y#1w%bjC5I^%-x^2a_jGH8Kt#$a&sB;F?pEiWaYXlySY7djyxJnG zYj_%Z*i)>P%0yu6SV?Q;=aWg=hg&PZSOlK5R$GJ%y}I05v%HZ+(H7R42^is_2@b1Q zI*7-Lqph8% z*oZACYVG_1dVk-0YZns=ixU;BVKs3BU9(m4%X?Ld2U*szo<*>by35+VBh+(xrnPtC zbriV{Cu;8%$^yBk)AZXL0} zZC1xWs52a;Hd!aJ-lu^kqe^x2>mRBkJr)ZpzU|qaVf&cfLYK?954*QLJSXcIf z8cz7CQcm1%UAY>K2%nnP)%Hm2s=H@h_Y_5A-N)8#wfE-6^CGS+159kVSL5kTHlUqLb7##>-*}+|FZRe){p%= z;R-vd6u0ak=4S6D>zB$+up9rD#*quH-+v-+$IY|;$nVN0jJE#Th{6VePXuqxLXm~-R9k!MqHevbS#n!qhG~bimw${FgSj9WqS|5wYvfnOS+Xu~& zL|WN8wuV0kW~h|ChuJ!A#z>XBXbURENTddWC{*fu*gEMSLx}vcby|-RO$yeS5^d}B zFRJEuUpw1E)Hi0>LVn-}u1H&FS2PT)Wo@0kvk}P>Y&~sA$GxiAdj4}6Ytu(;y_Ov( zQEh>(Z$W2t*P?9$Zy`4{8*Ur)%#--S^0vXpF><@d#LjP9#<3*SHlsbh)+bgaJ8?rL z-_zapPl_bb=(=sm6l{sV(%%+a;+w>Rze-C-v;xCLq z1RrbL{1h{NVw!Est{)^W_q1*8hyrZEFWO#09ed$lvrK_kZ4 zYq-0SD7V#KV_Xu^S08&#aTQ82-Cpx}2C9SZ1MRg~7D~*ocF#h%;8M@+o>$;xeR|uy zCOjlsf6HDc0V6kTpGr0=)?P2_ICd*U+kLtWB)(;;-DjK)Inu@M{~ROx_CJ+;(q?-r z>`)h*-f4W)#@_016B5s3>>YD*h*np#_df49L9F9(d+(na2(*7x$^jns0iDxHM#S3( zj4lZ!Siv66u&H3uN&A@LcJxD??J;e0iCqY>kN=E7?WEIqbBuk$512yJ2>ZkfL*a7` z?30>~#4=1L`;@#Q$feEf)4C%Fn7Y{iDLa68f$8>t+ICP-AGz6Q4#Ils3V-{o--*Oy z7un}g6?A@teIB!7_dzlHykG^L=^gg@%gYcg7;azS1RwZx)V?60HmU`8`+_gNM8~$q zzU@%aksWPcQegsC*i$s7C9C9BwrjjrKx6hvjbESGmrNUh?nrHou60z(f$sL$L$itg ztz%zZG90@u_4d{Oz{F<;+Sj5lERw$3*WbbWMH|>R9E9Yqztg_)Xb=)k!anstc;D4{ zW0uCd^X!{Yz0hxyN?v)jeaqlG5Q-W0t@#UNr90cVy~X2V*L3!62*a#+sy$(FClV#^ z+7qW-C-z!r-y4H*In&j?_vsxH8RzUNaurtms@qdC5mPcN*$*5_f=TTPw5KXa0B!Hv zQ-d*6&34*PP1_H}yHewgT#cWG*iXL@L?g!AGh0m~_UpF&I`pD!P~VrrBTp&m#wGi~H>#7K9>I z`q;m^ZpMz8HukTVy-0d3w11leea1ZPzk5QC;eP}mIrVb#wIKI-vBt-Xl5J1Bl}@z_ zHj~A^`))~{p|Ep?)XsJ`pQlcALNH9-GL=0urkx+$H_7RyIpVCPc% zU1T|IdGActHZ}A*i(||EX7Uot8{c66OI>t><&;W&QH#GUlsY7eU$lrih?%ugoMVrl zDw(=%9Cz-Qy5AxaEz4J2;N?^MmlPpv`Oj-SeEGssqVe)o7kJs_IB8p6t2CB|=av-Z zQcsr_hs&nUXd*80)EUk3Oi^m<7UH;ldCFN?I<;qr=qZ*L?=FU?Htr!tc%>?_!opIU qE)^fErLs)%yKd@fgRC!?2U=xt>SwEb=aag$qrBuu71!mS=&^W2Z(IgP^xYt;*QwyNRSU-BdAo(2Qx{2`x0D8EO(NiQfoK3 zlceUjSvvzf1$pvLL8W{$h~KvUsWN$-pu~;~%CYv}-zRC*3bGOZh!YLN4lp2EkSE^} zRLZXh3rTjy4JyTOT$aj!g@WA11(oub!REyJ?G;oi)&;u|b-OL7RMdhv$5EUQWDE~# zXXE-dY#bvV(Ns{e#)0pM<-HYD+;FE_Msg!3Fo@*FwZLs81tt=??8G%4!H-~TBG+QX zpUQ$t^B`~{_D>|LZy`20Ugg7nf_ykWyVoOXVY6WBFx-Eq3Cd@?sl0?6!hZRNNst+a z3UYs30Q>o7JYD;1B(=hm+ZnwJv4`aiERve-|6_dHa0TC&dMK)-8{uc9n^`uO~iS z4`I$F*$Wr8vkOK9WM=|Yo`taCv(gmO-FGUW^DK{lYA$_b+c`Rq5u*CmpCxdHL@`6RzDNqoavk{g^;*}1&RKnFqQ!c;ySPkgI_ zsro^Dk2gsz?t^zB>_t_6T!!gB$cY(4h}-GfT99wW4dJs=^*ix%yNC_^O#BijKIjAS z%dW&@B|)WVH4r0~dXf0`8ANV)B0F237nJL|sBDI(#eTVkRb}UuDuXVO&He?O+(ztR zOJ1p5I#=acJQ2RF$gLqn1}%~v@(Oyz{mDl@(d%5E_#69%Zfv{8_CzNzwR2|@mQ zFe$!;#LjLarMEZH#vg)`?^l%*V8pPW7sQbgn2yo>%1K?M#?iG*D!zJiq4bo@R`kUy9ysL&8nMrILBEfAFElp|$2C;9$V zL7s~nn+|)gRO~~_{6dntP9bFhJe$WILHW;nK_0uFlqFu!@!~2+nFXb)8w6$Nrz)>Z z7i4q<>`8L?JV7SSRq0-rl;uN7e)yS`6>H%VU=nOA6_SR-T7t5BS(Po|dhwabkt$0t zK^}Wo`%7{RAt^GLH@)bsMO4c&kH3`K zkRYE0*}Hp$s7f0_mcEdbr|?f@581>9f6_uwscIt))KO`+fi$0kiATRwxyFyQc439~g^3yfRw6_L=l|^Ja3xk(ll`LDv z65F(%ipPKBOP9P61SYA$&pcGAhg5Ratu|ITnS(TKAMHW>h8C zd=)vlClXEHN-p^bbPkUo7yAwCy{XDZMpDlQRLvbWA*?G1n-MmFsx>SI?xbqHg5hNY zsfOJG+a5on8nBE~&=x`YNqMS~(~x**lFAJ`sRk^h{A9l%D{+--)`ZD^R)=a%!<0Oq zMK$eGeSMwE=e-44Nl&T?VV0l&pqe>2?nQm7c?r($MJ&}qTtUqo1a17TmTGxDA-VY_ zl^u@@^0XT&kGfFpS~Ua^KL8)~k^33#xx7_7R?Kb3)JZ3z#pO-^Kbp_=k zn^j)FEyy<25#*;rs6+L`M3rk$hXa2}icA*dp&fAP9)a;KS4gB6lj}Be9;@~*k~?MY&k(WWw^?B5rS-`A9alENz@geN3|t> zZy$Bch3=Q~q>i@&@%agLnv8(OC?piO_Am2wB;4Jc!Pm=7pUS%gqkRM=zO3~ir$Kiz1=8<3cVUk>? zsvN#oQ10K4{35+b@;*j>^9*oS8wFX>P1Jen3u5EGQs;TcNE(?&w$4{PNUr^rx;DN> zY-I{{ZRbt$y-L*8CyZFtpVY1K0OI!_Qnw3Gt4kxO`_vP}AFrn#1OE^|zKwdOOodj2 z3Q7&)1zEp=DpQ`SyyGCq=Qg08=V8LTaO&kBLh_?`HtH2|lGw4X)N2Cf?EDPswK5jW zqu$fuvLAO;`FAh%K9q^%B1}*|-9Y7;LhAhmVfU0E>Jy$seB}%3lL6B^?vx;Nn544I zT9vhHtGsxb`pkp=cd-?vz9$e;MNXi;r`ICZ%b~uxO-UYFPUW9OK~~ORW!+oUHxEMU zQC5(zi&lAX74_k!ed8>!!yO)%+h9We=ix6vi5kHzw{>g~>SSyt!!pVO_7EHA>xRxYa`Ak2vqpjdN z^*6dAa$BOZ#bK4cr&SK~6=WwSQ-A+-V!d&kofou%N;6ODKjafa)~3{d$^zssZ)t!A zGun5VpnQ6_%Df9S;Kxy91!DyHtSJ=YyavJc>x~pzE0mPluPAH^e3?&GiZGmnR_ZCj zu2j+u8s>yhw2KD~TaSpo-%pC%vIe`S>)&(g%-#YsY* zn--KpQmrtWH4xxN|IvT!*{!4*@Jn^0G-C6`CnoAE;-AU>mOOMK~A^FvM zdeq_+vHex(QG3X&<^nx#G=cbgg`O>cf$P>G+p{gsBy|g+ck%m)ZMsgMY9y01$A`YO zLmK+AI(@s`nOOBy`s?Qa?OiL#*Evek-ZjK08zr6NAd;ifq#{0g$ofdB_}4Z>57GrC zpQTcX>w1#UewRuwb0N9xFsb}d{BHOasiI#9(ZX*w$!QRxGFCyV)CNMfaJy8g(<8X` z!IE?OTO?D?Qr#whNGk6yC{J*a>StjD+~!FQe3IZo)<|v_5w|3FlHBtgND7UY8ec~I z96ecTn&?MTRCTGDS2jr%G*a`@xPfayQuE8O+_jrYE$$+T_p${_o>vj!4>>1!wecWU zbBEOK$0?FaE|S`RPk?Y5qz;Qdlcd=!b$S~?Qo{(zcQds5`54Lfxg(tERmm^%4N0z@ zr7ofS;Y3eJ-RmPVYaAkV?^~Ya_6bstDv0Vgf0ugyz>vrK2})_(r9M|W!wSq@E&1Q8 zOsvf^sek+plJ8_m{TCL(A}^8#&PIV{oWB(CbpXl?3#5>qxS^O+QfMKh`O+*Y{KY1s zj;p1}RftnIPLM|I*o}m`jFivnXq%=)IWf{% zXFPfR#?sk;!byJmR=VJ4+eA`>71)4jzcWX=5V4)4_;%6-goX0In;6QltS#3gY>grKEeaD^fMD$^2aFso(RhrGfhw_)=nlTINRm_f!Qd$)D+~yPRr77 zsCAN6mhJn;-I8s5UsI9-a%A1sE+pSPAzLcKqAgn^7yXW@c-c`dxx$N>^_^VGeGt*g zNV)9ij-)vMk*gJRAo))fK~_9OuHGF^ck)WPW<+t~ue!*!kF6m}KPWfyfJOZ1DmPwn zn|MNBxrs*zDnqB_W|dDtNaJjBv#Yy^0(;9X8!jPM?~&YcXEl-&Tga_vyAicakUghi zs4BOXy^`FCtd|6pO1)(tH=Ll)2)WB4PV&XFa#sa0Y)rJERHnR2=TJfU_1ur!AKgT-T6P=07>%K^iRLFnQ$K1tf*{l}F}X0+-37 z>?a6+E{}SvkQ7lv9&HYVH=88e5@cevYRk6y(2g(d<*928DC9WEGy2^nsozU^=Gp2* zrIyMW*+)>kX(rEYTg2%*u^pqF&gm8TGmKR4x6Z7$rmwbhHe0f4%-n%%l z@9*SQ{2H7~DS7qN+a%St$ZL`@q{W*HDlY5gwQZ45%{VD? zq9%4h-c<|N`PNU~Gj%QUpR4kom6<3XygDK8eOr!LvvTsj--uD4pOE+K-H8nfl#dvq zp@zc*c}#JYBgU$na8~8}Z}QRJg*dT;e5?c9@YGI%Qs?>du>-xJHQDm9>(H8pE94U> zjY^5#<($q_F?D_A+}gG>M2Ttg*=9{)yTQG2FeIJi^FbAf|I<>w$ZHV0W|1#d=?9^y zEML`S6Cc@8zIFg^dxg7vBdR*_poJ=zZ#&H z`52+r2By25O7gitR&;0_(ctyW0hyl^b(592Q3|1DKUV%kDdL41R6P&uH7%7Kqn2Ir`Z`KWTN zt);qQD^NLpi6A@uT;-WMf=YR3)~B#BDc0qzzs?(#o2hKT^S#8s>R3SShC~r7SxBw@ zMD0$q(32}sEgZ?hEeRw=Ze$~hI1=0UFN+`bmS{>lK{h6ojU576vJET8#+RN<(y&T` z3Ln5y&*qU*cP5+C3w6uN{n)fC2sTIOv5f9ZNcOGDGHlMMZ+Bo>xd@{}DzHVdpNPhL zuw{eNh?Nk0uoY3*kJ^cG*HKKn_VHP zjW5eRw~=U63wCyX8c7vT3Cf)k1)0fTrR9#D@c)B5vkPBQAS)5UF7-#t;ZSpSrJFa& z?;P3n>xD$u7`xdN>eS7d-P~1{Sl9x zM~hHedU26GMiHLtN3kbYDv%uAfIaOT0O!S2x_4sFb+%i?wwGovWLUIvAK44-S7Q3n z>}6ZKl(t~6w?fDoy0SNw-Em?Qd(#l=7uHdbHQ2%4&#pjJ^q?SH+JSu-9*Q#aC-zB; zcEx~1_US|kQY1(AB@{wj{VDtE{gG%yDM8k+H2Z494*s7f``UjaY;-O5?JYi44|J&SRz4=Q=h^SG`= zJi_Y{T<83j1O>!+bMwT=6ZMo>ERz94_+ z!Mn71Lagiym30U6t`fYSHj)p18IORbI1euRkYx9w2|QGS(@8_Y&M$_f%6&6uly|gc z=y-&T5iinSP^py9W2gu5WDk{R>hqWdn7NG?RPL$3W7aN1H}M{i9iLD9!wx>GfrWTr z9#5=`c399Gp0xcGx|N4{(*AlRxfJ2!`t&1dc7Hzc@+V?TPw|-o^}#BSqzfvJP5Gkfka6$Fe6cs| z*0{}l@yZ;CRxDo;XG30bRL57o8HCjBxS%{CN09&Xov*HgY`tIsU(@ac$@vCBp8i1P z9}QpE94*a|SiZhaPom73e8WD(8!gwW^bZtdIam2c<4Ka6R^gjxenH2oDfkT>#<$q2 zhoUUt$hXwO4=;xcGQ$Ivr5mYqapzk$qw{oXn#wa%1(n9__&>vE61^M1x25zUHl`Ne zK5Y$2UN`v8MaXT(Oy@g~FC(6$@a$+WlE=Q~d!x|OaEs#m#$}`BCUM*0>}n`6f8}=a z({uTW;U9?|xXVwL${~LDFF$F6H(sLWCuikDYq#+nS18dhE6+)ECAK+=pOK*?-ctm5 zVLm_88u3lBE`oBErhPT`Js@hepnVx_;R ztXd4j2vk|guR1~9hR)^J#ug)Xur|M515Y~XpUiPFkOMZPkhTORizrF;PIXYF4 z4XVShLmlPlef;{(RFqGr@teO8&&23dj_fVSCQcPpil*~hvAu|PNATOn*Ag4%$p4$@ zLej(pLHR~&LFVl)$WJZd|Lv?}BdN5)@0lE67v}JXi>|=-eCJQQ<`MUAp>ok8{&WgL z(RSYiSzaQ4-nAvk5w-Y>5-9vGSj}HFIY~;jIs8Rr916jE1^Mwco41F5{0MKJo+!vyg!9i+9El!D{KuB9L?_Skzo>aB zV6QJ4icGP;Pu{N^K{nW!izInl3%inhfr)Pv_J`kgLB`EiP2 z;wPf`k%IE~ri#fn4X&opPq8e9m!95FamZ3oY+J1q|1ccg&EHCi9)~cLtCUh5LP-vN zqH=tJQhKk2*yCqP*~_rRGxjRwcjcpDR9dOjU_UC`*Of{iky?Ifp;RvJLF{k1;=Iy> zq|9fE3(A$$xt5?(;jUtLJUEq=~v`~CU;Lcn1 z6jYqJ;+ushK9j5Xe(^vVB3tR!0l$BktaR^(Qqq)FO81p+$O?KXJtp)g)@Y#8d)qDa z0)hltfUDBiumPocTSuj@1@(PM&;(i%*+~hl=Z%K*XJyFL zQ$)@4l%cl@NvW5k41J3!`S4U3`WJIv?Vu8tw~ORv&jk73*Ghy79O*-&67f0{)xrkK zu%d9Hme0zt(}gIh-%^IARiAtx)T zf5s!`eR5NoQWd`8MsH+cz0bbel5m9C`!nwlcjPMzWcpjpQqx z#16K)iy#kes&eWrm8+hp+&)E_zQvu`@8uwpX#PQ&em;wo23BQebuXgJ#gvR+P`fJ@ zWlsKG;+4(H+#kD%FNjy>Ih26qZlf$Xf_}|mXJx_DRaoZ{s4SjhTYzd`Fg8$D(8+@G zlus)2!Ug%Xm4b>Aqq4?PWod&laE2e0rO7zq!2`f2(Y8TG@001(-J1l})*iNlr*tHfM2S$A1Yb4Sp+I zSUM>!QOA0r`qr`YTpeBw=It7bLaa)7e+L3iRCyp?Ua`0QI-*}e(g$%tq{*3ezq z**=HZz)gbu;S-0IJu#5-z7fiv^*>Mv-YdwX zdnx;-BjPHPWfL1pm9NT?*05Ophbc#!IijUqSII559E(dDDQAp`4SN+)&a8$rO7m0l zPUmCIPDSNx!5WhLr6}j3{t#_zrkwYmh-FzjlneDrzz!S}lsdZ#vNqv@{K8SNA*u(> zl&fuC5VeQ?-!2^w%T`4BZ#sH!NB&U?E_tFbvR1i!26I?8S!IOY$^-jkb9( zNfUl)^pARwQs%6t+~6Z5z5k)9P_K|E;kuwSrJSb12MC#Vh{mzyS*TwzO{K1XP=tS~ zsm$SX<~`9=4)j8F{o;c=C4^K;fT z=#4<<`BP29Kn(e)KbpqRVADJG)HJ2ykcl#yW{nVCe=nwKJ--LB20b;NkshR&muoza zJ0O7@Bq%k1Cn&caW+(K2#6q!y<-XB)-iHCnUZiPXO+nrer}5#Nuu_d{eEvO5a(|}r zxr0z|P_CwRnCm9f-0k6=-^2NyE~ceVRTqY&ukI-f8-rE(2##T#yaO)b!itigg$1f_!f!m8V{5 z{F5Mr?mIR9$xzdG`5J#bnVj-h(_cbv>$p-gum>*GSEm`645xI?Su>d3Lcb$TGq`I$ zu}gWH!3CdCYKqYee)1MV`&AQQo0&=S;3=8_J9FbS0cVg3HjdFmRQyZq<91DCF~kAm zHfkarj-X69Llb!_7=C|+CaRSS$>aNKq6^~?3VZ7hPc!!IW(2R3Rkq!wGGLL) zF{cFiM6JrZvs8X~uNfD=27Qz1nq+sF;A=^mltYk}`30KPdLvM*+onkk$5f47rI|cu z5%GaPZJH^ID-lWaH0jgONPV(KV^8(i&jXs-I}vI%Owi0}RYFa&ED))2%R!C`v=b= z`A195A+J<4|CeYEwS&{yoUS=>K9b09gdp>e7v$4QYEBMqOiXH|IkPApjn{ITGyB{S zJGRy2WmO?&>$6dlx2y_DJ?;rA&4y{tAKpQ1nWyGr$N9u~QO!lHP++d(H1@EcJ*=X+ zlITc^wzDSx@HJwEHqEu`2vWU{Y3|NK+v5FJ&Hb}ja^=uX^C$$eG3l7*(e=;h-8a!Z zsh@)Y#YLrOO+gzg5-2u!%m9@sB~XItG7Cw$PnXn+yx-&6DM z58UqL)|&SlFvMk+X$rlOmxOiFd|8MdTBjMeFT5Vl7RPp9&wcWQ8S8i){Iq=WhPic(}J7V#nyVlrjJ1k+E)>JbMrni*V z8fPVG;0`+Qg(3XsyNm6i>w&W$4*qCdAd}A#^rPx_*={Hc%nM~{CwwCz# z+uBOw-V%%HudQl7KGa=XJsMM1D@|MD>vH&xa@v|xu$I?ttF{(LBy|6%wh@lwJCe1{ zTfZh&ZicqG&Aw63tZjZDYPfH)wx!e@CFk?nR-020C~VMnC<48&n56Z)brB|2(RTS( zljLIuwcT9&5rj_AcH3el=3HOfb89m3`^B|=-nbC|G+R61DunLr6YZe(3Q41SX@h<& zLTp%58=RDd@IG7{)*8b5d9&6Q{;fFi$0M~7{T5+}J7}YDAsTr?^AjOfwl*;wQ(O9qHu20|qE&aaiC1x> z`kh)4gxXwe>c*M!+O%=YV7au~w0CF?z1*x#&uIo{Gh93U(tJGWZ*9hz&ybO#+By5M zu6McMJ}PuazZqlxLBJNGaKE%quRO8YeVRk3-YN;wF~r{2^Dzl(y%oo@lRTN zh$csM)NcB*m6*vkL%SJ^e`wiG?dDNEiFGKU-J1IdmE8jEcI^a`KRpBySQJ(SAvA>p zKs;&TLJ&@-@H#jNWkm<=&Pa56hW*g)pMsT)HBwa8zob1;2{B)fMS}cdp*E*q60xTx zw5Ro%i2wbZ)r~HT1=)bkU^Y>gCxUE1zBX6igJiFg+PoFHMAs*1&(DOVYjaL};n!I# zpxC3m_z?yu;DGkh_s^)E57p*B$tUJfPJ6v#DRh#~X|G?$`I>yw-XDnNwi~qC`+50j z%=FPdxl{uFKm48c`Hog3CDawl=*@BM z*QVF7+PRJP*J%X-iCO#WPd?GG`Px52UXav?bX24>-1T`Koy20HDGhXT{U@l>Z4=~q zn|1OWw77jw>NHErqUWWVpwpS5_aFP}tgqaNown*6jx-|#gSz4^JxKm_O;=_do-9zS zt2`N@m-|9p)uG6WTh-N7{e6}ww70HSC5*tezq$rpPoeofUe{p4RN~LVb?zl`L$wF# z8va1`>$p=;o>)ZJB4Z=T4eIFHZuIs=!N80SUy_6DJA8>3PSSaq*C2iVrt^Lb{qB*X z>kz$<O0zw4%YR`aVB}Rhpso@MfCT#Zg7>W zXoJLppRj7Gr!K_X2MgWX2udltbRkP|+@LYKkPo2k!BCqBb%Owfg%a>eJ*x}o^Y z4>Z$7|AyB7_Rx*2hLw8Ff9R5`{evcAHQg9O=2y^CH%6X{Os>c)-I#F@>PN?P$(bk7 z_B^0VzWW>lSXGyjaTiL^TsNsQWVgmP-K3Kq5Ru!ubn8|`Y-e=od%t34#|uhb|LW4; zry)J?7Ubj0>(YOF5ubKlH?_=klJFqYs=>>*=&hUf0%m2_ecg=U^04HWSLkL+zC>%s z3bL`|b#tXQ#KVfJ+!LXjJHriaQ8(QJOAb=RTDnDz-HD}`bc@T^AnI0Hx3q*SX6}uk z!shChZXHDQ^^9&!CgPW!Hr=|8k4W~&)@{td65;*@x=s6^5I-NT+jPbTCwRhLx9O4( zBCm70O?SibMOodZM@V#LyXto4;fcEJ)9sp#jBoZm-L8cQF(2gU_M&CROmB4ihI}Rd zB12HIG}ImVy$}n;t_t#jCsj_2RJo;x?(p<8aH``4l^UINr)*szyLFlF)X>FnhHZ4G zhD}0QGDmmz_>s55udriVxpz^xw`#PW_K2~@A9s0rb@^l3O-65itb$uSW z!+w2Vp?lQM4c_&u?sze0Q1dgAGF1;5<;V-?jXy)qyf{pk{d ztRz=?v4dV2iSO%F(Q6RDNh9Ct^-VajiF@@%M<MQo_ zfZk!4zLJ+SNnKm(E5BHVKGrL}%f%B&tyk$?2chsYeYxKC@e-odYxK3dp``B_sPf@$ zeS=Ww!uWFf2Io)^>b6Jkwl<0A{9k?JmGQ(=*6ACsj)#>>9cSMlzJGP1HA^KZtmogTAGgJ4vZi^eqP$66;=E-|`|(*!{G=RSlTK?v?ee@I8$P(6?Us zo#Z;J^=#d9ga;S$tg@w{uKh6rx9zqQtaS=Hf3ID zh*ur7hxNW84N0nWO=Z;(m2S5M<)PbD-an}F&sIS;uAIu_gH@i_sw}Xo{C!1`=e!eC zl-hc~mg7hsFkSCA^bbVN%}!{0U`KUFY-N4thp6dQyR7eSQ;1cv>3cMd!IQ-3d*EFf zrSv0xk5lMr)>)+QKLnBJ`_B4-3S>RfLq8}TF}|FnA6zX2Q)JZ#x^trblLcAoZ$Un< zo<4ZUT9O9;)QA08NN9@cM;L84NU^-t$F@hMIdHN*{wlP4D$|dxdld_Rcj%L=W|7qH zmfp5~4aq|;=u@mG5ir{Hsf$-&0ZpcU@&G8S`HFt>cF0uar-E$qOZ}7~#fg4&*H7Ks z5&foEL8(DoL6)*d(}G8s;g}T`TE6rn|%l0nxY* z_R7>}Z^qEJ&(~*vMf7o}t$x?iUnIBQuHVg&+t)7C@3|a{L{qQd*BCCVM5O+}5Lg8- zji59)RDZA{MzEYwkX681t%EOjlI+()f2hd|IP<3ZqrWba{A8g1Sm#wFI~xR9+5tg6 zyPnDg&Vov*SNdZkKao`V%vDlT@*v{^Tb-(1kdCPU)dYopt)t zV&v`!^2atwpZguzMyr|nGqv4G9=TVa7qScM;XU+uvu+{jAF03Wg%G$-xc=%-IR7zq z_19*eLJ@%UciiD4|4GvqEJpA!q@(_UFGl9lI{kybg;?L}sDIuQBhxZO|Eg~`(T>&n z*I4PJNO}6#BYTnLd{R)hy?LR3qsNK%T+x5BSEz=R)_;n?1$wyaKi`5^o}HrqR`m!e zrd0j+1&)yJ&-$NHFj&d!^}i|xW7Xy({qG_uGK8%bWNuvlJFo!zJL~@xUrW^TlKzh` zreN;_{a-@V)BB_T?+Hw0zR5s!E+TH5+Rq^6ZY61vvw=na!DaXTrhGGMrpfA+PP`srBNsCt+%6nr`Wy=?a3a8+N|E+Iu z{0Skvx82|zga_Px)ZjYQ1xt$78(dQ{lE0D+uFHzsh-8g@18=7-HPop4gye~L47GnC zxPLOlP-i2i;_H4x-Szo!Jw)kUbkoqL zm=4Z5+u$`M6WLHpgZHXXG&Ro{ybmDLJ#^a8=f5M+l5|7=+qP>Yr8pV}+`dZu&^*K7 z$Q&Z>VF(TxLHxfNU@Umd5S-&c)U~dl6gN*$&V4S(KQu9fz&W8YYzS$A2)Aujm43Gc z*%VimxjO{;VrN6h$ZM$ktTcq!u)#_zVh3}cZwUEQ2i|d)A=Jx-CH)L zQqK^&1s4eL7i7+PhS05OVpdpY2t5m#XqROOy@eV;J3qsaoVLXLZWxA~?}a+gAj8nb z?!-EmG=z6>AjRpgA$$nbbzGdm7Fl#9v3oNNb}EhPf~)X3Pf%$z6kLsrQxQ}eEjL7_ zXJUnJXFWU80AHBlTejD-wbipEF>SDZ-~Ew z2k5lNkYL0VbQ^CojB2Y#5r3s&^mdfEo6atZiZ$xiK62d!^x)b?>E~TPL6;f`O@EzQ=}}(U6Tws zP4b9bX9==&SHr2%tI>&CXgHO>6aLD~HH%-!B98oHd4Lx@ZVv36<_c4A181@Vh65=XK&?8Cx1& zzYZl9k!yHAwgkzg^@dN?9;0vD{ea<<2MmY%JHwaFm=me0;mg~yh~~!&@~j-g59gm~ zi_SLuo(yNy=Yo*};Y5P38Cm{*gqDd$Wyvlqirit;49X>DTxQfK;zFBN7!9$I^7vbV za=mClRysnZOSsXn!B(93#1%&K76cSSdkL}@VMfd5L?l>C1f^7q(fU({lR0j57yh^Ol}4#n%M+5;C?58jt?V24kCz??{f{ zXl#!YOSO&~JM=^IVB2bAr;(RY<$PiEoeYya<&MgwKa5@WuSUh{u^=aY5Ljia*K6F>aUnAB$zQFtR`asbpd zXOS_*0<9>y-eycG0_Tu1-k3Tav7M=o4Q< zc26+(uErS*7jla-&gj|&?%QC@PVW?X7~i&!wgxO_u6g3CR|lV(71j4T4Lqa?97$he70b+y4tT669geqf07vmu}_6UQ-U9~5Iw z2WUlVE0zDb3-Szqm2(4(rw%%zkbKK{#xDnnOl@Oc?^KjadK%A_gcDosWV~=_BT91q zf>Qbd<3$vlZLI%VKMkfXWVo^5K9cE?m5uieSRHjc*!W;dGSTlaEV3LeI1lf$9^{W6Tt-k|kWuaxn5rZcf3?~HGU_@E!#-T2{{J4r4_1?8xF z#t)}4#4An4kJ=De#3M$$(v8&Zr}0}MLag+%DpwW?O7+(Wva!y_pG8I?q)RdWyzWP| zYqRn9+saVKDaOAMHe9%FX%j^kl3Z(zNv@ti6u8I45~7JG>rH%-H?*Oh%B%YX`O#S_ zAGBBb`=Ci_i10c~HYxFtnd;#tO^-h$m)&d9{lOi6jWX$fyP}-h&SY5HkodhAlevEc z8qMQPX4{CF2r6%zERSG_CRt3yzAwW2Csj-i9CJQ*waMXM1dHRo3Ci`an@XJe2X1zR zscaHryWNjXDksQV)Kr<8WK%bC zE2=y*Nswo}Ryp^rsg5R(WVahCN1YI42P&BA-d{s>f1;^TjWlA)Fq6k6L_&SIsckmY zvs19ib7x(WT#K681sotoA5HCxrJ=oY-sIN|ov@)kCckOb5%k)Qn7X#Fie=s(Ox;Fd z=-gMDy7$JEbpI*H_yLu@b5+`Us+`bDkPmMxs94=qw(J6KMPoR|)ctoCVxNAQdW>|# zyH2f4y}N0NwRmId?}fQ{Xl5E1kqQ0pTEi4j6T)(PjVZ4G#@WjMVUtSL#(%?m1*ROi|9&hG$pRX6m)oCO6urAw5PKv`Ah?( zTpdgk>#iVaS$ETvU8zI?PNpf}5Tp(ZHci)L!Tt6&O*gxfO&-0}Gy@lwYH3XwJ&Tjn z!p)Rf?kyG#Y&K=?NI|tSLy)iAr!ud#X>QP5^yW;a1^Z#3Jo}m!Nwn-n2O@mH4JIrp<5Oko;w-Y0DRep8hY> zKQ4%#PmfTUSIe}uKVrV2-Avp1BR=>YCdeF)ns#r1jKuB*ZMefp6-;}=qDijs$+Xwm zooL_{)839SmFH#)vb(OP{pGxfmD-@PV!Y{KF{smpb*3XxhF&$ND4aGi-D|#< zl=>4*PaebeA2ym^w%A4drK{=XJ;;Re$@HpeEV`c`O>cb=Vd+vDmzYP?Hy*;*_+6FikU51j|FG1%xnvs zlJ87GJ}J@6d)$Rr>|j=OPq4(;Y*wmcVcC&7X7d6Bt2e8fOKyR%c5yS8x`9~ny1&g_ z>dj{idAy*UQp8+(T^8}Z^Uan0{@^vTLP2)th1q#?7X0^6vnx(0Upa1e4agx{D4VM~ zhF~%DX>+xwv_MsItX>s8VdyUfk?HeiHp6U^?_<{;GjVs7*w zrmC22vbo8|#;9}lG&k8~AihE|dxRhq+cMYOrpzvMAs3iCxWjP7uQqp2gSX30HTTdU z=&YM+?mNMP1R}uP_dW82s6cZ+0}_&?EVF+-JW&59f^3pjkS};<_8(k=Sl0&Tf!$FT z@aSO<+JYLBtx5@V2(nkH$xCx+s2*Xo#XQs(Eiqj!b9g&XlB8M~%_pfG9w(?22{xy9#S1W}YMaxsQbqnx zYo5LVH}u!VJVSyWk2+Sh<#XYUhm|J zmUy0dQ_(nL%O0DzG{T~zC2h=GQV?)lonzj*3=z@lY35yP!LCZsE%h_zTXX9mgsWjL*n1RS^s)I#D%5qy8T0D}cq91oYV+$g5Xyfyo8QcdnAHsU#4mSw$Ih8>qkpsJ%KUec0R`Qlg$Jyp@Kj7CrW}3g-y9DJg znt!hHM13IA{I|?Fl--_KSXBpD(9#wja)g-oc#Gx$e9Nx_ibso17(DS=>^}41Hbm%2NK51=5*eao&_oa?Dao75srGHvW*Mdcb$Aa(HT~ zz7QeQpI(-Fi;_ud_T18dpx;d%THHRO%r^F*#od;TR|Cpf8tOes@@#5pEY3UH(l~4l zs_VNfEi2*p&RuL4k3lJjSbAAJej{0IvD?yWB(%Z%ou&PIB$p2!S~|4~$NDTcOD8W_ zveMlxoer-?aq1sS=K^$uehsvA?*u*f%M(;8q*}VK@gVtRb4!o%67dm7!K-M+d0TpF zA0YW0Z|S)lBiiq_%E7izmYzqEc84ZedfUJ7H&}Xq#|3U~xAb)lz?z)ZmcDJDpp;VE zGT4%dr7*FU!ILhMe7uGwa2|&CnXhF?QD>4{e6$R^0pHO&))M*H4OMn$OVkmJoa;}^ z@TM?a9m-mU_j`#q`|ev3p12Y{ zha5W-YxC7|c*I+z-CryxN1!Cr*2{A8`4qecE?aW7--$+tT5=5#s?nbt7+E!Fa(ia)XU{+9Pwc0qV@EFY?*A-}I~`P94voJfS_>%N{OS9P}h z8473Ra@X>=B4nt_e9Pa*a7H)pWWMpMU}FKNt=2gl8Pq##@wn<}!50x^MekWlmb!-3 zkprydBamZS{j82rHL%v_lGV|Ma6SHw)!FR_T07gV&cpf~D0Iw(O% zp|$oYL{<}zTkF=utBkiptaTINGXA`?)?-%?d*)i}9mzvtGi1B9zJx`FX1&#|SWg6_ zbF6Ncp_aixR`;=YiB|QsHrjv@9I;bSN-eN9i8w<1{sgOMzhUShX|0}#7I<41Ylo*W z-66q(tlBzjN36)_0|Qhp9&GJ+z=Qb88P@JEUJxzaY90K@wv$-vzt*6$$4DB$tU*8W zV4{BuDlXpE@V>dERNP|?A6XVLW=(6fgg<}OG~YTZ7VAKEx3VU6hD^4(Z5{IoCcfNG zLD~1Gb?o=fBtM#K9d~Xxw6&Qvxm7$#PGp_%rv%ZX*VdGQJ&5I$vQFw<5o$YGXPwkd zK^>rpb#f#+!;A8)Q+{nB)^d(@I#ox_iCL#hW|AWpTc`I@P-Wj@oiX2$DC3iLrUSGm zytQ@a24qYlms)3j_98mnJ@Z*}t#c}mC8^;FLAiNjl^1Rcvh*P;mzGkwwTX33 zN*oF^4OO}}5>%>qSTpyh<3;3$*2QH5usYP&x_A;qe%^fRQk1NDc$jthEqq_HnRUfJ zdoUkvU3sVnI^>((#0LAdK#*rFRylXMbrtd=iSH4V&!4xhjk*QbmSz@5v5i?g>Yu&5BbLih$_x38pn*;By$9MH1+J4M>B4syX>Iy1-N2?6`WIg$e z5yg$MUh0^F4$=VYRa+h6pM9NgbM5 zpTx(L{HB%lse4;E-DYXlm*rj%Wj38{%@JCKIBDC6hxu)hGOXf#Ze$WN8!KG zlz`8X6fX8f!#|*$h<__o@s5rUjdkiC8Xp_eBP=jB)XB%oDJn2JAuuvBF?06)3e1D5 z%y&8_Rp{{l_nZ~~&pG46LY;y`W8=ezga-%4hyJg#W?n1EDD#-AkT(sbL~)a$*b2jq zkEBnTBMv%r3KcgVj+?eWP&65+8nwZZ!8j%g(MKr7;~ytbJwqh6M&e&P?fZvN48C!q zVH7w&dXijeeuHwnnDzy(5lTt(+k9oE=GS$TO4{%}epCH_h9ta7kI?84r@&|@pXia{ z@qzK-G0{#ziB8^8f#H!(2B&I0!b0nI2z81L4Gs+-85(ClGE{swDm*^SDLgtZJ~koP z{;N2ru$WO!@iF%Qhs2DEj*JNm`M*ZGx)u}QkeU0Ybav?70Tt><>!=gGz{J^~U>NS) z{xl)@$Nntg;wjaqi?WZ%{Fggfb!!9;u^%2y@lrR6%dD7D&Sro7TKG{E_D9htoG=`7 zZy%Bun0+T2jy*9L#!!5U!$8L1vlG6zpUHl{I1F$+e)$4tO%%VgUtIlUKgK?Q>J`F- ze8tlb>~+HLV(hn_$$k~}vERD=-1g(`w{K@1Y`NpF>e-L9e`CKwB(4xGXupFmc(5S* z@pu;d{Xd}C`Qx|q67%29;yT;^IX`|Gi|_5z8;gJJQf_~?VfeNEs_Jt@W2?^pOzDlT zk)eTcp-#~;5X1Pe!1(`b7MwHmv(uv zOAa`{w}Vut_y63YUr(5o_|VbuPC=oOP_J+?lCl5a+f#=>ED$q^iNRQo3=awYe|ozX z;JB*uyyxDPjcsH}Uaua0UP;)piyjunp_YY=EI;FiWXrAtLu^*sD`~x}z3Y4LO2|X& zIHd`lCKJdOPH7-DAycMlLrfU5nUd6yq;1lK1eX?CLLQzlF~m*5aRME1L%;8wyARu< z!R<`Oqt))+d(ZjLfBy6R-~XLs+e-NSR2o*U<|j+?i)M(A8{&d|=ikj1`RMiG8M690 zb3vsJ+F%XJ>UOaxckFDWBF^E-#y8D{9c?f#4a2)JRyWiG^BItKFv?OuCUNbE*e&mQ z-mE*CPz!njt)%fMhPdr2j?LdYhT%*mj>O!!4uUZ|l~Iubvxl8@+8(}S1o0K#N{*=v zz|*!r>A1=E?jg4a&O+Qz#-;#M2(XM(gXkVgDW}8%Oz1Cn?EI4aUtJ~sA#JvXHppks z8qp5USq!6M%9v8`{W3GF2kqgkoA9U5UMev>)g}A0VqxBy6fe)3S&baDHMCcDHi*dV zSsSl z04XQr%bJs7@toOPIdy|TVq0dO67%K$lj585BLhZ*YAL_;DeW1TyWZ*8=P9T!i>)#I1lSsUe@F7Jf*FTT056*0}p^5F|tc0L$hiG~U5y%RA% z=30GDDm$Lmc3t%~v8&>m&^9bB-dHtP-MDR_{3dae{QZ-{Qa3czs~dJ;t>KomAH(F9 zwRi3HpUZO|t88n- zzlMmF_y)p_(U^V@t-&p9ZKFL+bC~5lY({l^)l7Bc(3I*)ESI9vh?w-ku}Y(1&g|e@ zYukXjVd)AC>s2_lkO!EbkiRY(O6Apsr*_50^|Xss^0C8aL*?Z+&#f%nTnZAgLHW7< zf9<78I}FJ^#W@(3pFb%UNc^q%`WY3arg)(_k0|}DknS_#C34d@fTp)R+@Rjb+wK*M z)w}$XZ-`eH8PV>1>^r731PDzGKGYr23)8{ITcE?LzgOKk-xXKG8tNl*FwG z+>pj&WE4z}NqNr)%t#|S0%4iYYsB@@1K~S`+Y+EoL^}DQga}vi+W7zsoZLGfTqp;g zHEZ+7&x(36lh6(1zc(f#``DDHB8+ntS9C&?(ZV3tgxW%@6&1*!V^@(81_0?PUkh|Y zM>yRzCQrR=F3zLJ>&wSi$?++`!SB=Z+51J^OmY}2v_k&Z+OV|&?^2Amz#JNoM!jUg z+&Az|JOJzoHR1wqO28kQ6_IFlt`U(6pb_wB{hLPA916v9;y}Y?wp=?vj6lB!md1hefWsW@BkLEdE z51l9ufLGo4TkyeobgM(96~D(|hW1N|KQhcmRoHnjV-%nGgkC#`g0|>yGEDZvA(gEx zdGZJ5%nD3%C=Ew;8?*h#*B|&c!tNJh_Lly1Dv<^~L>>ka@qkX2pBM*=BPA@$!irYL zvc5Bp3SyYmR55{re>CQweNAi;yKW}K8cu;R`c~Su;~sPQNCHi<^|I!6>7)+QGeV{a zB13999!sLe(!2l#hrH(%vtB-$H~&ahpA$2Y{gKdo+~Zkm+E%Z!#uMqRj}L5nB;f+` zXu9GT9+H`FWiw@cY7-UTVj720tm7QlT9HVrCJ2#P&)N`kK|!)E>YXjFZKtitF}%FH zg^$SW>*6y9dq-G!#$bLn1406x9hldu8sF7>QJ1ll=fH%^`t?wBff2)NH`^)lLD;9P zkcYpF3a{vkgWE=ElFLdBhVHTBs++VLyrPLQYZsEhl(iXkz$E62-(OrQu&^5)P0@j6 zY;4SRvZG_{?l0BAHtcYmWWm(USr^WBt*zv79@ra;Nz9<;`?2^$Vi>VBsm#vy!Cl=cE`mP-4Nnf$23FN!Xoz7A||J1rM3RD z>~OSGK@AJABWkIYujKt8GTZTEp;owAy(iaT33&vsevz<~&vOZ#2Ji$$8-5q6@+3fq z>56GeFXb4PTo(5OY^hen6i(^+-eAW15@dtLZwPHU?Cn?y%w@-IR-N^X-A|KzA!%r>958| zFLAg-Bl!7HYT9gJt`01$DOkuhRpOMVwweu*X$;OEJ`2$3n}zJDi=~oj^fBE;pe!d7 zZcwf>?`!`n(3Ca55)t{JVJxUnz?XMkFn5? ziDM19e1ormhFIuv)*Z#w-Fw|iYk15aPFh^E1kxZOY$EbH?Uvp5v5+6u3u>Z3=8+dQ0O0?pB+xN2O3wlc=N+G=|j$xw#kD! z2*;GLDL?bHcx9e3(=S7)g*&m*3*R67%KOCPZMcET7gr%ey8vC(5@NaI{~FD8{cKTP0U?7j9`~uT zUUnW8bvfg}I>S6u3beiZnYiGXlIY=43RJG*EG1mvdO;KPTCF}*ze)Po$>2dwV=uIx z%~}9LT&AJ=l|tvXK12)yVgPw25LfiQEuOXfaMtnHL3`~hDW;yjh(6H;Th}eBHk9Ht zW{*=zDkx5+sWEEC$|fc9ez(rtjho`ooK{xF+ zjD)vwX)q3%XU6fKrIF5O@J7DwXP{ZeG!7RYzR(+tQw6G(y8aW{Z#AH)(QRjIuh+adAA+752g znT%+oQyAKVA|3M*$R^bAR5sG09hEAWW~ZSL)3$vB=>eny4PN`fV8K$s%$?iGhxa)0 zwJ)KHFOuN{y&l@7kc=b-c8bR0iIEZ8MH$kn;EuJ3N**jlnCTQM?$NjJbmDeOjb@AE zfDbD|Tej~}Odp@wfkcybP%eSpQ)^TOiw7c{_E0g!opcKZ=C~Bp6$eJrEt>~bLh1ZO zL9>XYwX*t*dB3bZXGZehKQDfKwVd^Fu|h1m_qb6jzkeb;r#1|}y0Iv$8r$OBYAJo6 zd-9u0%WgmVOQ>0lIx?E_T%s2{$*qTY)XaxLU7}rNrK~|&s~$l-k_{2m^pjj>0 zdCbO)Bb0cl<=Pf?V@q3$m9(ck`gYD1H zTZl?TY3`QM@q|E%X@oFs43UV63@ZR?4Me0d_3e3FrxER;SrWS3(o6b{Zos$Pzhe2s zT>*uIrM~5XUyDUEHJzT;@aBGamu3y(&kl5}#XzzzopPB*&OKsAYZxMo+Cpgg64|=> z5_{n8dWarqP-fl{i*Xu(gCADG&7`A0UtE=Nc!dm3#>SLGNXK<~JR%m#4m~e~mPkiupz^5=^4z&w zBUM(YGqf($gk7C(Jf4uJzGrsI*S~`s5uhvN@Yl^1_q}9(TJG#Mt1HLQi;v0Z!v8JQ zAy0lpM3=UsYcc|@ZR$8A>uATA;LDuItf5RhTRzll-Xb4cBWkPmvjbxuJ0m*z;0KBp{l~i*()=3?;SlACHKML@Ke`~#>&75{JKa9^vZ!k= z1=Me^V~%%?-UcW0O{yp^Iv%6H5>s}`Kl!?O{Qu?ur&os;w`I6$5VD1JM8f=Awu2KQ zuY28?zt)0GJ&9n@e3KcB=)qjZgvHDp{4XXWZYuI%>uPu{``6OhmR(FS& ziKTnGJ2E}9yE7nD(>FRN<0h~@2W2fCmkU2(ELc6BO;fz2`c`PIeb#$yZOb;_O4&FH zKxU>HB9uH-@{n{DEeh(d_iWzLtf%-SWQU5 z;NTA4VW)@PsSL_Ua7>i{rD3)I2H&89d!OJWzG+_$Wcuu!03Wv zzZF_X43uyjY%(@Vq5yMn2^-NVZ+iD(?-7);DgV$b<{BaI{biUudrifnUkx-M!Gj|4`;=FvpD&37_gR_>mIkv?lx=Js_Q3NNSZ5x?uAD{f+R ztZ=FAu-}$Sczzq0EKKXNI@dMzbf*$B_8JthyT4^tR8JR2^W}g4lQ~~LdqDKBj9Fu@ zJ#u5ynD1x0IyzjQl~Qrgu8(2B{!zOf+wQs74=#|aRvR;|;FR#G^(;70d^3f-z<6hnQ(`E!Z)JWF`v7~ ztj(RyHqWTq6i0C-&-zAluJ+XL?rg^~y_y59M(Be4>+g!?NB5$vBPs`Hs+36KApdZjVPYiETr?*f`LWv(s za66B8sq!E7WT83OScY#@)gj(MI`F0-r;bC7>2$-j@>h?e-2LohhGWKY3hDKIW*urM zj@yyW9dq8Iiw8nny`nP;bm z(GT@)B9uP<&BH|$hq+;AE0kb0N-2Y{r1h4f_oVWSkamRz<_~l051f|^zh&0Q$pbi4 z`fkiUdvp-QTXR@VenA7Ud=-N)D3$i@8JtrMPG@S08*F5N=j*2c2f=Af2P?j~>(Xv* zusxjl!ww5}x3Iv`8DK^eVucDjg2UHX2SxH2NQjD&>*iFacrf7S?eA7LfU1710i^KV ztBUNZ(ttTmoV~zVVxXl3*$fN5)xzlnU>s8HWWqyX(5}JAZZPNN?~Iyn-%z<65>4@3 zey;Jw1&zf8UB@$aZX%<~lWaORfjkCX*Os>pn9*y$f`g4zJjO6*6PP=F6f73x5Uuo3 zOeCf^elogG3z&?Ei;n!`X_juBeMSa#LVdjEEvzT5H65+GDjro=xK*xIpO`$h8pp6V zzG=?uD;=v|w>9QLL$*oE>^OE0sYa`_DTTj4py~xg0S}k777j}TACK?GIhF4Xm@}|h z&SO}74OXgLwcD(#n!5vMNeB~bVKl{u>IQv?CClI&pKC@cZt{2ra z1Fy;-JtFGxpD9})F?~1^(Wac!4u_Xq(XNif!eE{BEDjl&%^Ra%_Qw)x!y2J#_4aL- zw>@ai&%b@I`OHyy{)^#=F}PWFJ|2$9&;OyAAAD#jUVH}^=MHY(frPUWs{SZS!~EBy J;V1s?e*k$oEffF% diff --git a/retroshare-gui/src/lang/retroshare_hu.ts b/retroshare-gui/src/lang/retroshare_hu.ts index 4fe43be74..2ea05f05b 100644 --- a/retroshare-gui/src/lang/retroshare_hu.ts +++ b/retroshare-gui/src/lang/retroshare_hu.ts @@ -1,8 +1,8 @@ - + AWidget - + version verzió @@ -21,12 +21,17 @@ A RetroShare névjegye - + About Névjegy - + + Copy Info + + + + close bezár @@ -494,7 +499,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Nyelv @@ -534,24 +539,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -587,24 +596,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -634,8 +655,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -740,7 +766,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar Kattints az avatár megváltoztatásához @@ -748,7 +774,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -756,7 +782,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A N/A @@ -764,13 +790,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage RetroShare sávszélesség használat - + Show Settings Beállítások megjelenítése @@ -825,7 +851,7 @@ p, li { white-space: pre-wrap; } Mégse - + Since: Óta: @@ -835,6 +861,31 @@ p, li { white-space: pre-wrap; } Beállítások elrejtése + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -898,7 +949,7 @@ p, li { white-space: pre-wrap; } Engedélyezett fogadott - + TOTALS @@ -913,6 +964,49 @@ p, li { white-space: pre-wrap; } Forma + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -941,14 +1035,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -962,17 +1048,32 @@ p, li { white-space: pre-wrap; } Becenév változtatása - + Mute participant Résztvevő némítása - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Barátok meghívása a csevegőszobába - + Leave this lobby (Unsubscribe) Csevegőszoba elhagyása (Leiratkozás) @@ -987,7 +1088,7 @@ p, li { white-space: pre-wrap; } Meghivandó barátok kiválasztása: - + Welcome to lobby %1 Üdvözöllek a %1 szobában @@ -997,13 +1098,13 @@ p, li { white-space: pre-wrap; } Téma: %1 - + Lobby chat Csevegőszoba - + Lobby management @@ -1035,7 +1136,7 @@ p, li { white-space: pre-wrap; } Ki szeretnél lépni a szobából? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Némításhoz kattints jobb gombbal<br/>A személy megszólításához kattints duplán<br/> @@ -1050,12 +1151,12 @@ p, li { white-space: pre-wrap; } másodpercek - + Start private chat - + Decryption failed. @@ -1101,7 +1202,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies Csevegőszobák @@ -1140,18 +1241,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies Csevegőszobák - - + + Name Név - + Count Résztvevők száma @@ -1172,23 +1273,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby Új chatszoba létrehozása - + [No topic provided] [Nincs téma beállítva] - + Selected lobby info Kiválasztott csevegőszoba adatai - + Private Privát @@ -1197,13 +1298,18 @@ p, li { white-space: pre-wrap; } Public Publikus + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. Nem iratkoztál fel erre a csevegőszobára. Kattints duplán a belépéshez. - + Remove Auto Subscribe Automatikus feliratkozás megszüntetése @@ -1213,27 +1319,37 @@ p, li { white-space: pre-wrap; } Automatikus feliratkozás engedélyezése - + %1 invites you to chat lobby named %2 %1 meghívott a %2 csevegőszobába - + Search Chat lobbies Csevegőszobák keresése - + Search Name Név keresése - + Subscribed Feliratkozva - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns Oszlopok @@ -1248,7 +1364,7 @@ p, li { white-space: pre-wrap; } Nem - + Lobby Name: Chatszoba neve: @@ -1267,6 +1383,11 @@ p, li { white-space: pre-wrap; } Type: Típus: + + + Security: + + Peers: @@ -1277,12 +1398,13 @@ p, li { white-space: pre-wrap; } + TextLabel Szövegcímke - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1293,7 +1415,7 @@ Válassz ki bal oldalt egy csevegőszobát a részletek mutatásához. Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + Private Subscribed Lobbies Privát szoba feliratkozások @@ -1302,23 +1424,18 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Public Subscribed Lobbies Publikus szoba feliratkozások - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies Csevegőszobák - + Leave this lobby - + Enter this lobby @@ -1328,22 +1445,42 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1396,7 +1533,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Mégse - + Quick Message Gyors üzenet @@ -1405,12 +1542,37 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.ChatPage - + General Általános - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Csevegés beállításai @@ -1435,7 +1597,12 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Egyéni betűméret engedélyezése - + + Minimum font size + + + + Enable bold Félkövér betűk engedélyezése @@ -1549,7 +1716,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Privát csevegés - + Incoming Bejövő @@ -1593,6 +1760,16 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.System message Rendszerüzenet + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1684,7 +1861,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + Private chat invite from @@ -1707,7 +1884,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. ChatStyle - + Standard style for group chat Hagyományos stílus a csoportos beszélgetéshez @@ -1756,17 +1933,17 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. ChatWidget - + Close Bezárás - + Send Küldés - + Bold Félkövér @@ -1781,12 +1958,12 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Dőlt - + Attach a Picture Kép csatolása - + Strike @@ -1837,12 +2014,37 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Alapértelmezett betűtípus visszaállítása - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... éppen ír... - + Do you really want to physically delete the history? Tényleg törölni akarod az előzményeket? @@ -1867,7 +2069,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Szövegfájl (*.txt );;Minden fájl (*) - + appears to be Offline. úgy tűnik kijelentkezett. @@ -1892,7 +2094,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.elfoglalt és valószínűleg nem fog válaszolni - + Find Case Sensitively @@ -1914,7 +2116,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1929,12 +2131,12 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + (Status) - + Set text font & color @@ -1944,7 +2146,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + WARNING: Could take a long time on big history. @@ -1955,7 +2157,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1990,12 +2192,12 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + Type a message here - + Don't stop to color after @@ -2005,7 +2207,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + Warning: @@ -2163,7 +2365,12 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Részletek - + + Node info + + + + Peer Address Partner címe @@ -2250,12 +2457,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - - Location info - - - - + Node name : @@ -2291,6 +2493,11 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2346,7 +2553,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2379,17 +2586,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Új barát hozzáadása - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Ez a varázsló segíthet abban, hogy felvedd a kapcsolatot barátaiddal a RetroShare-en.<br>Erre a következő lehetőségeid vannak: - - - - &Enter the certificate manually - &Tanúsítvány beírása manuálisan - - - + &You get a certificate file from your friend &Barátod tanúsítványának átvétele fájlként @@ -2399,19 +2596,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.&Barát barátjával barátkozás - - &Enter RetroShare ID manually - &RetroShare ID beírása manuálisan - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Egy meghívó küldése emailben -(A címzett egy levelet fog kapni a RetroShare letöltéséhez szükséges információkkal) - - - + Text certificate Szöveges tanúsítvány @@ -2421,13 +2606,8 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.PGP tanúsítványok szöveges ábrázolásának használata. - - The text below is your PGP certificate. You have to provide it to your friend - Az alábbi szöveg a te PGP tanúsítványod. Ezt kell eljuttatnod a barátodhoz. - - - - + + Include signatures Aláírásokat tartalmaz @@ -2448,11 +2628,16 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - Please, paste your friends PGP certificate into the box below - Kérlek, illeszd be a barátod PGP tanúsítványát az alábbi mezőbe + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files Tanúsítvány fájlok @@ -2533,6 +2718,46 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email Barátok meghívása emailben @@ -2558,7 +2783,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + Friend request Baráti felkérés @@ -2572,61 +2797,102 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + Peer details Partner részletei - - + + Name: Név: - - + + Email: Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: Hely: - + - + Options Beállítások - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: Barát hozzáadása a csoporthoz: - - + + Authenticate friend (Sign PGP Key) Barát azonosítása (PGP kulcs aláírása) - - + + Add as friend to connect with Barát hozzáadása - - + + To accept the Friend Request, click the Finish button. A baráti kérelem elfogadásához kattints a kész gombra. - + Sorry, some error appeared Sajnálom, hiba történt @@ -2646,7 +2912,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.A barátod részletei: - + Key validity: Kulcs érvényessége: @@ -2702,12 +2968,12 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + Certificate Load Failed A tanúsítvány betöltése sikertelen - + Cannot get peer details of PGP key %1 A %1 PGP kulcshoz tartozó partner adatainak lehívása sikertelen @@ -2742,12 +3008,13 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Partner ID - + + RetroShare Invitation RetroShare meghívás - + Ultimate Teljes @@ -2773,7 +3040,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess. - + You have a friend request from Van egy baráti felkérésed tőle @@ -2788,7 +3055,7 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Nem elérhető a hálózatodban %1 azonosítójú partner - + Use new certificate format (safer, more robust) Új tanúsítvány formátum használata (biztonságosabb, robusztusabb) @@ -2886,13 +3153,22 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.*** Nincs *** - + Use as direct source, when available Közvetlen forrásként használat, amikor lehetséges - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others Barátaid ajánlása egymásnak @@ -2902,12 +3178,17 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Ajánlott barátok - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: Üzenet: - + Recommend friends Barátok ajánlása @@ -2927,17 +3208,12 @@ Kattints duplán a csevegőszobára, hogy belépj és beszélgethess.Kérlek, válassz ki legalább egy barátot címzettnek. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Kérlek vedd figyelembe, hogy a RetroShare jelentős sávszélességet, memóriát és processzor teljesítményt igényelhet, ha túl sok barátot veszel fel. 40 személynél több fő már valószínűleg sok erőforrást követelne. - - - + Add key to keyring Kulcs hozzáadása a kulcstartóhoz - + This key is already in your keyring Ez a kulcs már szerepel a kulcstartódban @@ -2950,7 +3226,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2960,8 +3236,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2971,8 +3247,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2982,7 +3258,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2992,17 +3268,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3865,7 +4141,7 @@ p, li { white-space: pre-wrap; } Fórum üzenet beküldése - + Forum Fórum @@ -3875,7 +4151,7 @@ p, li { white-space: pre-wrap; } Tárgy - + Attach File Fájl csatolása @@ -3905,12 +4181,12 @@ p, li { white-space: pre-wrap; } Új szál indítása - + No Forum Nincs fórum - + In Reply to Válasz @@ -3948,12 +4224,12 @@ p, li { white-space: pre-wrap; } - + Send Küldés - + Forum Message @@ -3964,7 +4240,7 @@ Do you want to reject this message? - + Post as @@ -3999,8 +4275,8 @@ Do you want to reject this message? - Security policy: - Biztonsági szabályzat: + Visibility: + @@ -4013,7 +4289,22 @@ Do you want to reject this message? Privát (Csak meghívásos alapon működik) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. Válassz ki barátokat a csoportos csevegéshez. @@ -4023,12 +4314,22 @@ Do you want to reject this message? Meghívott barátok - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: Kapcsolatok: - + Identity to use: @@ -4187,7 +4488,12 @@ Do you want to reject this message? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT kikapcsolva @@ -4209,8 +4515,8 @@ Do you want to reject this message? - DHT Error - DHT hiba + No peer found in DHT + @@ -4307,7 +4613,7 @@ Do you want to reject this message? DhtWindow - + Net Status Hálózat állapota @@ -4337,7 +4643,7 @@ Do you want to reject this message? Partner címe - + Name Név @@ -4382,7 +4688,7 @@ Do you want to reject this message? RS ID - + Bucket Bucket @@ -4408,17 +4714,17 @@ Do you want to reject this message? - + Last Sent Utoljára küldve - + Last Recv Utoljára fogadva - + Relay Mode Relay mód @@ -4453,7 +4759,22 @@ Do you want to reject this message? Sávszélesség - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState Insmeretlen hálózati állapot @@ -4658,7 +4979,7 @@ Do you want to reject this message? Ismeretlen - + RELAY END Relay vége @@ -4692,19 +5013,24 @@ Do you want to reject this message? - + %1 secs ago %1 másodperccel ezelőtt - + %1B/s %1B/s - + + Relays + + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4714,13 +5040,15 @@ Do you want to reject this message? soha - + + + DHT DHT - + Net Status: @@ -4790,12 +5118,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4930,7 +5279,7 @@ minden csatlakoztatáskor újra hash értéket számoljon a program. ExprParamElement - + to @@ -5035,7 +5384,7 @@ minden csatlakoztatáskor újra hash értéket számoljon a program. FileTransferInfoWidget - + Chunk map Szelettérkép @@ -5210,7 +5559,7 @@ minden csatlakoztatáskor újra hash értéket számoljon a program. FlatStyle_RDM - + Friends Directories Barátok mappái @@ -5286,90 +5635,40 @@ minden csatlakoztatáskor újra hash értéket számoljon a program. FriendList - - - Status - Állapot - - - - - + Last Contact Utolsó kapcsolat - - - Avatar - Avatár - - - + Hide Offline Friends Kilépett barátok elrejtése - - State - Állapot + + export friendlist + - Sort by State - Állapot szerint rendezés + export your friendlist including groups + - - Hide State - Állapot elrejtése - - - - - Sort Descending Order - Csökkenő sorrendbe rendezés - - - - - Sort Ascending Order - Növekvő sorrendbe rendezés - - - - Show Avatar Column - Avatár oszlop mutatása - - - - Name - Név + + import friendlist + - Sort by Name - Név szerint rendezés - - - - Sort by last contact - Utolsó kapcsolat szerint rendezés - - - - Show Last Contact Column - Utolsó kapcsolat oszlop mutatása - - - - Set root is Decorated - Helyek megjelenítése + import your friendlist including groups + + - Set Root Decorated - Helyek megjelenítése + Show State + @@ -5378,7 +5677,7 @@ minden csatlakoztatáskor újra hash értéket számoljon a program.Csoportok mutatása - + Group Csoport @@ -5419,7 +5718,17 @@ minden csatlakoztatáskor újra hash értéket számoljon a program.Hozzáadás a csoporthoz - + + Search + + + + + Sort by state + + + + Move to group Áthelyezés a csoportba @@ -5449,40 +5758,103 @@ minden csatlakoztatáskor újra hash értéket számoljon a program.Összes becsukása - - + Available Elérhető - + Do you want to remove this Friend? El szeretnéd távolítani ezt a barátot? - - Columns - Oszlopok + + + Done! + - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP IP - - Sort by IP - Rendezés IP szerint - - - - Show IP Column - IP oszlop mutatása - - - + Attempt to connect Csatlakozási kísérlet @@ -5492,7 +5864,7 @@ minden csatlakoztatáskor újra hash értéket számoljon a program.Új csoport létrehozása - + Display Megjelenítés beállításai @@ -5502,12 +5874,7 @@ minden csatlakoztatáskor újra hash értéket számoljon a program.Tanúsítvány beillesztése - - Sort by - Rendezés - - - + Node @@ -5517,17 +5884,17 @@ minden csatlakoztatáskor újra hash értéket számoljon a program. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5575,30 +5942,35 @@ minden csatlakoztatáskor újra hash értéket számoljon a program.Keresés: - - All - Összes + + Sort by state + - None - Nincs - - - Name Név - + Search Friends Barát keresése + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message Állapot szerkesztése @@ -5692,12 +6064,17 @@ minden csatlakoztatáskor újra hash értéket számoljon a program.Kulcstartó - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. Retroshare üzenőfal: az ide írt üzeneteidet az összes barátod láthatja. - + Network Hálózat @@ -5708,12 +6085,7 @@ minden csatlakoztatáskor újra hash értéket számoljon a program. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5726,7 +6098,7 @@ minden csatlakoztatáskor újra hash értéket számoljon a program.Új profil létrehozása - + Name Név @@ -5780,7 +6152,7 @@ hogy névtelen maradj. Jelszó (ellenőrzés) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/><body><p align="justify">Mozgasd az egeredet, hogy a RetroShare a lehető legtöbb véletlenszerűséget összegyűjthesse. A folyamatsávban 20%-os feltöltésére mindenképpen szükség van, de 100% elérése a javasolt.</p></body></html> @@ -5795,7 +6167,7 @@ hogy névtelen maradj. A jelszavak nem egyeznek - + Port Port @@ -5839,28 +6211,23 @@ hogy névtelen maradj. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5882,7 +6249,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5907,12 +6274,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5928,12 +6300,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5950,7 +6327,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6060,7 +6442,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6068,12 +6455,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6089,21 +6476,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6262,29 +6634,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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"> -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:12pt;">Mikor megkapod a barátaid meghívóit, kattints a barát hozzáadása ablakra.</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: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-size:12pt;">Illeszd meg oda a barátod tanúsítványát és vedd fel barátodnak.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + - - Connect To Friends - Csatlakozás a barátokhoz - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6295,26 +6656,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-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-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-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"> -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:12pt;">Legyetek bejelentkezve ugyanakkor és a RetroShare automatikusan összekapcsol titeket!</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: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-size:12pt;">A kliensednek először meg kell találnia a RetroShare hálózatot.</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:12pt;">Ez a program első indításakor 5-30 percet is igénybe vehet.</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: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-size:12pt;">A DHT állapotjelzője (az állapotsorban lévő ikon) zöldre vált, mikor bekapcsolódott a hálózatba.</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: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-size:12pt;">Pár perc múlva a NAT állapotjelző (szintén az állapotsorban) sárgára vagy zöldre fog váltani.</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:12pt;">Amennyiben piros marad, valószínűleg egy trükkös tűzfallal áldott meg a sors és a RetroShare nem tud azon keresztül csatlakozni.</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: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-size:12pt;">Olvasd el a súgót is, hogy több segítséget kapj a témával kapcsolatban.</span></p></body></html> + - - Advanced: Open Firewall Port - Haladó: Port nyitása a tűzfalon + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6322,71 +6681,37 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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"> -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:12pt;">Javíthatsz a RetroShare teljesítményén egy kimenő port megnyitásával. </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:12pt;">Ez felgyorsítja az csatlakozásokat és több embernek teszi lehetővé a kapcsolódást </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: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-size:12pt;">Ennek legegyszerűbb módja az, ha engedélyezed az UPnP-t a routereden.</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:12pt;">Mivel minden router más beállítási felülettel rendelkezik, a Googleban találhatsz segítséget a routered típusára keresve.</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: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-size:12pt;">Amennyiben nem férsz hozzá a beállításokhoz, ne aggódj. A RetroShare így is működni fog.</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: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-size:8pt;"></p></body></html> - - - - Further Help and Support - További segítség és támogatás - - - - <!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: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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-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-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-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"> -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:12pt;">Új RetroShare felhasználó vagy és problémába ütköztél?</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: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-size:12pt;">1) nézd meg a WIKI GYIK részét. Ez talán már egy kicsit elavult, de igyekszünk naprakészen tartani.</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: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-size:12pt;">2) próbálkozz a fórumokban. Tegyél fel kérdéseket vagy beszélgess a program tudásáról.</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: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-size:12pt;">3) próbálkozz a belső RetroShare fórumokban </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:12pt;"> - Ezeket csak akkor érheted el, ha barátokon keresztül kapod.</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: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-size:12pt;">4) Ha nagyon elakadtál, írhatsz nekünk emailt is.</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: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-size:12pt;">Kellemes RetroShare használatot</span></p></body></html> + - + + Connect To Friends + Csatlakozás a barátokhoz + + + + Advanced: Open Firewall Port + Haladó: Port nyitása a tűzfalon + + + + Further Help and Support + További segítség és támogatás + + + Open RS Website RetroShare weboldal megnyitása @@ -6479,82 +6804,104 @@ p, li { white-space: pre-wrap; } Útválasztó statisztikái - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer Ismeretlen partner + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id - ID - - - - Destination - Célpont - - - - Data status + + [Unknown identity] - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - Küldés - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Ragadd meg az alsó elemeket és használt az egér görgőjét vagy a '+' illetve '-' billentyűket a közelítéshez, távolításhoz. - - GroupChatToaster @@ -6734,7 +7081,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Cím @@ -6754,7 +7101,7 @@ p, li { white-space: pre-wrap; } Leírás keresése - + Sort by Name Rendezés név szerint @@ -6768,13 +7115,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post Rendezés utolsó üzenet szerint + + + Sort by Posts + + Display Megjelenítés beállításai - + You have admin rights @@ -6787,7 +7139,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and és @@ -6885,7 +7237,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Csatornák @@ -6896,17 +7248,22 @@ p, li { white-space: pre-wrap; } Csatorna létrehozása - + Enable Auto-Download Automatikus letöltés engedélyezése - + My Channels Csatornáim - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels Feliratkozások @@ -6921,13 +7278,29 @@ p, li { white-space: pre-wrap; } Egyéb csatornák - + + Select channel download directory + + + + Disable Auto-Download Automatikus letöltés tiltása - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7268,7 +7641,7 @@ p, li { white-space: pre-wrap; } Nincs csatorna kiválasztva - + Disable Auto-Download Automatikus letöltés tiltása @@ -7288,7 +7661,7 @@ p, li { white-space: pre-wrap; } - + Feeds Hírcsatornák @@ -7298,7 +7671,7 @@ p, li { white-space: pre-wrap; } Fájlok - + Subscribers @@ -7461,7 +7834,7 @@ mielőtt hozzászólhatsz GxsForumGroupDialog - + Create New Forum Új fórum létrehozása @@ -7593,12 +7966,12 @@ mielőtt hozzászólhatsz Forma - + Start new Thread for Selected Forum Új fonál indítása a kiválasztotta fórumban - + Search forums Fórumok keresése @@ -7619,7 +7992,7 @@ mielőtt hozzászólhatsz - + Title Cím @@ -7632,13 +8005,18 @@ mielőtt hozzászólhatsz - + Author Szerző - - + + Save image + + + + + Loading Töltés @@ -7668,7 +8046,7 @@ mielőtt hozzászólhatsz Következő olvasatlan - + Search Title Cím keresése @@ -7693,17 +8071,27 @@ mielőtt hozzászólhatsz Tartalom keresése - + No name Nincs név - + Reply Válasz + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread Új szál indítása @@ -7741,7 +8129,7 @@ mielőtt hozzászólhatsz RetroShare hivatkozás másolása - + Hide Elrejt @@ -7751,7 +8139,38 @@ mielőtt hozzászólhatsz Lenyitás - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous Névtelen @@ -7771,29 +8190,55 @@ mielőtt hozzászólhatsz [ ... Hiányzó üzenet ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Nincs fórum kiválasztva! - + + + You cant reply to a non-existant Message Válaszolhatsz hiányzó üzenetre + You cant reply to an Anonymous Author Válaszolhatsz névtelen szerzőnek - + Original Message Eredeti üzenet @@ -7818,7 +8263,7 @@ mielőtt hozzászólhatsz %1, %2 írta: - + Forum name @@ -7833,7 +8278,7 @@ mielőtt hozzászólhatsz - + Description Leírás @@ -7843,12 +8288,12 @@ mielőtt hozzászólhatsz - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7864,7 +8309,12 @@ mielőtt hozzászólhatsz GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums Fórum @@ -7894,11 +8344,6 @@ mielőtt hozzászólhatsz Other Forums Egyéb fórumok - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7921,13 +8366,13 @@ mielőtt hozzászólhatsz GxsGroupDialog - - + + Name Név - + Add Icon Ikon hozzáadása @@ -7942,7 +8387,7 @@ mielőtt hozzászólhatsz Közzétételi kulcs megosztása - + check peers you would like to share private publish key with Jelöld ki azon partnereidet, akikkel szeretnél privát kulcsot megosztani. @@ -7952,36 +8397,36 @@ mielőtt hozzászólhatsz Kulcs megosztása velük: - - + + Description Leírás - + Message Distribution Üzenet elosztás - + Public Publikus - - + + Restricted to Group A csoportra korlátozva - - + + Only For Your Friends Csak a barátaidnak - + Publish Signatures Aláírások közzététele @@ -8011,7 +8456,7 @@ mielőtt hozzászólhatsz Személyes aláírások - + PGP Required PGP szükséges @@ -8027,12 +8472,12 @@ mielőtt hozzászólhatsz - + Comments Hozzászólások - + Allow Comments Hozzászólások engedélyezése @@ -8042,33 +8487,73 @@ mielőtt hozzászólhatsz Nincsenek hozzászólások - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Kapcsolatok: - + Please add a Name Kérlek, adj meg egy nevet - + Load Group Logo Csoport logó betöltése - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -8078,12 +8563,12 @@ mielőtt hozzászólhatsz - + Set a descriptive description here - + Info @@ -8156,7 +8641,7 @@ mielőtt hozzászólhatsz Nyomtatási kép - + Unsubscribe Leiratkozás @@ -8166,12 +8651,12 @@ mielőtt hozzászólhatsz Feliratkozás - + Open in new tab Megnyitás új fülön - + Show Details @@ -8196,12 +8681,12 @@ mielőtt hozzászólhatsz Összes megjelölése olvasatlanként - + AUTHD HITELESÍTETT - + Share admin permissions @@ -8209,7 +8694,7 @@ mielőtt hozzászólhatsz GxsIdChooser - + No Signature Nincs aláírás @@ -8222,7 +8707,7 @@ mielőtt hozzászólhatsz GxsIdDetails - + Loading Töltés @@ -8237,8 +8722,15 @@ mielőtt hozzászólhatsz Nincs aláírás - + + + + [Banned] + + + + Authentication @@ -8253,7 +8745,7 @@ mielőtt hozzászólhatsz - + Identity&nbsp;name @@ -8268,7 +8760,7 @@ mielőtt hozzászólhatsz - + [Unknown] @@ -8286,6 +8778,49 @@ mielőtt hozzászólhatsz Nincs név + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8481,44 +9016,7 @@ mielőtt hozzászólhatsz Névjegy - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">A RetroShare egy nyílt forráskódú, több platformon elérhető, </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-weight:600;">privát és biztonságos, decentralizált közösségi hálózat. </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-weight:600;">Barátaidhoz biztonságosan kapcsolódhatsz, </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-weight:600;">OpenSSL titkosítás használata mellett. </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-weight:600;">A RetroShareben fájlmegosztást, chatet, fórumokat és blogokat használhatsz</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-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; font-weight:600;">Linkek, melyeken további hasznos információkat találhatsz:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Weboldal</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare fórum</a></li> -<li style=" font-size:12pt; 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">Retroshare projekt oldala</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare csapat blogja</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare fejlesztők Twitter elérése</a></li></ul></body></html> - - - + Authors Szerzők @@ -8569,7 +9067,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8611,7 +9130,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8646,78 +9165,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation Népszerűség - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - Kapcsolatok - - - - Edit Reputation - Népszerűség szerkesztése - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom - Testreszabott - - - - Modify + Neutral - + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name Ismeretlen igazi név @@ -8756,37 +9285,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID Új ID - + + All Összes - + + Reputation Népszerűség - - - Todo - Tennivaló - - Search Keresés - + Unknown real name Ismeretlen igazi név @@ -8796,72 +9346,29 @@ p, li { white-space: pre-wrap; } Névtelen Id - + Create new Identity Új személyazonosság létrehozása - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - Kapcsolatok - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - Testreszabott - - - - Modify - - - - + Edit identity @@ -8882,42 +9389,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8927,7 +9434,57 @@ p, li { white-space: pre-wrap; } Típus: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8937,12 +9494,17 @@ p, li { white-space: pre-wrap; } Névtelen - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8958,7 +9520,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8973,7 +9535,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8983,15 +9580,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -9012,7 +9629,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -9027,7 +9649,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -9037,17 +9659,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - Oszlopok - - - + Distant chat refused with this person. @@ -9057,7 +9669,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -9072,29 +9684,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -9104,7 +9704,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9147,8 +9747,8 @@ p, li { white-space: pre-wrap; } Új személyazonosság - - + + To be generated Létrehozandó @@ -9156,7 +9756,7 @@ p, li { white-space: pre-wrap; } - + @@ -9166,13 +9766,13 @@ p, li { white-space: pre-wrap; } N/A - + Edit identity Személyazonosság szerkesztése - + Error getting key! Hiba a kulcs beolvasásakor! @@ -9192,7 +9792,7 @@ p, li { white-space: pre-wrap; } Ismeretlen igazi név - + Create New Identity Új személyazonosság létrehozása @@ -9247,7 +9847,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9315,7 +9915,7 @@ p, li { white-space: pre-wrap; } - + Copy Másolás @@ -9345,16 +9945,35 @@ p, li { white-space: pre-wrap; } Küldés + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Fájl megnyitása - + Open Folder Mappa megnyitása @@ -9364,7 +9983,7 @@ p, li { white-space: pre-wrap; } Megosztás jogosultságainak szerkesztése - + Checking... Ellenőrzés... @@ -9413,7 +10032,7 @@ p, li { white-space: pre-wrap; } - + Options Beállítások @@ -9447,12 +10066,12 @@ p, li { white-space: pre-wrap; } Gyors beállítások varázsló - + RetroShare %1 a secure decentralized communication platform RetroShare %1 egy biztonságos, központosítatlan kommunikációs platform - + Unfinished Befejezetlen @@ -9490,7 +10109,12 @@ p, li { white-space: pre-wrap; } Értesítés - + + Open Messenger + + + + Open Messages Levelek megnyitása @@ -9540,7 +10164,7 @@ p, li { white-space: pre-wrap; } %1 új üzenet - + Down: %1 (kB/s) Letöltés: %1 (kB/s) @@ -9610,7 +10234,7 @@ p, li { white-space: pre-wrap; } Szolgáltatás jogosultságok mátrix - + Add Hozzáadás @@ -9635,7 +10259,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9644,38 +10268,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose Írás - - + Contacts Kapcsolatok - - >> To - >> Címzett - - - - >> Cc - >> Másolat - - - - >> Bcc - >> Rejtett másolat - - - - >> Recommend - >> Ajánl - - - + Paragraph Bekezdés @@ -9756,7 +10359,7 @@ p, li { white-space: pre-wrap; } Aláhúzott - + Subject: Tárgy: @@ -9767,12 +10370,22 @@ p, li { white-space: pre-wrap; } - + Tags Címkék - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9782,7 +10395,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files Ajánlott fájlok @@ -9852,7 +10465,7 @@ p, li { white-space: pre-wrap; } Hosszabb idézet - + Send To: Küldés neki: @@ -9877,47 +10490,22 @@ p, li { white-space: pre-wrap; } &sorkizárt - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Szia,<br>Szeretném a figyelmedbe ajánlani egy barátomat. Ha bennem megbízol, benne is megbízhatsz. <br> @@ -9943,12 +10531,12 @@ p, li { white-space: pre-wrap; } - + Save Message Üzenet mentése - + Message has not been Sent. Do you want to save message to draft box? Az üzenet nem lett elküldve. @@ -9960,7 +10548,7 @@ Szeretnéd piszkozatként menteni az üzenetet? RetroShare link beillesztése - + Add to "To" Hozzáadás címzettként @@ -9980,12 +10568,7 @@ Szeretnéd piszkozatként menteni az üzenetet? Hozzáadás ajánlottként - - Friend Details - Barát részletei - - - + Original Message Eredeti üzenet @@ -9995,19 +10578,21 @@ Szeretnéd piszkozatként menteni az üzenetet? Feladó - + + To Neki - + + Cc Másolat - + Sent Küldve @@ -10049,12 +10634,13 @@ Szeretnéd piszkozatként menteni az üzenetet? Kérlek, adj meg legalább egy fogadót. - + + Bcc Rejtett másolat - + Unknown Ismeretlen @@ -10164,7 +10750,12 @@ Szeretnéd piszkozatként menteni az üzenetet? &Formátum - + + Details + + + + Open File... Fájl megnyitása... @@ -10212,12 +10803,7 @@ Szeretnéd menteni az üzenetet? Extra fájl hozzáadása - - Show: - Mutatás: - - - + Close Bezárás @@ -10227,32 +10813,57 @@ Szeretnéd menteni az üzenetet? Feladó: - - All - Összes - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10275,7 +10886,27 @@ Szeretnéd menteni az üzenetet? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Olvasás @@ -10290,7 +10921,7 @@ Szeretnéd menteni az üzenetet? Üzenet megnyitása ebben: - + Tags Címkék @@ -10330,7 +10961,7 @@ Szeretnéd menteni az üzenetet? Új ablak - + Edit Tag Címke szerkesztése @@ -10340,22 +10971,12 @@ Szeretnéd menteni az üzenetet? Üzenet - + Distant messages: Távoli üzenetek: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">Az alábbi hivatkozás segítségével a hálózatba kapcsolódott emberek titkosított üzenetet küldhetnek neked alagutak segítségével. Ehhez szükségük van a publikus PGP kulcsodra, amit elérhetnek a Retroshare felfedező szolgáltatásával. </p></body></html> - - - - Accept encrypted distant messages from everyone - Titkosított távoli üzenetek elfogadása mindenkitől - - - + Load embedded images Beágyazott képek megjelenítése @@ -10636,7 +11257,7 @@ Szeretnéd menteni az üzenetet? MessagesDialog - + New Message Új üzenet @@ -10703,24 +11324,24 @@ Szeretnéd menteni az üzenetet? - + Tags Címkék - - - + + + Inbox Beérkezett üzenetek - - + + Outbox Kimenő üzenetek @@ -10732,14 +11353,14 @@ Szeretnéd menteni az üzenetet? - + Sent Elküldve - + Trash Kuka @@ -10808,7 +11429,7 @@ Szeretnéd menteni az üzenetet? - + Reply to All Válasz mindenkinek @@ -10826,12 +11447,12 @@ Szeretnéd menteni az üzenetet? - + From Feladó - + Date Dátum @@ -10859,12 +11480,12 @@ Szeretnéd menteni az üzenetet? - + Click to sort by from Rendezés alak szerint - + Click to sort by date Rendezés dátum szerint @@ -10919,7 +11540,12 @@ Szeretnéd menteni az üzenetet? Mellékletek keresése - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred Csillagozott @@ -10984,14 +11610,14 @@ Szeretnéd menteni az üzenetet? Kuka ürítése - - + + Drafts Piszkozatok - + 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 gray star beside any message. Nincs elérhető csillagozott üzenet. A csillagokkal megjelölheted fontos üzeneteidet, hogy azokat könnyen megtaláld. Ehhez kattints a világosszürke csillagra az üzenet mellett. @@ -11011,7 +11637,12 @@ Szeretnéd menteni az üzenetet? Rendezés címzett szerint - + + This message goes to a distant person. + + + + @@ -11020,18 +11651,18 @@ Szeretnéd menteni az üzenetet? Összes: - + Messages Üzenetek - + Click to sort by signature Rendezés aláírás szerint - + This message was signed and the signature checks Az üzenet aláírást tartalmazott és az értéke egyezett @@ -11041,15 +11672,10 @@ Szeretnéd menteni az üzenetet? Az üzenet aláírást tartalmazott, de az értéke nem egyezik meg - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -11072,7 +11698,22 @@ Szeretnéd menteni az üzenetet? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link RetroShare hivatkozás beillesztése @@ -11106,7 +11747,7 @@ Szeretnéd menteni az üzenetet? - + Expand Lenyitás @@ -11149,7 +11790,7 @@ Szeretnéd menteni az üzenetet? <strong>NAT:</strong> - + Network Status Unknown Ismeretlen hálózati állapot @@ -11193,26 +11834,6 @@ Szeretnéd menteni az üzenetet? Forwarded Port Továbbított port - - - OK | RetroShare Server - Oké | RetroShare kiszolgáló - - - - Internet connection - Internet kapcsolat - - - - No internet connection - Nincs kapcsolat az internettel - - - - No local network - Nincs helyi hálózat - NetworkDialog @@ -11326,7 +11947,7 @@ Szeretnéd menteni az üzenetet? Partner ID - + Deny friend Barát elutasítása @@ -11391,7 +12012,7 @@ A biztonság kedvéért a kulcstartód ezt megelőzően el lett mentve egy fájl Nem hozható létre biztonsági mentés. Ellenőrízd a jogosultságokat a PGP mappában, a szabad helyet, stb. - + Personal signature Személyes aláírás @@ -11458,7 +12079,7 @@ Kattints rá jobb gombbal, majd választ ki a 'barátság kezdeményezése& magad - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Adatrendezési hiba a kulcstartóban. Ez valószínűleg egy programhiba. Kérlek lépj kapcsolatba a fejlesztőkkel. @@ -11473,7 +12094,7 @@ Kattints rá jobb gombbal, majd választ ki a 'barátság kezdeményezése& - + Trust level @@ -11493,12 +12114,12 @@ Kattints rá jobb gombbal, majd választ ki a 'barátság kezdeményezése& - + Make friend... - + Did peer authenticate you @@ -11528,7 +12149,7 @@ Kattints rá jobb gombbal, majd választ ki a 'barátság kezdeményezése& - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11597,7 +12218,7 @@ Reported error: NewsFeed - + News Feed Hírek @@ -11616,18 +12237,13 @@ Reported error: This is a test. Ez egy teszt. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed Hírek - + Newest on top @@ -11636,6 +12252,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11779,7 +12400,12 @@ Reported error: Villogás - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left Bal felül @@ -11803,11 +12429,6 @@ Reported error: Notify Értesítés - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11857,7 +12478,7 @@ Reported error: NotifyQt - + PGP key passphrase PGP kulcs jelszava @@ -11897,7 +12518,7 @@ Reported error: Fájlindex mentése - + Test Teszt @@ -11912,13 +12533,13 @@ Reported error: Ismeretlen cím - - + + Encrypted message Titkosított üzenet - + Please enter your PGP password for key @@ -11970,24 +12591,6 @@ Reported error: Alacsony forgalom: 10% standard forgalom és TODO: szüneteltetett fájlátvitelek - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -12011,12 +12614,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -12051,39 +12664,51 @@ Reported error: - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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"> -<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;">Egy barátod kulcsának aláírása egy lehetőség arra, hogy kifejezd a barátba fektetett bizalmadat. Csak az aláírt kulcsal rendelkező barátaid szerezhetnek információt a bizalmi kapcsolataidról.</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> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key PGP kulcs aláírása + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -12094,6 +12719,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Aláírásokat tartalmaz @@ -12149,7 +12779,7 @@ p, li { white-space: pre-wrap; } Nem bízol meg ebben a partnerben. - + This key has signed your own PGP key @@ -12323,12 +12953,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 Barátok: 0/0 - + Online Friends/Total Friends Bejelentkezett barátok/Összes barát @@ -12696,7 +13326,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12757,19 +13387,19 @@ p, li { white-space: pre-wrap; } Összes beépülő engedélyezése - - Loaded plugins - Betöltött beépülők - - - + Plugin look-up directories Beéplők könyvtárai - - Hash rejected. Enable it manually and restart, if you need. - Hash visszautasítva. Engedélyezd manuálisan és indítsd újra a programot, amennyiben szükséges. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] + @@ -12777,27 +13407,36 @@ p, li { white-space: pre-wrap; } Nincs támogatott API szám. Kérlek, olvasd el a beépülők fejlesztéséhez kapcsolódó leírást. - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. Nincs támogatott SVN szám. Kérlek, olvasd el a beépülők fejlesztéséhez kapcsolódó leírást. - + Loading error. Hiba a betöltéskor - + Missing symbol. Wrong version? Hizányzó szimbólum. Rossz verzió? - + No plugin object Nem található beépülő - + Plugins is loaded. Beépülő betöltve. @@ -12807,22 +13446,7 @@ p, li { white-space: pre-wrap; } Ismeretlen állapot. - - Title unavailable - Cím nem elérhető - - - - Description unavailable - Leírás nem elérhető - - - - Unknown version - Ismeretlen verzió - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12832,15 +13456,16 @@ lesznek ellenőrízve. Alapállapotban a hash érték ellenőrzése megvéd a kártevőként működő beépülők használatától. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins Beépülők - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - PopularityDefs @@ -12908,12 +13533,17 @@ a kártevőként működő beépülők használatától. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. A csevegőpartnered megszűntette a biztonságos csevegő alagutat. Bezárhatod a csevegőablakot. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Ha bezárod ezt az ablakot, akkor a beszélgetés megszakad és megszűnik titkosított alagút. @@ -12923,12 +13553,7 @@ a kártevőként működő beépülők használatától. Alagút bezárása? - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -13009,7 +13634,12 @@ a kártevőként működő beépülők használatától. Beküldve - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -13033,11 +13663,6 @@ a kártevőként működő beépülők használatától. Other Topics Egyéb témák - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13292,7 +13917,7 @@ a kártevőként működő beépülők használatától. PrintPreview - + RetroShare Message - Print Preview RetroShare üzenet - nyomtatási kép @@ -13638,7 +14263,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Megerősítés @@ -13648,7 +14274,7 @@ p, li { white-space: pre-wrap; } Szeretnéd, ha ezt a hivatkozást a rendszered kezelné? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13677,7 +14303,12 @@ and open the Make Friend Wizard. Meg szeretnéd nyitni mind a %1 hivatkozást? - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. %1 Retroshare hivatkozás a %2 -ból feldolgozva. @@ -13844,7 +14475,7 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek le lesznek cs A kollekciófájl feldolgozása sikertelen - + Deny friend Barát elutasítása @@ -13864,7 +14495,7 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek le lesznek cs Fájl kérése megszakítva - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. A RetroShare ezen verziója OpenPGP-SDK-t használ. Ennek hála, nem használja a rendszer PGP kulcstartóját, viszont van egy saját kulcstartója, amit az összes futó RetroShare elérhet. <br><br>Úgy tűnik, hogy még nem rendelkezel ilyen kulcstartóval annak ellenére, hogy már létrehozott RetroShare fiókjaidban szerepelnek PGP kulcsok. Ez valószínűleg azért lehetséges, mert most frissítettél az alkalmazás új verziójára. @@ -13895,7 +14526,7 @@ A <b>",|,/,\,&lt;,&gt;,*,?</b> karakterek le lesznek cs Váratlan hiba történt. Kérlek jelentsd 'RsInit::InitRetroShare unexpected return code %1'. - + Multiple instances Több példány @@ -13933,11 +14564,6 @@ Zárolófájl: Tunnel is pending... Függőben lévő alagút... - - - Secured tunnel established. Waiting for ACK... - Biztonságos alagút létrehozva. Várakozás az ACK-ra... - Secured tunnel is working. You can talk! @@ -13955,7 +14581,7 @@ A hibajelentés: %2 - + Click to send a private message to %1 (%2). @@ -14005,7 +14631,7 @@ A hibajelentés: - + You appear to have nodes associated to DSA keys: @@ -14015,7 +14641,7 @@ A hibajelentés: - + enabled @@ -14025,12 +14651,12 @@ A hibajelentés: - + Join chat lobby - + Move IP %1 to whitelist @@ -14045,42 +14671,49 @@ A hibajelentés: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago %1 nappal ezelőtt - + Subject: @@ -14099,6 +14732,12 @@ A hibajelentés: Id: + + + +Security: no anonymous IDs + + @@ -14110,6 +14749,16 @@ A hibajelentés: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -14119,7 +14768,7 @@ A hibajelentés: Gyors beállítások varázsló - + <!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; } @@ -14157,21 +14806,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > Következő > - - - - + + + + + Exit Kilépés - + For best performance, RetroShare needs to know a little about your connection to the internet. A legjobb teljesítmény érdekében a RetroSharenek szükséges többet tudnia az internet csatlakozásodról. @@ -14238,13 +14889,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back < Vissza - + <!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; } @@ -14269,7 +14921,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Egész hálózat @@ -14294,7 +14946,27 @@ p, li { white-space: pre-wrap; } A kész letöltések automatikus megosztása (Ajánlott) - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14406,7 +15078,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 KB @@ -14442,7 +15114,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14473,7 +15145,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14495,7 +15167,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14604,7 +15276,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14629,7 +15301,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW ÚJ @@ -14967,7 +15639,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? A kép túl nagy az átvitelhez. @@ -14985,7 +15657,7 @@ Lecsökkented a méretét %1x%2 pixelre? Rshare - + Resets ALL stored RetroShare settings. Az összes tárolt RetroShare beállítás visszaváltása alapértelmezettre. @@ -15030,17 +15702,17 @@ Lecsökkented a méretét %1x%2 pixelre? Naplófájl megnyitása sikertelen: '%1': %2 - + built-in beépített - + Could not create data directory: %1 - + Revision @@ -15068,33 +15740,10 @@ Lecsökkented a méretét %1x%2 pixelre? RTT statisztika - - SFListDelegate - - - B - B - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Írj be egy kulcsszót (legalább három karakter hosszú legyen) @@ -15276,12 +15925,12 @@ Lecsökkented a méretét %1x%2 pixelre? Kiválasztott letöltése - + File Name Fájlnév - + Download Letöltés @@ -15350,7 +15999,7 @@ Lecsökkented a méretét %1x%2 pixelre? Mappa megnyitása - + Create Collection... @@ -15370,7 +16019,7 @@ Lecsökkented a méretét %1x%2 pixelre? Letöltés kollekciófájlból... - + Collection Kollekció @@ -15613,12 +16262,22 @@ Lecsökkented a méretét %1x%2 pixelre? ServerPage - + Network Configuration Hálózati beállítások - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) Automatikus (UPnP) @@ -15633,7 +16292,7 @@ Lecsökkented a méretét %1x%2 pixelre? Manuálisan továbbított port - + Public: DHT & Discovery Publikus: DHT & Felfedezés @@ -15653,13 +16312,13 @@ Lecsökkented a méretét %1x%2 pixelre? Sötét hálózat: Egyik se. - - + + Local Address Helyi cím - + External Address Külső cím @@ -15669,28 +16328,28 @@ Lecsökkented a méretét %1x%2 pixelre? Dinamikus DNS - + Port: Port: - + Local network Helyi hálózat - + External ip address finder Külső IP cím kereső - + UPnP UPnP - + Known / Previous IPs: Ismert / Előző IP címek: @@ -15713,13 +16372,13 @@ behind a firewall or a VPN. Engedélyezem a RetroSharenek, hogy a következő oldalakon lekérdezze az IP címemet: - - + + kB/s KB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15729,23 +16388,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15755,17 +16403,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15775,90 +16471,95 @@ HiddenServicePort 9191 127.0.0.1:9191 Tisztítás - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test Teszt - + Network Hálózat - + IP Filters - + IP blacklist - + IP range - - - + + + Status Állapot - - + + Origin - - + + Reason - - + + Comment Hozzászólás - + IPs - + IP whitelist - + Manual input @@ -15883,12 +16584,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15911,32 +16718,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15966,99 +16774,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -16091,7 +16820,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions Szolgáltatás jogosultságok @@ -16106,13 +16835,13 @@ Check your ports! Jogosultságok - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16376,7 +17105,7 @@ Select the Friends with which you want to Share your Channel. Letöltés - + Copy retroshare Links to Clipboard RetroShare hivatkozás másolása a vágólapra @@ -16401,7 +17130,7 @@ Select the Friends with which you want to Share your Channel. Hivatkozások hozzáadása a felhőhöz - + RetroShare Link RetroShare hivatkozás @@ -16417,7 +17146,7 @@ Select the Friends with which you want to Share your Channel. Megosztás - + Create Collection... @@ -16440,7 +17169,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16466,11 +17195,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16479,6 +17209,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16539,7 +17274,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile Profil betöltése @@ -16783,12 +17518,12 @@ This choice can be reverted in settings. - + Connected Csatlakozott - + Unreachable Nem észlelhető @@ -16804,18 +17539,18 @@ This choice can be reverted in settings. - + Trying TCP TCP csatlakozással próbálkozás - - + + Trying UDP UDP csatlakozással próbálkozás - + Connected: TCP Csatlakozott: TCP @@ -16826,6 +17561,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown Csatlakozott: Ismeretlen @@ -16835,7 +17575,7 @@ This choice can be reverted in settings. DHT: Kapcsolat - + TCP-in @@ -16845,7 +17585,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16855,7 +17595,7 @@ This choice can be reverted in settings. - + UDP @@ -16869,13 +17609,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -17092,7 +17842,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Szünet @@ -17141,7 +17891,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17274,16 +18024,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Letöltések + Uploads Feltöltések - + Name i.e: file name @@ -17479,25 +18231,25 @@ p, li { white-space: pre-wrap; } - + Slower Lassabb - - + + Average Átlagos - - + + Faster Gyorsabb - + Random Véletlenszerű @@ -17522,7 +18274,12 @@ p, li { white-space: pre-wrap; } Meghatározás... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... Mozgatás a sorban... @@ -17548,39 +18305,39 @@ p, li { white-space: pre-wrap; } - + Failed Sikertelen - - + + Okay Oké - - + + Waiting Várakozás - + Downloading Letöltés - + Complete Elkészült - + Queued Sorban áll @@ -17618,7 +18375,7 @@ igényel egy részletesebb hash térképet a forrástól, hogy meghatározza Kérlek, légy türelmes! - + Transferring Folyamatban @@ -17628,7 +18385,7 @@ Kérlek, légy türelmes! Feltöltés - + Are you sure that you want to cancel and delete these files? Biztos vagy benne, hogy megállítod és törlöd a fájlokat? @@ -17686,7 +18443,7 @@ Kérlek, légy türelmes! Kérlek, írj be egy új --és megfelelő-- fájlnevet - + Last Time Seen i.e: Last Time Receiced Data Utoljára látva @@ -17792,7 +18549,7 @@ Kérlek, légy türelmes! Utoljára látva oszlop mutatása - + Columns Oszlopok @@ -17802,7 +18559,7 @@ Kérlek, légy türelmes! Fájl átvitelek - + Path i.e: Where file is saved Elérési út @@ -17818,12 +18575,7 @@ Kérlek, légy türelmes! Elérési útvonal mutatása - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17833,7 +18585,7 @@ Kérlek, légy türelmes! - + Create Collection... @@ -17848,7 +18600,7 @@ Kérlek, légy türelmes! - + Collection Kollekció @@ -17858,17 +18610,17 @@ Kérlek, légy türelmes! Fájlmegosztás - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17904,7 +18656,7 @@ Kérlek, légy türelmes! MAPPA - + Friends Directories Barátok mappái @@ -17947,7 +18699,7 @@ Kérlek, légy türelmes! TurtleRouterDialog - + Search requests Keresési kérelem @@ -18010,7 +18762,7 @@ Kérlek, légy türelmes! Útválasztó statisztikái - + Age in seconds Kor másodpercekben @@ -18025,7 +18777,17 @@ Kérlek, légy türelmes! összes - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Ismeretlen partner @@ -18034,16 +18796,11 @@ Kérlek, légy türelmes! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition Keresési kérelmek felosztása @@ -18242,10 +18999,20 @@ Kérlek, légy türelmes! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18256,11 +19023,6 @@ Kérlek, légy türelmes! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18450,7 +19212,7 @@ Kérlek, légy türelmes! Keresés - + My Groups Csoportjaim @@ -18470,7 +19232,7 @@ Kérlek, légy türelmes! Egyéb csoportok - + Subscribe to Group Feliratkozás a csoporthoz diff --git a/retroshare-gui/src/lang/retroshare_it.qm b/retroshare-gui/src/lang/retroshare_it.qm index 8eb17e580dd53e324373745dd0380daa82eb4407..d529305c25950050dcf30fcffa19b410312a5564 100644 GIT binary patch delta 141251 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�y2z`gF28r?g_d?Zk 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∈@u}{v7Xl^w7X5Xpz<}lW^s2XVHK2nWe03BvKLyyZB5eln~Zl#>TD)`JT=@_ zz6I77w0rACMqB`pbRgRqfav7eh}uhS+El)UmYh@@RZvPa*e)r5J}z&i^vyUXTn`|AB5~kKbIgqG%>BFe9qzOLcrbNZ{pb(eg`QpEkdq_bPE*HgIe7Q*=<0L9RIfUh- zBTGeN8y3_KO2454>NT%JL&_$3To@G9i;vX`Q#Ma|%78nSicz2ppW(2%GaSHW;5}EN z)4ljvDB7fVyS4ezle2K^W7M~fM*0rB{;%<9*<&9df6Vv?aCgyVzydof}yGaw6JQukz`KSJ~I!)5rh0my{(+FCo9pi5` z7pODwnrwS{59i96P={R-K5LQrES!)nSg~^G9vp_UT1DTeDj?2siBs!gLX=$#LfI8k zBL}+`uX01^A6#Zys+|R$I$~8e)GQ+D6i19rbdt})_!P|N@`7)f*RORNb}N;~>7No? zr=X!&?4OVw37kts)?*h$U9 zA5%^c-vICd-U0yexVI921G5*OAUu!l)FF#?YZS+#_b`WV={{uWQzp|ZjIS@@Hsyi1xpUT6i^U2q9hF9JN=zrk3dk%EXbdgQy(};Bu8V5mu(y8`|rWG%f^70vToBqK?Tz zFWm}9#A?8NDrvJ8lIuyI(!Sct4+RCcE>gh44-5+qHI#(& zJBwNscnr}_d{&_;xK@yk!QbKjh$^qQg@w@c8kuYsju$>Myo9PPgdF3T*OONsHEh8A0z#L%*Ds|J2nLyIj;VrWSVlN(xm<2(&5JC0&Qiw#VsEU4;U z@u@VHT3cD1kxoMZF0XZ*R0sZiT8FwOD1l}chBGo-Kf z;_$GStR(VFv>j2u0Dl>)IC?CT9_!a#4uT}IYA@?9d5cR9o7uN{)k}+&0tEhqiqXu& z0XG-|@O!OHaC0&AV53$ivny+v_;4ejda9l9VZy)!4M{67jLyBeGs2Bc1SWLH`Mfqg zd@Xp(tizs^y#^~xxt1|ce+)(w;k7dIO|p6f?^dD?-nbLG$6{u;f0-#Z_sytBso(nykeIUT{Lz~q6<)eN}(*=R%MR^}Z2T*mwIihl&aQ2yx zVk)NZQGYCd&u`vjKK-aaFE{lvU@^x4Y_n82)f&o#llZ9*G;|CFR9gk`ZpEir2(VuH zgkeD%bx2CB%{RX2&040mn~f0SVvVD1`5nkc{;A(Ek6Zl#)EZPL;qN>ZG)E)f zqwR7VK2^|2bvaU*YSv5$85J>2wTXct)F3F(siCTIzzcQQF6Xq1wkAPDML6DAUHgLfv?#V%{1CK1Jk8xLgn&(E39__g; z_?()wdH{+CqgWhCMkux(|F8k;;;=8_g5ISLuBzghu|&YLp>YF5h`8nCScJnta@hjyi%HYO795~Pk1G;}d$J?z_3!9fsVvfOI=d5zTmt_g-8S}3;LE0Y z0KFCs;u4#|Ac{WF9H0af1-TLWz3Lb?%HBo-(U%^ydk=uC(SIteZD zWEv3y{kdbKFh$^>m%I*WmWUsOHklFY1P_acR9nRbcUcQ&v+eLdQEIJDli12+T$_Lk z_xRpD5`c&pfc}K68Y;UZpKjx-4lY_wR*l7Pvh8{~Q)j2FTYERE#-+nPq90H@4daE4 z!nh=A-T(p@eBcgGH03SeXbIoKQ<39*P;;!iq%Onhr_e`^r04`WesdQ?+|`IN%tj>v|E2axn6 znX($tiZ~G%d$hDL6mBy99fjV@aYX60#l7-3WU>Re>y~`W^zi8+R3i)bas^}j(W(?5 z991hf_&{&3M?W$dv-?wi!u;c-{-0D^9u%o< zodLxh@xe!rvW|2CZGPGHP|?^ppLD7#8G+5rUB+F5bx@b8UI-Ry8A3^&+>@I)I+%p@ zMJTc#8vjVP>z>E_=UaXO)@Vb9m{dZTkr}gOiX!yPgPZ+^T2(K}*T`wN;QnKX~xX(+G2idB5>ZDV< z>&>)L7_i5a6g%Hp$!?^{YXkYVX$C9fp;>W}n~TU|34a8S7y>3?TJCf%sMh&QQ^6~3 zh3`D(-!;v3_n60U@0d)Fv-rQwT?=qr)p^$4Jr~KAWxbJQSAWM9bX*xqX$%JWPYNt&#OgiC_CQu-$p`@7* zC^l_KNRx?8T4G=d{l5Rd=ic3w00)@1FbL`H-Shm<|32T(v4@UGd%6wqG-bz8@bWL) z%=MXnIaX1s)`+IsL0Ph^H<%qsssm1Qh@z6&LV!CX286J7ZA8_yBtFp#F(-D%d8 zf(FLLrUxtmvM22iJ56KRcuG70bX?PV8MFW0Y3kr%`oT7{376)*hs}jkgO8b?#{^A! z-EI&-6!>6P@4KT(x3sj_TmKPt^nP=@S!xeIVQLUrJAY7V3sC8nV^5k_1y}mLdY^_X z?RuYj^-1%y_~s7+B<-5AKl&%L7Yp;q1IUEzxf5B_Cr^2^<`jdz#+3#1*;`HmAF|B; zx$oE7!=H(j*xOE;3VY8tfQK`8GByXhMg^A%=Y96{mrYF(WPm_#$~WzyC4QrPrG({0 z^|}`*$0kn3t7p&Z8itFA?0_%tvZsG-E^OlIWx!5j{ZTNfbO-Wc!Nwt#QKh`ke)1&f zddV&EWkrRo-?3xtfb=-^!;|LgUdc{z+fvWKS;*Y_K&2Fdq*}5cyZ|bR`e?Nqxd{_; znuU9YC%|9e&H}H(4RhSalp5(G1#mQn(*!yzmbc&#L+Lt&m(T7IGgaj>m_=Y@(E!vt z|MvdN;0H$H987u)$9afCSz?9{)(@-a|z! z&2`P1E__GTI`Vn4290Oxw}px08MR7o0@||4t)|-E_xJHRnWMc+yaSmNy}z}smz#3? z*B6v6RN_t@GO1vu^mrA4fhN0}6xKqVu4>X6rDzx|zfOP%0W&^IMVT||P^ z1?H>2`c8bI{n@iXt4sZ}c|C5thXEH@{%7$TUnGJ(b(yz(mVgLijLYoVU%*ydj$g^I zNPVa9JL!;Sv09njPvvr?O?B@p!WZR@ex~WI**tOp?H$1~MJ|UHEC=7FI-ldjx3f>j zN-87QyNDb()OFnUgpu0V4f`j8uP{!$S7>IurPnAUnf)JBR z$xf-hPA2Y#&tvIb2b5`SS4fdhcEfMV+wX`nOEQ@VpnL?yW%88Ezg*Q3sH6diPG5Te z=#dd#{|RzK2l|ev^4`*miVCv13I!Qta*TbfZ$G@aEL6c1&(Q=i2*VMCD9m9G@Z*Z- z7!Ws9&M0&7*(h_Uf?i#sev3W*tf`J4drw-}`~hjf?po(1F2vGz$pN6U#Qo-m{U2}V zi4S!tL?;{?zk&Et6l;oGro(UiGBJ7Q#FN`uZ`8u3Gxk^!Fto- z7cM}wuo($Rd@(UMd_|Tne5sHxVTt4|TlJ#(F9Pyq_ng+cw`RBIUdd~XFS*vF zA^HUK8yX(X8kRjgZ`+Dh{(`DXjBv)crk*}!w%1(oamh-c2o?{M{G^^i7ZbG)m+Y&V7#b_4 zm)sE~9eV2R>a{1Y^nlY8j<2=@jH-K>@k?OR(ES4wna&?6$vZdr1bL=>CR*PnxE;^G z>wGu4^t`Ho)pDwGx((79sc7c*3VqD4vdhky+E^*_hMm&ac!{~gn>sV#{e`H0E9~*j z=Az8#(JFh#PpPS2W_lJY5CtVZy^N!f`|2pCeilUFGACZFp2aN_{muU5918dCX!1*z zxEJt$YEV=rm`>`Jn#+j`T93w1K$Ox>!w^(RWT|b#&%L@!X_RUVBKw-9n&{M1^fUU| zsbHx-Bd%A;5U8a?ln=8bPBL_R^z~RHj9=!YFcU%p7j(G}We)b%O`U9tt?)AcI$lPl zxMh}>c7dOI>g^W0eyA9!>Z8<|^XISyf$=fc96^@9Ja%RkXnwCm+=2QKZv*m`6 zIAiRt?dH-+8jAaqBjO?^no8g)6-SN~4WqMa3?NtV=!IyOJ$>Uh5tC1EPl<1r+=e<5 z_#zG6QC7%so@P~$-Tl!3mJx<1UfCoaricO=#K4n|yF%x7kXoUSQVrW=I&cQI*b`UB z?zO{BrpSKdSiHRWBO~LeIE9lyds?fgLUcKQ?12Qz_`CwoFcw5dB z0htLNH6I+8S|AWiz_!7QYdFZkl)d{{yvdg_XUdOM*)Lsgs%+WbSW@s0>>FLCZbe%# zNUkpuU0@x^eP6h;r4|aW#0{n})cn?(?EROU9yT=BZr*O@b!9gcE+BSbdKQB7t8QDn zEr1;edfB*oVlZ>|)0KAV8>T#FUJ9?)+DBKJWpV~^Gk}!JY+cf--crv!0X$)32V^EL z!&k!kz~u7DWdRs)73?^2XL3!Zu_+j5hN;%15^2j7b>k*je}@yTfLN@{YRlbFy5v zkS$mkW@Aj)#V|Qw4ozX~Xxnnw>b@oKRDegfpky%{@l?u=+Rt1H4HtDMjR=_k$U())nT8 zMZN}|6h%8_oNju6Xv0o)yQy3Z9V^28qj3ZTtUtKRSCjv&>AyzIUX-B4h@9fiYs3lO%#st+s8E)(gA;a}HWey&#{$gu}bJb)+cPLkjPk^;W*Fvtu_Tz2Ri(O5-Z6qs+Ik#;0ThDVS^ ztQYRpxy9OL5-nCNMmBmQfE@eM+2j|0JS4yBeB49E2?lNH?eY3zw_0Fxw7^!%U0sp} zaVW`j)ogR_UGhH7KOrG1(I_1wc4voyjj%dQuYhc0QqdkX<>-+6r|Bu&X%RlQYyx)Q zx2}tqlF+&JOcr9lO6V$=G|9t_g3XKyp*UDElDpamYHahn>mZ<-k#g4>#6xmLh?^N_ zIacs1ypNnko)`!ad+;Ur2VOg8=AzCd>5;THW+#VD^%aa6^Ab(Alpu|6!)u(9%g^Bm z_(jT(=z0~G!Wp4$nT3B<*{M>8E2-q`zR$KO%NW6-EM`mkOrtv71^z9c(k`hE3eTvF zbeqHF;1Hmz*pGT%wJ!l_K~!ZbSyNb$}xx@hzFu;V2m);6wey!=Px3U9HRkH)Ul%0O84&ZuV+QoxZ~;|7gL@ zNZK@wc5&RBx0NI+BqzigX+Wwas{ia2yc5;HrJ~A1K($^}D|_%O0J~|e^h{U)MYT*l z5K)^EFJrHf=gnogje%Nu8uZEt4~}B`vmMfNG=}Y>@{uuUPs#)*Y~_>jN=%lAi(OE1 z4`!}?d|?SmUdbGM%YM}NYC5yq4y|?Ti!UANum<=;i51PwEfj_G!Twx8V*L z8tY(7-ZXU!RYZ|bkuU0=yIBb3*fTzI)&)A;``XNG34uY0^eM0v*aFTt7!Cw|*eB=91%S@cZh7^O>qJwKMZxlix7sICxz=?JPl)Kz>aj8poTLCL)n8Pp^g zhg6Q`kL^gw6Xwg%CWZv195<2(uYvA>qK>OiU=#QS_neZz{JDv23FGIKvZkmBWq?>m zf&k7z#Yf43*SH-=kLy$ z2mQ$lj^Z4@d(J-VM=laF|L}75yX7R06=d#wrL3N3a2pN`iH_csoZNky0>Ia2Er@=6 zNtGi_lIKzAwZ(6m`Vu~NoUM)GdT|Ngby|R+c+@FMFh6bF>JF!4S!#ll&8o^p#ob{7 z^0esbR^}XB!nCa&UQHas7WKe3%<_w=lTqY5&~=tscBp9_BL8!ILKP1_A)6%^$#sM< znVuS)dbFJxqANg)n=^22^LH|Zb+q^O6>1d9c=Z%72TSAP<|eMAd3)>Q@Mdp%$jpvo z1?^d6+?8ssnT`}~+fN?!nozezv+MVx56YV(XulW#-T)0}J#Z`dlPTz|Xh{ih6MA&F zH*)WREXBJ_MrTSoZLk6S%PCNmWr_!XC(ooN#=l4y3EQ~A)WR0zj&ar8c1M{Z*gbpZ zPfe}jjn!UCHl~t>kQrLfi?oBOufIL*rcaz#f&*O6I%&*|3_EcNTc|Fi8&X^r&hf zqU!v7{s?{OLIno$7k?AGkcUU*B{d*-)0rj|?-419(@JM&&7d;s1L4$Nm@xieB0oEQ z>6-J)PM;jvAZ)T5%$2+~NKj9_|9_BGoMkHaFzf(nh`e(_Y|9TwOp26gLs%2?1BzuZ zj2X&ntrFY%e8=TH-l1PSP`;%skn04nl#>Dt45>#)EV0dD4C02@0K7 z=R2GP6Ou$hfJjaTD53NpP3F4MmS-iYzjxbMYNvNd_#;pm^b#%Qy=30IOA4BDt_wXp zdIZ;4Z&IpfKm2qCYxZ$I0CA~30$tw{+%Gz+CV zM@`yqXmeq<5^I6R!+%0rg8>%pfzr^8NPAcFPb$9$=yMxa7wV0Tggxl{_4Y(MHg5^p zWNX1;ceo2GJ6v!qXd%&h*j^R)Yo|uuGK(%isCZ3pyw?8hTc)au>^YlXkttJh(1@Tu zoD5s7-zpffT-RRIp20Oy=i9|3?N>|v`I3{|x*JUB_sL1Nt4sX__6x=z{rz*1?Zu^j z_0*ldKQK#DlHaTIX(`Fl`P6^S^=~cqHXWvN*k zUpRGWzJID{(-P#!F^t2=Qxac(_xV>`O>g+tVITx6`jE{2>cxJ0yrSTcJ^I`D{30mF zV_+|BvS;?fC%oFJ`xpB=3*S$6&~q#NZ=;0xA7W^b2-bVuRC*~pavjnz+gJH3>{~1S z1(}H_tERrU()Wud%{}j_=u(0Cuod0y0oB<%o-rj2Sj2rG!JaHNSG|5$B1E^{e(D)h z#fzT$j`P`0R~R8B1&qO-tuhVmIf4}5CQ=c#FWSVTfr6t>I2GB{QfRVLjvkV#9Jci# z_$;C>JyIBt-iPg_(`yZ#OiRvX6NcWfYM{{emq_) z7$~Z~@Qdo=SKokYtc)3og2SzAxCRX?H&M-AP5E@eEBX$8Qt_n4!;Un_N}q(fhok!~ z@G0Sq{An=1)lDOdJnV6tj-9gZ`n_mZB87{6>;XKE-YC{x(_H~H9iD0)Hr+9iLmFF5 zP1y}IP)8kujjhaA$+En-S@@h2b!8U4&M@-3{qwct+TWP ze49Y+NU|^THVth-Q%F+C^Li1ZbIhU?m1z(V1fv4@orI(r8{h@7@P%N+sWeOCjYl`t zAhh=(f&twTs^R2tx@jEv8zZb33I)I|fX<(u0X%cw+Es9RNZ6B4;X;5GmxfaoCAkqv zakFET22X=ja4=_Rg8dpU;q@~#=>W>P);GAlPymkH-uPlNv1iZaPB_zF6ChNe9f3U7 zQKR!9#ZczSRJvK%>4{Y4^!MuoSV)g!k)z`f!MmcRu~SM~W^e1h&MiPy52z$+jD_y) zQ}@M|*k7*m=Qen)K|Y|Cu8+(w8a`5?fT?tjN06dvb@197ts+{}V$(^D(+XH1{EInc z>J0@L`t|YolR3|MSl9|(0`4I3uxh>p4<-+hG7TyvTFOBGCf6s+aG@RN8YDXq&W+E4 zV-Lh5$D>5d(2&y8AKexB&EsoJXT(lM1Z%z*%m`Jru zdm=YrN$o>$!u3MGO`|bHl#xD#4HlFQY;ai~UAEYl*ZG}=Unz*B9AhJnLAe#@D&;3( z>SYXJ<5(Y!u8@sF2FZO0+qx}g3Kh#rN#{V9wsU8_p zx%BWQP%4EfJq*tAl`CRMYsFkXN)$@QORBtug$iB2%yz7Z!v?3EBy-Pl4dV%2R6GGu zk+ulib%R)fj;{zBAp^mHT1gV}bPP;&Sx}duO^c(kE{r%dm*+230-WHwf{vV1=cqh9 zrd&e)k)vwhZ`Js7)Sqx68(F%KMM~8}OzKtM9Y})wfnXfh2)m%tqQZ_Rlwxzg{qjq( z^2$R&1R!7bQc4SHhkY;T$2E0z1#6$#n>uyAi6`?nO9ejF@-)e)Ez!Nak)F21z! zFxGJh!&w2<=o9#zeiZ&r{sDKYove$`Yu%MX-7)M_V%Z9sy@?eqpBU-m{|=7~$shcE UJk{Ti{~bv6FSq}`%YW>D09jK;{{R30 delta 32784 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 diff --git a/retroshare-gui/src/lang/retroshare_it.ts b/retroshare-gui/src/lang/retroshare_it.ts index d41069e7f..c4d7a655b 100644 --- a/retroshare-gui/src/lang/retroshare_it.ts +++ b/retroshare-gui/src/lang/retroshare_it.ts @@ -1,8 +1,8 @@ - + AWidget - + version versione @@ -21,12 +21,17 @@ A proposito di RetroShare - + About A proposito - + + Copy Info + Copia Info + + + close chiudi @@ -495,7 +500,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Lingua @@ -535,24 +540,28 @@ p, li { white-space: pre-wrap; } Barra degli strumenti - - + + On Tool Bar Sulla barra degli strumenti - - + On List Item Sull'oggetto della lista - + Where do you want to have the buttons for menu? Dove vuoi posizionare i bottoni del menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? Dove vuoi posizionare i bottoni della pagina? @@ -588,24 +597,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 Dimensione icona = 8x8 - - + + Icon Size = 16x16 Dimensione icona = 16x16 - - + + Icon Size = 24x24 Dimensione icona = 24x24 - + + + Icon Size = 64x64 + Dimensione icona = 64x64 + + + + + Icon Size = 128x128 + Dimensione icona = 128x128 + + + Status Bar Barra di stato @@ -627,7 +648,7 @@ p, li { white-space: pre-wrap; } Hide Toaster Disable - + Disabilita Nascondi Toaster @@ -635,8 +656,13 @@ p, li { white-space: pre-wrap; } Mostra Icona nella Status Bar - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 Dimensione Icona = 32x32 @@ -741,7 +767,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro AvatarWidget - + Click to change your avatar Clicca per cambiare il tuo avatar @@ -749,7 +775,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro BWGraphSource - + KB/s KB/s @@ -757,7 +783,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro BWListDelegate - + N/A N/D @@ -765,13 +791,13 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro BandwidthGraph - + RetroShare Bandwidth Usage Utilizzo di Banda da parte di RetroShare - + Show Settings Mostra Impostazioni @@ -826,7 +852,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Annulla - + Since: Dal: @@ -836,6 +862,31 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Nascondi Impostazioni + + BandwidthStatsWidget + + + + Sum + Totale + + + + + All + Tutti + + + + KB/s + KB/s + + + + Count + Conteggio + + BwCtrlWindow @@ -899,7 +950,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Ricezione perressa - + TOTALS TOTALI @@ -914,6 +965,49 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Modulo + + BwStatsWidget + + + Form + + + + + Friend: + Amico: + + + + Type: + Tipo: + + + + Up + + + + + Down + Giù + + + + Service: + Servizio: + + + + Unit: + Unità: + + + + Log scale + + + ChannelPage @@ -934,7 +1028,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Load posts in background (Thread) - + Carica i post in sottofondo (Argomento) @@ -942,14 +1036,6 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Apri ogni canale in una nuova tab - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -963,17 +1049,32 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Cambia nick - + Mute participant Silenzia partecipante - + + Send Message + Invia Messaggio + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Invita amici a questo gruppo di interesse - + Leave this lobby (Unsubscribe) Abbandona questo gruppo di interesse (Disdici sottoscrizione) @@ -988,7 +1089,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Seleziona gli amici da invitare: - + Welcome to lobby %1 Benvenuto nella chat di gruppo %1 @@ -998,13 +1099,13 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Argomento: %1 - + Lobby chat Gruppo di discussione - + Lobby management @@ -1036,7 +1137,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Vuoi uscire da questa chat? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Fare clic col pulsante destro per attivare/disattivare i partecipanti<br/> Doppio clic per rivolgerti a questa persona<br/> @@ -1051,19 +1152,19 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro secondi - + Start private chat Avvia chat privata - + Decryption failed. - + Decifrazione fallita. Signature mismatch - + Firma non corrispondente @@ -1083,12 +1184,12 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Cannot start distant chat - + Impossibile iniziare chat distante Distant chat cannot be initiated: - + La Distant chat non può essere avviata: @@ -1102,7 +1203,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro ChatLobbyUserNotify - + Chat Lobbies Gruppi di Discussione @@ -1129,7 +1230,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Unknown Lobby - + Gruppo di interesse sconosciuto @@ -1141,18 +1242,18 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro ChatLobbyWidget - + Chat lobbies Gruppi di Discussione - - + + Name Nome - + Count Count @@ -1173,23 +1274,23 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro - + Create chat lobby Crea chat di gruppo - + [No topic provided] [Nessun argomento disponibile] - + Selected lobby info Informazioni sul gruppo di interesse selezionato - + Private Privato @@ -1198,13 +1299,18 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Public Pubblico + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. Non hai sottoscritto questo gruppo di interesse; Fare doppio clic su di esso per entrare e chattare - + Remove Auto Subscribe Disabilita Abbonamento Automatico @@ -1214,27 +1320,37 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Abilita Abbonamento Automatico - + %1 invites you to chat lobby named %2 %1 ti ha invitato nella lobby chat chiamata %2 - + Search Chat lobbies Cerca i gruppi delle chat - + Search Name Cerca nome - + Subscribed Sottoscritto - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Aree di Conversazione</h1><p>Le Aree di Conversazione sono delle chat room distribuite, e funzionano grosso modo come IRC. Ti consentono di chiacchierare anonimamente con centinaia di persone senza bisogno di stringere amicizie.</p> <p>Un’area di conversazione può essere pubblica (i tuoi amici la vedono) o privata (i tuoi amici non possono vederla, a meno che tu non li inviti con <img src=":/images/add_24x24.png" width=%2/>). Una volta invitato ad un’area privata, sarai in grado di vederla quando i tuoi amici la stanno utilizzando.</p> <p>L’elenco a sinistra mostra le aree di conversazione a cui stanno partecipando tuoi amici. Puoi:<ul> <li>Cliccare con pulsante destro per creare una nuova area di conversazione</li><li>Fare doppio click su un’area di conversazione per entrarvi, chiacchierare, e mostrarla ai tuoi amici</li></ul>Nota: Affinché le aree di conversazione funzionino a dovere, il tuo computer dovrà essere ben sincronizzato con l’orario. Quindi, verifica il tuo orologio di sistema!</p> + + + + Create a non anonymous identity and enter this lobby + Crea un’identità non anonima e partecipa a questo gruppo di interesse: + + + Columns Colonne @@ -1249,7 +1365,7 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro No - + Lobby Name: Nome del gruppo di discussione: @@ -1268,6 +1384,11 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro Type: Tipo: + + + Security: + Sicurezza: + Peers: @@ -1278,19 +1399,22 @@ Ma ricorda: Qualsiasi dato qui presente *SARÀ PERSO* quando aggiorneremo il pro + TextLabel Etichetta Testo - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Nessun gruppo di interesse selezionato. +Seleziona gruppi di interesse sulla sinistra per vederne i dettagli. +Fare doppio clic sui gruppi di interesse per entrare e chattare. - + Private Subscribed Lobbies Gruppi di discussioni a sottoscrizione privata @@ -1299,59 +1423,74 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies Gruppi di discussioni a sottoscrizione pubblica - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies Gruppi di Discussione - + Leave this lobby - + Abbandona questo gruppo di interesse - + Enter this lobby - + Partecipa a questo gruppo di interesse Enter this lobby as... - + Partecipa a questo gruppo di interesse come... - + + Default identity is anonymous + L’identità predefinita è anonima + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + Non puoi unirti a questo gruppo di interesse con la tua identità predefinita, il gruppo non lo consente dato che è anonima. + + + + No anonymous IDs + Nessuna ID anonima + + + + You will need to create a non anonymous identity in order to join this chat lobby. + Per partecipare a quest’area di conversazione devi creare un’identità non anonima. + + + You will need to create an identity in order to join chat lobbies. - + È necessario creare un'identità prima che tu possa partecipare alle aree di conversazione. - + Choose an identity for this lobby: - + Scegli un'identità per questo gruppo di interesse: - + Create an identity and enter this lobby - + Crea un'identità e partecipa a questo gruppo di interesse: - + Show - + Mostra column - + colonna @@ -1393,7 +1532,7 @@ Double click lobbies to enter and chat. Annulla - + Quick Message Messaggio rapido @@ -1402,12 +1541,37 @@ Double click lobbies to enter and chat. ChatPage - + General Generale - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Impostazioni Chat @@ -1432,7 +1596,12 @@ Double click lobbies to enter and chat. Abilita dimensione del carattere personalizzata - + + Minimum font size + Dimensioni minime del font + + + Enable bold Abilita grassetto @@ -1546,7 +1715,7 @@ Double click lobbies to enter and chat. Chat privata - + Incoming In arrivo @@ -1590,6 +1759,16 @@ Double click lobbies to enter and chat. System message Messaggio di sistema + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1598,7 +1777,7 @@ Double click lobbies to enter and chat. <html><head/><body><p align="justify">In this tab you can setup how many chat messages Retroshare will keep saved on the disc and how much of the previous conversation it will display, for the different chat systems. The max storage period allows to discard old messages and prevents the chat history from filling up with volatile chat (e.g. chat lobbies and distant chat).</p></body></html> - + <html><head/><body><p align="justify">In questa finestra puoi impostare quanti messaggi delle aree di conversazione RetroShare conserverà salvati sul disco e quanto verrà mostrato delle previe conversazioni, per i diversi sistemi di chat. Il periodo massimo di archiviazione consente di eliminare i messaggi vecchi e previene che lo storico delle conversazioni si riempa con chiacchiere volatili (p.es. aree di conversazione e conversazioni a distanza).</p></body></html> @@ -1668,12 +1847,12 @@ Double click lobbies to enter and chat. Threshold for automatic search - + Soglia per la ricerca automatica Default identity for chat lobbies: - + Identità predefinita per le aree di conversazione: @@ -1681,30 +1860,30 @@ Double click lobbies to enter and chat. Mostra Barra di default - + Private chat invite from - + Invito per chat privata da Name : - + Nome: PGP id : - + PGP id : Valid until : - + Valido fino a : ChatStyle - + Standard style for group chat Stile standard per la chat di gruppo @@ -1753,17 +1932,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close Chiudi - + Send Invia - + Bold Grassetto @@ -1778,12 +1957,12 @@ Double click lobbies to enter and chat. Corsivo - + Attach a Picture Allega Immagine - + Strike Barrato @@ -1834,12 +2013,37 @@ Double click lobbies to enter and chat. Ripristina il font predefinito - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... sta scrivendo... - + Do you really want to physically delete the history? Vuoi veramente cancellare lo storico dal disco? @@ -1864,7 +2068,7 @@ Double click lobbies to enter and chat. File di testo (*.txt );;Tutti i Files (*) - + appears to be Offline. sembra essere fuori linea. @@ -1889,7 +2093,7 @@ Double click lobbies to enter and chat. è occupato probabilmente non risponderà - + Find Case Sensitively Ricerca rispettando maiuscole/minuscole @@ -1911,7 +2115,7 @@ Double click lobbies to enter and chat. Non smettere di colorare dopo X elementi trovati (richiede più potenza CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Trova precedente </b><br/><i>Ctrl+Shift+G</i> @@ -1926,12 +2130,12 @@ Double click lobbies to enter and chat. <b>Trova </b><br/><i>Ctrl+F</i> - + (Status) (Stato) - + Set text font & color Imposta font e colore del testo @@ -1941,9 +2145,9 @@ Double click lobbies to enter and chat. Allega un file - + WARNING: Could take a long time on big history. - + ATTENZIONE: può richiedere molto tempo se il registro eventi è grande. @@ -1952,9 +2156,9 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> - + <b>Contrassegna questo testo selezionato</b><br><i>Ctr+M</i> @@ -1974,7 +2178,7 @@ Double click lobbies to enter and chat. <b>Return to marked text</b><br><i>Ctrl+M</i> - + <b>Ritorna al testo segnato</b><br><i>Ctr+M</i> @@ -1987,24 +2191,24 @@ Double click lobbies to enter and chat. Casella di Ricerca - + Type a message here Digitare un messaggio qui - + Don't stop to color after - + Non smettere di colorare dopo items found (need more CPU) - + elementi trovati (richiede più potenza CPU) - + Warning: - + Attenzione: @@ -2017,7 +2221,7 @@ Double click lobbies to enter and chat. Empty Circle - + Vuota Circolo @@ -2160,7 +2364,12 @@ Double click lobbies to enter and chat. Dettagli - + + Node info + Informazioni nodo + + + Peer Address Indirizzo Contatto @@ -2234,7 +2443,7 @@ Double click lobbies to enter and chat. Peer Addresses - + Indirizzi Contatti @@ -2247,12 +2456,7 @@ Double click lobbies to enter and chat. Dettagli nodo RetroShare - - Location info - - - - + Node name : Nome nodo : @@ -2288,13 +2492,18 @@ Double click lobbies to enter and chat. - Auto-download recommended files from this node + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + Auto-download recommended files from this node + Scarica automaticamente i files raccomandati da questo nodo + Friend node details - + Dettagli del nodo amico @@ -2330,22 +2539,22 @@ Double click lobbies to enter and chat. <p>You can use this certificate to make new friends. Send it by email, or give it hand to hand.</p> - + <p>Puoi usare questo certificato per farti nuovi amici. Invialo per email, o consegnalo di persona.</p> <html><head/><body><p>Peers that have this option cannot connect if their connection address is not in the whitelist. This protects you from traffic forwarding attacks. When used, rejected peers will be reported by &quot;security feed items&quot; in the News Feed section. From there, you can whitelist/blacklist their IP.</p></body></html> - + <html><head/><body><p>I contatti che hanno questa opzione non possono connettersi se il loro indirizzo di connessione non è nella lista bianca. Questo ti protegge dagli attacchi tramite inoltro di traffico. Quando utilizzato, i contatti rifiutati verranno segnalati tramite i &quot;security feed items&quot; nella sezione News Feed. Da lì, potrai mettere il loro IP in lista bianca/nera.</p></body></html> Require white list clearance - + Richiede bonifica tramite lista bianca - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> - + <html><head/><body><p>Questo è l'ID del certificato <span style=" font-weight:600;">OpenSSL</span> del nodo, che è firmato con questa chiave <span style=" font-weight:600;">PGP</span> indicata sopra. </p></body></html> @@ -2355,12 +2564,12 @@ Double click lobbies to enter and chat. with - + con external signatures</li> - + firme esterne</li> @@ -2376,17 +2585,7 @@ Double click lobbies to enter and chat. Aggiungere un nuovo amico - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Questa procedura guidata aiuterà a collegarti ai tuoi amici nella rete RetroShare.<br>Questi modi sono possibili fare questo: - - - - &Enter the certificate manually - & Inserire manualmente il certificato - - - + &You get a certificate file from your friend &Y-Ottieno un file di certificato dal tuo amico @@ -2396,18 +2595,7 @@ Double click lobbies to enter and chat. Fatti a&mico con amici degli amici selezionati - - &Enter RetroShare ID manually - Ins&erire manualmente ID RetroShare - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &S-Invia un invito tramite E-mail (lui/lei riceve una email con le istruzioni su come a scaricare RetroShare) - - - + Text certificate Certificato testo @@ -2417,13 +2605,8 @@ Double click lobbies to enter and chat. Utilizzare la rappresentazione testo dei certificati PGP. - - The text below is your PGP certificate. You have to provide it to your friend - Il testo che segue è il tuo certificato PGP. Devi fornirlo al tuo amico - - - - + + Include signatures Includi firme @@ -2444,11 +2627,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below - Per favore, incolla il tuo certificato PGP amici nel box sottostante + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files File di certificato @@ -2529,6 +2717,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + RetroShare è meglio con gli Amici + + + + Invite your Friends from other Networks to RetroShare. + Invita a RetroShare amici da altre reti. + + + + GMail + GMail + + + + Yahoo + Yahoo + + + + Outlook + Outlook + + + + AOL + AOL + + + + Yandex + Yandex + + + + Email + + + + Invite Friends by Email Invitare gli amici via Email @@ -2554,7 +2782,7 @@ Double click lobbies to enter and chat. - + Friend request Richiesta amico @@ -2568,61 +2796,103 @@ Double click lobbies to enter and chat. - + Peer details Dettagli contatto - - + + Name: Nome: - - + + Email: Posta elettronica: - - + + Node: + Nodo : + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Tieni conto che se aggiungi troppi amici RetroShare richiederà quantità eccessive di banda, memoria e CPU. Puoi aggiungere quanti amici vuoi, ma oltre i 40 probabilmente serviranno troppo risorse. + + + Location: Località: - + - + Options Opzioni - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Questa procedura guidata aiuterà a collegarti ai tuoi amici nella rete RetroShare.<br>Scegli come vorresti aggiungere un amico: + + + + Enter the certificate manually + Inserisce il certificato manualmente + + + + Enter RetroShare ID manually + Inserisce l’ID RetroShare manualmente + + + + &Send an Invitation by Web Mail Providers + &Spedisci un Invinto tramite gestori di Web Mail + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + &Spedisci un Invinto tramite Email<br> +(Il tuo amico riceverà una email con le istruzioni per scaricare RetroShare) + + + + Recommend many friends to each other + Raccomanda molti amici a vicenda + + + + Add friend to group: Aggiungi i tuoi amici al gruppo: - - + + Authenticate friend (Sign PGP Key) Autenticare amico (firma chiave PGP) - - + + Add as friend to connect with Aggiungi come amico per connettersi con - - + + To accept the Friend Request, click the Finish button. Per accettare la Richiesta di Amicizia, fai clic sul bottone Fine. - + Sorry, some error appeared Siamo spiacenti, si è verificato qualche errore @@ -2642,7 +2912,7 @@ Double click lobbies to enter and chat. Dettagli sul tuo amico: - + Key validity: Chiave validità: @@ -2698,12 +2968,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed Errore caricando il certificato - + Cannot get peer details of PGP key %1 Non è possibile ottenere dettagli contatto della chiave PGP %1 @@ -2738,12 +3008,13 @@ Double click lobbies to enter and chat. Id contatto - + + RetroShare Invitation Inviti RetroShare - + Ultimate Ultimo @@ -2769,7 +3040,7 @@ Double click lobbies to enter and chat. - + You have a friend request from Hai una richiesta di amicizia da @@ -2784,7 +3055,7 @@ Double click lobbies to enter and chat. Questo contatto %1 indisponibile sulla tua rete - + Use new certificate format (safer, more robust) Utilizza nuovo formato di certificato (più sicuro, più robusto) @@ -2882,13 +3153,22 @@ Double click lobbies to enter and chat. *** Nessuno *** - + Use as direct source, when available Usa come fonte diretta, quando disponibile - - + + IP-Addr: + Ind. IP: + + + + IP-Address + Indirizzo IP + + + Recommend many friends to each others Raccomanda molti amici gli uni agli altri @@ -2898,12 +3178,17 @@ Double click lobbies to enter and chat. Consigli dell'amico - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: Messaggio: - + Recommend friends Raccomanda amici @@ -2923,17 +3208,12 @@ Double click lobbies to enter and chat. Si prega di selezionare almeno un amico come destinatario. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring Aggiungi chiave al portachiavi. - + This key is already in your keyring Questa chiave è già presente nel portachiavi @@ -2943,10 +3223,13 @@ Double click lobbies to enter and chat. This might be useful for sending distant messages to this peer even if you don't make friends. - + Seleziona per aggiungere la chiave al tuo portachiavi +Potrebbe esserti utile per inviare +messaggi distanti a questo contatto +anche se non hai amici. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Il certificato ha un numero di versione errato. Ricorda che la versione 0.5 e la 0.6 delle reti sono incompatibili. @@ -2956,10 +3239,10 @@ even if you don't make friends. Nodo ID non valido - - + + Auto-download recommended files - + Scarica automaticamente i file raccomandati @@ -2967,10 +3250,10 @@ even if you don't make friends. Può essere usato come fonte diretta - - + + Require whitelist clearance to connect - + Richiede bonifica tramite lista bianca per la connessione @@ -2978,7 +3261,7 @@ even if you don't make friends. Aggiungi IP alla whitelist - + No IP in this certificate! Nessun IP in questo certificato @@ -2988,24 +3271,24 @@ even if you don't make friends. - + Added with certificate from %1 - + Aggiunto con certificato da %1 - + Paste Cert of your friend from Clipboard - + Incolla il Certificato del tuo amico dal PortaBlocco - + Certificate Load Failed:can't read from file %1 - + Fallito caricamento certificato: impossibile leggere dal file %1 Certificate Load Failed:something is wrong with %1 - + Fallito caricamento certificato: qualcosa non va con %1 @@ -3170,7 +3453,7 @@ even if you don't make friends. Lookup Failure - + Controllo fallito @@ -3212,7 +3495,7 @@ even if you don't make friends. Retroshare will continue connecting in the background - Retroshare cercerà di connettere in sottosfondo + Retroshare cercerà di connettersi in sottofondo @@ -3234,7 +3517,7 @@ even if you don't make friends. Try again shortly, Retroshare will continue connecting in the background - Riprova tra poco, Retroshare continuerà di connettere in sottosfondo + Riprova tra poco, Retroshare continuerà a connettersi in sottofondo @@ -3308,17 +3591,17 @@ even if you don't make friends. Common causes of this problem are: - + Le cause più comuni di questo problema sono: - You are not connected to the Internet - + - Non sei connesso a Internet - You have a missing or out-of-date DHT bootstrap file (bdboot.txt) - + - Manca o è scaduto il file di bootsrap DHT (bdboot.txt) @@ -3328,71 +3611,71 @@ even if you don't make friends. The DHT is OFF, so Retroshare cannot find your Friends. - + La DHT è disattiva, perciò RetroShare non può trovare i tuoi Amici. Retroshare has tried All Known Addresses, with no success - + RetroShare ha provato Tutti gli Indirizzi Conosciuti, senza successo The DHT is needed if your friends have Dynamic IP Addresses. - + E' necessaria la DHT se i tuoi amici hanno Indirizzi IP Dinamici. Go to Settings->Server and change config to "Public: DHT and Discovery" - + Vai su Impostazioni -> Server e cambia la configurazione in "Pubblico: DHT e Scoperta" Peer Denied Connection - + Il contatto ha negato la connessione We successfully reached your Friend. - + Il tuo Amico è stato raggiunto con successo. but they have not added you as a Friend. - + ma non ti hanno aggiunto come Amico. Please contact them to add your Certificate - + Sei pregato di contattarli per aggiungere il tuo Certificato Your Retroshare Node is configured Okay - + Il tuo Nodo RetroShare è configurato correttamente We successfully reached your Friend via UDP. - + Il tuo Amico è stato raggiunto con successo via UDP. Please contact them to add your Full Certificate - + Sei pregato di contattarli per aggiungere il tuo Certificato Completo We Cannot find your Friend. - + Impossibile trovare il tuo Amico. They are either offline or their DHT is Off - + Sono Offline o la loro DHT è disattiva @@ -3402,42 +3685,42 @@ even if you don't make friends. Your Friend has configured Retroshare with DHT Disabled. - + Il tuo Amico ha configurato Retroshare con la DHT Disattivata You have previously connected to this Friend - + Ti sei precedentemente connesso con questo Amico Retroshare has determined that they have DHT switched off - + Retroshare ha determinato che hanno la DHT disattivata Without the DHT it is hard for Retroshare to locate your friend - + Senza la DHT è difficile per Retroshare localizzare i tuoi amici Try importing a fresh Certificate to get up-to-date connection information - + Prova a importare un nuovo Certificato per ottenere informazioni di connessione aggiornate Incomplete Friend Details - + Dettagli Amico incompleti You have imported an incomplete Certificate - + Hai importato un Certificato incompleto Please retry importing the full Certificate - + Si prega di riprovare importando l'intero Certificato @@ -3450,7 +3733,15 @@ 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:'Lucida Grande'; font-size:13pt;"></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:'Lucida Grande'; font-size:13pt;">If you are an expert RS user, or trust that RS will do the right thing</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:'Lucida Grande'; font-size:13pt;">you can close it.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//IT" "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:'Lucida Grande'; font-size:13pt;">Questo Widget mostra il progresso della tua connessione al tuo nuovo peer.</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:'Lucida Grande'; font-size:13pt;">È utile per la risoluzione dei problemi.</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:'Lucida Grande'; font-size:13pt;"></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:'Lucida Grande'; font-size:13pt;">Se sei un utente esperto di RS, o se confidi che RS farà la cosa giusta, </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:'Lucida Grande'; font-size:13pt;">puoi chiuderlo.</span></p></body></html> @@ -3463,12 +3754,12 @@ p, li { white-space: pre-wrap; } UNVERIFIABLE FORWARD! - + FORWARD NON VERIFICABILE! UNVERIFIABLE FORWARD & NO DHT - + FORWARD NON VERIFICABILE E NESSUNA DHT! @@ -3478,22 +3769,22 @@ p, li { white-space: pre-wrap; } UDP Connect Timeout - + Connessione UDP fuori tempo massimo Only Advanced Retroshare users should switch off the DHT. - + Solo gli Utenti Esperti di Retroshare dovrebbero disattivare la DHT. Retroshare cannot connect without this information - + Retroshare non può connettersi senza questa informazione They need a Certificate + Node for UDP connections to succeed - + Richiedono un Certificato + Nodo per la riuscita di connessioni UDP @@ -3611,12 +3902,12 @@ p, li { white-space: pre-wrap; } Create New Personal Circle - + Crea un nuovo Circolo Personale Create New External Circle - + Crea un nuovo Circolo Esteso @@ -3647,7 +3938,7 @@ p, li { white-space: pre-wrap; } Signed by known nodes - + Firmato da Nodi conosciuti @@ -3835,12 +4126,12 @@ p, li { white-space: pre-wrap; } Generate mass data - + Genera dati di massa Do you really want to generate %1 messages ? - + Vuoi davvero generare %1 messaggi ? @@ -3862,7 +4153,7 @@ p, li { white-space: pre-wrap; } Posta un Messaggio nel Forum - + Forum Forum @@ -3872,7 +4163,7 @@ p, li { white-space: pre-wrap; } Oggetto - + Attach File Allega file @@ -3902,12 +4193,12 @@ p, li { white-space: pre-wrap; } Avvia nuovo argomento - + No Forum Nessun forum - + In Reply to In Risposta a @@ -3937,20 +4228,20 @@ p, li { white-space: pre-wrap; } Generate mass data - + Genera dati di massa Do you really want to generate %1 messages ? - + Vuoi davvero generare %1 messaggi ? - + Send Invia - + Forum Message Messaggio Forum @@ -3958,17 +4249,18 @@ p, li { white-space: pre-wrap; } Forum Message has not been Sent. Do you want to reject this message? - + Il messaggio di forum non è stato inviato. +Vuoi scartare questo messaggio? - + Post as Pubblica come Congrats, you found a bug! - + Congratulazioni, hai trovato un bug! @@ -3996,8 +4288,8 @@ Do you want to reject this message? - Security policy: - Policy di sicurezza: + Visibility: + Visibilità: @@ -4010,7 +4302,22 @@ Do you want to reject this message? Privato (Funziona solo su invito) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + richiede identità firmate-PGP + + + + Security: + Sicurezza: + + + Select the Friends with which you want to group chat. Seleziona gli Amici con cui avere conversazione di gruppo. @@ -4020,14 +4327,24 @@ Do you want to reject this message? Amici invitati - + + Put a sensible lobby name here + Inserisci qui un nome per l’area, che abbia un significato + + + + Set a descriptive topic here + + + + Contacts: Contatti: - + Identity to use: - + Identità da utilizzare: @@ -4125,7 +4442,7 @@ Do you want to reject this message? PGP fingerprint: - + Impronta PGP: @@ -4140,12 +4457,12 @@ Do you want to reject this message? Friend nodes: - + Nodi amici: Copy certificate to clipboard - + Copia il Certificato nel PortaBlocco @@ -4184,7 +4501,12 @@ Do you want to reject this message? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT spento @@ -4206,8 +4528,8 @@ Do you want to reject this message? - DHT Error - Errore DHT + No peer found in DHT + @@ -4273,7 +4595,7 @@ Do you want to reject this message? retroshare link(s) - Collegamento(i) RetroShare + collegamento(i) RetroShare @@ -4304,7 +4626,7 @@ Do you want to reject this message? DhtWindow - + Net Status Stato Rete @@ -4334,7 +4656,7 @@ Do you want to reject this message? Indirizzo Contatto - + Name Nome @@ -4379,7 +4701,7 @@ Do you want to reject this message? ID Rs - + Bucket Cestino @@ -4405,17 +4727,17 @@ Do you want to reject this message? - + Last Sent Ultimo Invio - + Last Recv Ultima Ricezione - + Relay Mode Modalità Relé @@ -4450,7 +4772,22 @@ Do you want to reject this message? Banda passante - + + IP + IP + + + + Search IP + Cerca IP + + + + Copy %1 to clipboard + + + + Unknown NetState NetState Sconosciuto @@ -4477,12 +4814,12 @@ Do you want to reject this message? UNKNOWN NAT STATE - + STATO NAT SCONOSCIUTO SYMMETRIC NAT - + NAT SIMMETRICA @@ -4502,12 +4839,12 @@ Do you want to reject this message? OTHER NAT - + ALTRA NAT NO NAT - + NESSUNA NAT @@ -4522,17 +4859,17 @@ Do you want to reject this message? UPNP FORWARD - + UPNP FORWARD NATPMP FORWARD - + NATPMP FORWARD MANUAL FORWARD - + FORWARD MANUALE @@ -4557,17 +4894,17 @@ Do you want to reject this message? NET WARNING: NET Restart - + AVVISO RETE: Riavio Rete NET WARNING: Behind NAT - + AVVISO RETE: Dietro una NAT NET WARNING: No DHT - + AVVISO RETE: Nessuna DHT @@ -4577,17 +4914,17 @@ Do you want to reject this message? CAUTION: UNVERIFIABLE FORWARD! - + ATTENZIONE: FORWARD NON VERIFICABILE! CAUTION: UNVERIFIABLE FORWARD & NO DHT - + ATTENZIONE: FORWARD NON VERIFICABILE E NESSUNA DHT! Not Active (Maybe Connected!) - + Non Attivo (Forse Connesso!) @@ -4632,7 +4969,7 @@ Do you want to reject this message? Udp Started - + UDP avviato @@ -4642,12 +4979,12 @@ Do you want to reject this message? Request Active - + Richiesta Attiva No Request - + Nessuna Richiesta @@ -4655,7 +4992,7 @@ Do you want to reject this message? Scononsciuto - + RELAY END @@ -4689,19 +5026,24 @@ Do you want to reject this message? - + %1 secs ago %1 secondi fa - + %1B/s %1B/s - + + Relays + + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4711,20 +5053,22 @@ Do you want to reject this message? mai - + + + DHT DHT - + Net Status: Stato Rete: Network Mode: - + Modalità Rete: @@ -4734,17 +5078,17 @@ Do you want to reject this message? Nat Hole: - + Buco NAT: Connect Mode: - + Modalità Connessione: Peer Address: - + Indirizzo Contatto: @@ -4774,7 +5118,7 @@ Do you want to reject this message? Direct: - + Diretto: @@ -4787,12 +5131,33 @@ Do you want to reject this message? Relay: - - DHT Graph - + + Filter: + Filtro: - + + Search Network + Cerca Rete + + + + + Peers + Peer: + + + + Relay + Relay + + + + DHT Graph + Grafico DHT + + + Proxy VIA @@ -4927,7 +5292,7 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi. ExprParamElement - + to @@ -5032,7 +5397,7 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi. FileTransferInfoWidget - + Chunk map Mappa Blocchi @@ -5171,7 +5536,7 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi. RetroShare collection file - Collezione di file RetroShare + Raccolta di file RetroShare @@ -5207,7 +5572,7 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi. FlatStyle_RDM - + Friends Directories Cartelle amici @@ -5267,7 +5632,7 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi. Load embedded images - + Carica immagini incorporate @@ -5277,96 +5642,46 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi. Open each forum in a new tab - + Aprire ogni forum in nuova scheda FriendList - - - Status - Stato - - - - - + Last Contact Ultimo Contatto - - - Avatar - Avatar - - - + Hide Offline Friends Nascondi Amici non in linea - - State - Paese + + export friendlist + Esporta elenco amici - Sort by State - Ordina per Paese + export your friendlist including groups + - - Hide State - Nascondi Paese - - - - - Sort Descending Order - Ordinamento Decrescente - - - - - Sort Ascending Order - Ordinamento Crescente - - - - Show Avatar Column - Mostra Colonna Avatar - - - - Name - Nome + + import friendlist + Importa elenco amici - Sort by Name - Ordina per Nome - - - - Sort by last contact - Ordina per ultimo contatto - - - - Show Last Contact Column - Mostra Colonna Ultimo Contatto - - - - Set root is Decorated - Definisci Radice come Decorata + import your friendlist including groups + Esporta il tuo elenco amici, inclusi i gruppi + - Set Root Decorated - Definisci Radice Decorata + Show State + Mostra Stato @@ -5375,7 +5690,7 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi.Mostra Grupppi - + Group Gruppo @@ -5416,7 +5731,17 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi.Aggiungi al gruppo - + + Search + Cerca + + + + Sort by state + Ordina per stato + + + Move to group Sposta nel gruppo @@ -5446,40 +5771,110 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi.Condensa tutto - - + Available Disponibile - + Do you want to remove this Friend? Vuoi rimuovere questo amico? - - Columns - Colonne + + + Done! + Fatto! - - - + + Your friendlist is stored at: + + Il tuo elenco amici è salvato in: + + + + + +(keep in mind that the file is unencrypted!) + +(tieni a mente che il file non è criptato!) + + + + + Your friendlist was imported from: + + Il tuo elenco amici è stato caricato da: + + + + + Done - but errors happened! + Fatto — ma si sono verificati errori! + + + + +at least one peer was not added + +uno o più peer non sono stati aggiunti + + + + +at least one peer was not added to a group + +uno o più peer non sono stati aggiunti ad un gruppo + + + + Select file for importing yoour friendlist from + Scegli il file da cui importare l’elenco degli amici + + + + Select a file for exporting your friendlist to + Scegli un file per salvare l’elenco degli amici + + + + XML File (*.xml);;All Files (*) + File XML (*.xml);;Tutti i file (*) + + + + + + Error + Errore + + + + Failed to get a file! + Non è stato possibile recuperare un file! + + + + File is not writeable! + + Non è possibile scrivere il file! + + + + + File is not readable! + + Non è possibile leggere il file! + + + + IP IP - - Sort by IP - Ordina per IP - - - - Show IP Column - Mostra colonna IP - - - + Attempt to connect Prova a connetteri @@ -5489,44 +5884,39 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi.Crea nuovo gruppo - + Display Display Paste certificate link - + Incolla il link del certificato - - Sort by - Ordina per - - - + Node Nodo Remove Friend Node - + Nodo Amico rimosso - + Do you want to remove this node? - + Vuoi rimuovere questo nodo? - + Friend nodes - + Nodi amici - + Send message to whole group - + Invia messaggio a tutto il gruppo @@ -5537,7 +5927,7 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi. Deny - + Nega @@ -5572,30 +5962,35 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi.Cerca: - - All - Tutti + + Sort by state + Ordina per stato - None - Nessuna - - - Name Nome - + Search Friends Cerca Amici + + + Mark all + Contrassegna tutto + + + + Mark none + + FriendsDialog - + Edit status message Modificare il messaggio di stato @@ -5689,12 +6084,17 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi.Deposito delle Chiavi - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Rete</h1> <p>La scheda Rete mostra i tui nodi RetroShare amici: i nodi di RetroShare adiacenti che sono collegati a te. </p> <p>Puoi raggruppare assieme i nodi per consentire un accesso più granulare alle informazioni, p.es. consentire solo ad alcuni nodi di vedere certi tuoi file.</p> <p>A destra, troverai 3 schede utili: <ul><li>Diffusione, per inviare messaggi contemporaneamente a tutti i nodi connessi</li> <li>Grafico rete locale, mostra la rete intorno a te, basandosi sulle informazioni di rilevamento</li> <li>Portachiavi, contiene le chiavi di nodo che hai raccolto, per lo più trasmesse dai tuoi nodi amici</li></ul></p> + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network Rete @@ -5705,12 +6105,7 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi.Grafico della rete - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. Imposta il tuo messaggio di stato qui @@ -5723,7 +6118,7 @@ per evitare la di ricalcolare gli hash dei files quando lo ricolleghi.Crea nuovo profilo - + Name Nome @@ -5775,14 +6170,14 @@ anonymous, you can use a fake email. Password (check) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> - + <html><head/><body><p align="justify">Prima di procedere, muovi il mouse per aiutare RetroShare ad accumulare più casualità possibile. È necessario riempire al 20% la barra di progresso, ma è consigliabile raggiungere il 100%.</p></body></html> [Required] Type the same password again here. - + [Richiesto] Digita nuovamente la password. @@ -5790,7 +6185,7 @@ anonymous, you can use a fake email. Le password non corrispondono - + Port Porta @@ -5834,35 +6229,31 @@ anonymous, you can use a fake email. Nodo nascosto non valido - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters Il campo nodo richiede minimo 3 caratteri - + Failed to generate your new certificate, maybe PGP password is wrong! Impossibile generare il nuovo certificato, forse la password PGP è errata! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + Tramite questo modulo puoi creare un nuovo profilo. +Altrimenti, per usare un profilo già esistente, despunta la voce "Crea nuovo profilo" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. - + Puoi creare e mandare avanti diversi nodi RetroShare, su computer diversi, utilizzando il medesimo profilo. Per farlo: esporta il profilo selezionato, importalo sull’altro computer e poi usalo per creare un nuovo nodo. It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - + Non risulta esserci alcun profilo (chiavi PGP). Si prega di compilare il modulo sottostante per crearne uno, o importare un profilo esistente. @@ -5873,11 +6264,11 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Your profile is associated with a PGP key pair - + Il tuo profilo è associato ad una coppia di chiavi PGP - + Create a new profile Crea un nuovo profilo @@ -5902,33 +6293,43 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Crea un nodo nascosto - + Use profile Usa profilo - + + hidden address + indirizzo nascosto + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + Il tuo profilo è associato ad una coppia di chiavi PGP. RetroShare attualmente ignora chiavi DSA. Put a strong password here. This password protects your private PGP key. - + Mettere una password forte qui. Questa password protegge la vostra chiave PGP. <html><head/><body><p>This is your connection port.</p><p>Any value between 1024 and 65535 </p><p>should be ok. You can change it later.</p></body></html> - + <html><head/><body><p>Questa è la porta di connessione.</p><p>Qualsiasi valore tra 1024 e 65535 </p><p>dovrebbe andar bene. Puoi modificarlo in seguito.</p></body></html> - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + <html><head/><body><p>Questo può essere un indirizzo Tor Onion nella forma: xa76giaf6ifda7ri63i263.onion<br/>o un indirizzo I2P nella forma:[52 caratteri].b32.i2p </p><p>Al fine di procurartene uno, devi configurare o Tor o I2P per creare un nuovo servizio nascosto/server tunnel. Se non ne possiedi ancora uno, puoi proseguire lo stesso, e sopperirlo in seguito andando nel pannello di configurazione di RetroShare: Opzioni-&gt;Server-&gt;Servizio Nascosto</p></body></html> + + + PGP key length Lunghezza chiave PGP - + Create new profile @@ -5937,7 +6338,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Currently disabled. Please move your mouse around until you reach at least 20% - + Attualmente disabilitato. Sei pregato di muovere il mouse finché non raggiungi almeno il 20% @@ -5945,7 +6346,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Clicca per creare il tuo nodo e/o profilo - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + [Richiesto] Indirizzo Tor/I2P — Eesempio: xa76giaf6ifda7ri63i263.onion (ottenuto da Tor) + + + [Required] This password protects your private PGP key. [Richiesto] La password protegge la tua chiave PGP. @@ -5954,7 +6360,8 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Enter a meaningful node description. e.g. : home, laptop, etc. This field will be used to differentiate different installations with the same profile (PGP key pair). - + Immetti una descrizione del nodo significativa, p.es.: casa, portatile, ecc. +Questo campo verrà impiegato per poter distinguere tra loro diverse installazioni aventi il medesimo profilo (coppia di chiavi PGP). @@ -5971,28 +6378,29 @@ the same profile (PGP key pair). Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + Altrimenti, per usare un profilo già esistente, despunta la voce "Crea nuovo profilo" Welcome to Retroshare. Before you can proceed you need to create a profile and associate a node with it. To do so please fill out this form. Alternatively you can import a (previously exported) profile. Just uncheck "Create a new profile" - + Benvenuto su RetroShare. Prima di continuare, devi creare un profilo ed associargli un nodo, compilando questo modulo. +Altrimenti, per importare un profilo (precedentemente esportato) despunta la voce "Crea nuovo profilo" No node is associated with the profile named - + Non ci sono nodi associati al profilo nominato Please create a node for it by providing a node name. - + Devi creargli un nodo, fornendo un nome per il nodo. Welcome to Retroshare. Before you can proceed you need to import a profile and after that associate a node with it. - + Benvenuto a RetroShare. Prima di procedere devi importare un profilo, e poi associarvi un nodo. @@ -6017,7 +6425,11 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Il tuo profilo è stato salvato +È criptato + +Ora puoi copiarlo su un altro PC e usare +il bottone IMPORT per caricarlo @@ -6027,7 +6439,7 @@ and use the import button to load it Your profile was not saved. An error occurred. - + Profilo non salvato. Si è verificato un errore. @@ -6042,7 +6454,7 @@ and use the import button to load it Your profile was not loaded properly: - + Il tuo profilo non è stato caricato correttamente: @@ -6052,23 +6464,28 @@ and use the import button to load it Your profile was imported successfully: - + Il tuo profilo è stato importato con successo: - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + Inserisci un indirizzo valido, nella forma: 31769173498.onion:7800 oppure [52 caratteri].b32.i2p + + + PGP key pair generation failure - + Generazione coppia chiavi PGP fallita - + Profile generation failure Generazione profilo fallita - + Missing PGP certificate Manca certificato PGP @@ -6077,27 +6494,14 @@ and use the import button to load it Generating new PGP key pair, please be patient: this process needs generating large prime numbers, and can take some minutes on slow computers. Fill in your PGP password when asked, to sign your new key. - + Generazione nuova coppia chiavi PGP, si prega di pazientare: questo processo genera grandi numeri primi e può richiedere alcuni minuti sui computer lenti. + +Compila la tua password PGP quando richiesto, per firmare la nuova chiave. You can create a new profile with this form. - - - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - + Con questo modulo, è possibile creare un nuovo profilo. @@ -6257,29 +6661,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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"> -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:12pt;">Quando i tuoi amici ti mandano i loro inviti, fai clic sopra di essi per aprire la finestra di aggiunta amici.</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: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-size:12pt;">Taglia e incolla l' &quot;Certificato ID&quot; dei tuoi amici all'interno della finestra e aggiungili come amici.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + - - Connect To Friends - Connetti con amici - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6290,26 +6683,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-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-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-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"> -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:12pt;">Siate online nello stesso momento e Retroshare vi connetterà automaticamente!</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: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-size:12pt;">Il tuo client ha bisogno di trovare la Rete Retroshare prima di poter fare connessioni.</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:12pt;">Questo processo richiede 5-30 minuti la prima volta che avvii 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: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-size:12pt;">L'indicatore DHT (nella Barra di Stato) diventa verde quando può effettuare connessioni.</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: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-size:12pt;">Dopo un paio di minuti, l'indicatore NAT (anch'esso nella barra di stato) cambia da giallo a verde.</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:12pt;">Se rimane rosso, allora hai un Firewall malvagio, e retroshare fa fatica a connettersi attraverso di esso.</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: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-size:12pt;">Guarda nella sezione ulteriore di aiuto per più consigli sulla connessione.</span></p></body></html> + - - Advanced: Open Firewall Port - Avanzate: Apri porta nel firewall + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6317,47 +6708,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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">⏎ -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:12pt;">Puoi migliorare le prestazioni di Retroshare aprendo una porta esterna. </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:12pt;">Questo velocizzerà le connessioni e permetterà un maggior numero di connessioni verso di te </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: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-size:12pt;">Il modo più semplice per fare questo è abilitare UPnP sul tuo 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-size:12pt;">Visto che ogni router è diverso devi trovare il tuo modello e cercare maggiori istruzioni su Google.</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: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-size:12pt;">Non ti preoccupare se tutto ciò non ha senso, Retroshare funzionerà comunque.</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: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-size:8pt;"></p></body></html> - - - - Further Help and Support - Ulteriore aiuto e supporto - - - - <!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: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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6366,7 +6723,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + Connetti con amici + + + + Advanced: Open Firewall Port + Avanzate: Apri porta nel firewall + + + + Further Help and Support + Ulteriore aiuto e supporto + + + Open RS Website Apri il sito di RS @@ -6448,7 +6820,7 @@ p, li { white-space: pre-wrap; } It has many features, including built-in chat, messaging, - + Ha molte funzionalità, come conversazioni integrate, messaggerie, @@ -6459,80 +6831,102 @@ p, li { white-space: pre-wrap; } Statistiche del router - + + GroupBox + + + + + ID + ID + + + + Identity Name + + + + + Destinaton + Destinazione + + + + Data status + Stato dati + + + + Tunnel status + Stato tunnel + + + + Data size + Dimensione dati + + + + Data hash + + + + + Received + Ricevuto + + + + Send + Invia + + + + Branching factor + + + + + Details + + + + Unknown Peer Contatto sconosciuto + + + Pending packets + Pacchetti in attea + + + + Unknown + Scononsciuto + GlobalRouterStatisticsWidget - - Pending packets - Pacchetti in attea - - - + Managed keys - + Chiavi gestite - + Routing matrix ( - - Id - ID - - - - Destination - Destinazione - - - - Data status - Stato dati - - - - Tunnel status - Stato tunnel - - - - Data size - Dimensione dati - - - - Data hash + + [Unknown identity] - - Received - Ricevuto - - - - Send - Invia - - - + : Service ID = - - - - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Clicco e trascina in giro i nodi, zoomma con la rotella del mouse o con i tasti '+' e '-' + : ID Servizio = @@ -6627,22 +7021,22 @@ p, li { white-space: pre-wrap; } All friend nodes can browse this directory - + Tutti i tuoi nodi amici possono sfogliare questa cartella Only friend nodes in groups %1 can browse this directory - + Solo i nodi amici nei gruppi %1 puossono sfogliare questa cartella All friend nodes can relay anonymous tunnels to this directory - + Tutti i nodi amici possono fare relé per tunnel anonimi a questa cartella Only friend nodes in groups - + Solo i nodi amici nei gruppi @@ -6683,22 +7077,22 @@ p, li { white-space: pre-wrap; } Share channel admin permissions - + Condividi i permessi amministrativi del canale Share forum admin permissions - + Condividi i permessi amministrativi del forum You can let your friends know about your forum by sharing it with them. Select the friends with which you want to share your forum. - + Puoi far sapere agli amici del tuo forum condividendolo con loro. Seleziona gli amici con cui vuoi condividere il forum. Share topic admin permissions - + Condividi i permessi amministrativi dell’argomento @@ -6708,13 +7102,13 @@ p, li { white-space: pre-wrap; } You can allow your friends to publish in your channel and to modify the description. Or you can send the admin permissions to another Retroshare instance. Select the friends which you want to be allowed to publish in this channel. Note: it is not possible to revoke channel admin permissions. - + Puoi consentire ai tuoi amici di pubblicare sul tuo canale e modificarnee la descrizione. Oppure puoi inviare i permessi amministrativi ad un’altra istanza RetroShare. Seleziona gli amici a cui vuoi consentire di pubblicare su questo canale. Nota: non è possibile revocare i permessi amministrativi del canale. GroupTreeWidget - + Title Titolo @@ -6734,7 +7128,7 @@ p, li { white-space: pre-wrap; } Ricerca descrizione - + Sort by Name Ordina per nome @@ -6748,26 +7142,31 @@ p, li { white-space: pre-wrap; } Sort by Last Post Ordina per post recente + + + Sort by Posts + + Display Mostra - + You have admin rights Hai i permessi di amministratore Subscribe to download and read messages - + Iscriviti per scaricare e leggere i messaggi GuiExprElement - + and e @@ -6865,7 +7264,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Canali @@ -6876,17 +7275,22 @@ p, li { white-space: pre-wrap; } Cra canale - + Enable Auto-Download Abilita scaricamento automatico - + My Channels Miei canali - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>I canali consentono di postare dati (p.es. film, musica) che si diffonderanno nella rete.</p><p>Puoi vedere i canali a cui sono iscritti i tuoi amici, e tu inoltri automaticamente ai tuoi amici i canali a cui sei iscritto. Questo aiuta a pruomuovere nella rete i canali buoni.</p><p>Solo il creatore di un canale può pubblicare su di esso. Gli altri contatti nella rete possono solo leggervi, a meno che il canale non sia privato. Però puoi condividere i privilegi di pubblicazione o lettura con i tuoi nodi di RetroShare amici.</p><p>I canali possono essere resi anonimi, oppure collegarli ad un’identità RetroShare di modo che i lettori possano contattarti alla bisogna. Se vuoi consentire agli utenti di commentare i tuoi post, abilita "Autorizza Commenti".</p><p>I post nei canali vengono cancellati dopo %1 mesi.</p> + + + Subscribed Channels Canali sottoscritti @@ -6901,14 +7305,30 @@ p, li { white-space: pre-wrap; } Altri canali - + + Select channel download directory + Seleziona la cartella di download per il canale + + + Disable Auto-Download Annulla scaricamento automatico - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> - + + Set download directory + Imposta la cartella di download + + + + + [Default directory] + [Cartella predefinita] + + + + Specify... + Specifica... @@ -6956,12 +7376,12 @@ p, li { white-space: pre-wrap; } Are you sure that you want to cancel and delete the file? - + Sei sicuro di voler annullare ed eliminare questo file? Can't open folder - + Non è possibile aprire la cartella @@ -7249,7 +7669,7 @@ p, li { white-space: pre-wrap; } Nessun Canale Selezionato - + Disable Auto-Download Disabilita Download Automatico @@ -7269,7 +7689,7 @@ p, li { white-space: pre-wrap; } Mostra files - + Feeds Dispaccio @@ -7279,7 +7699,7 @@ p, li { white-space: pre-wrap; } Files - + Subscribers Iscritti @@ -7291,7 +7711,7 @@ p, li { white-space: pre-wrap; } Posts (at neighbor nodes): - + Posts (a nodi adiacenti): @@ -7415,7 +7835,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:12pt; font-weight:600;">Comment</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//IT" "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:12pt; font-weight:600;">Commento</span></p></body></html> @@ -7438,7 +7862,7 @@ prima che tu possa commentare GxsForumGroupDialog - + Create New Forum Crea nuovo Forum @@ -7570,12 +7994,12 @@ prima che tu possa commentare Modulo - + Start new Thread for Selected Forum Avvia un nuovo argomento nel forum selezionato - + Search forums Ricerca forums @@ -7596,7 +8020,7 @@ prima che tu possa commentare - + Title Titolo @@ -7609,13 +8033,18 @@ prima che tu possa commentare - + Author Autore - - + + Save image + + + + + Loading Sto caricando @@ -7645,7 +8074,7 @@ prima che tu possa commentare Successivo non letto - + Search Title Ricerca Titolo @@ -7670,17 +8099,27 @@ prima che tu possa commentare Ricerca di contenuti - + No name Nessun nome - + Reply Rispondi + Ban this author + Blocca questo autore + + + + This will block/hide messages from this person, and notify neighbor nodes. + Questo bloccherà/nasconderà i messaggi da questa persona, e notificherà i nodi vicini. + + + Start New Thread Inizio nuovo argomento @@ -7718,7 +8157,7 @@ prima che tu possa commentare Copia collegamento RetroShare - + Hide Nascondi @@ -7728,7 +8167,38 @@ prima che tu possa commentare Allarga - + + This message was obtained from %1 + + + + + [Banned] + [Bloccato] + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + [ ... Messaggio Redatto ... ] + + + Anonymous Anonimo @@ -7748,29 +8218,55 @@ prima che tu possa commentare [ ... Messaggio Perso ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + <p><font color="#ff0000"><b>L’autore di questo messaggio (con ID %1) è bloccato.</b> + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + <UL><li><b><font color="#ff0000">I messaggi da questo autore non vengono inoltrati. </font></b></li> + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + <li><b><font color="#ff0000">I messaggi da questo autore vengono rimpiazzati con questo testo. </font></b></li></ul> + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Forum non Selezionato! - + + + You cant reply to a non-existant Message Non puoi rispondere a un messaggio inesistente + You cant reply to an Anonymous Author Non puoi rispondere a un autore anonimo - + Original Message Messaggio Originale @@ -7795,7 +8291,7 @@ prima che tu possa commentare Il %1, %2 ha scritto: - + Forum name Nome forum @@ -7807,10 +8303,10 @@ prima che tu possa commentare Posts (at neighbor nodes) - + Posts (a nodi adiacenti) - + Description Descrizione @@ -7820,12 +8316,12 @@ prima che tu possa commentare Da - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + <p>L’iscrizione al forum raccoglierà tutti i post disponibili dei tuoi amici iscritti, e renderà il forum visibile a tutti gli altri amici.</p><p>In seguito potrai annullare l’iscrizione tramite il menù contestuale della lista del forum, sulla sinistra.</p> - + Reply with private message Rispondi con un messaggio privato @@ -7841,7 +8337,12 @@ prima che tu possa commentare GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;I Forum</h1> ⇥⇥⇥<p>I Forum di RetroShare assomigliano ai forum di Internet, ma funzionano in maniera decentralizzata</p> <p>Puoi vedere i forum a cui sono iscritti i tuoi amici, ed inoltrerai ai tuoi amici i forum a cui sei iscritto. Questo sistema promuove automaticamente all'interno della rete i forum interessanti.</p> <p>I messaggi dei forum vengono cancellati dopo %1 mesi.</p> + + + Forums Forums @@ -7871,11 +8372,6 @@ prima che tu possa commentare Other Forums Altri froum - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7898,13 +8394,13 @@ prima che tu possa commentare GxsGroupDialog - - + + Name Nome - + Add Icon Aggiungi icona @@ -7919,7 +8415,7 @@ prima che tu possa commentare Condividi chiave pubblicazione - + check peers you would like to share private publish key with verifica i contatti con cui vuoi condividere la chiave privata di pubblicazione @@ -7929,36 +8425,36 @@ prima che tu possa commentare Condividi chiave con - - + + Description Descrizione - + Message Distribution Distribuzione messaggio - + Public Pubblico - - + + Restricted to Group Limitato al gruppo - - + + Only For Your Friends Solo per i tuoi amici - + Publish Signatures Pubblicare le firme @@ -7988,7 +8484,7 @@ prima che tu possa commentare Firme personali - + PGP Required PGP necessaria @@ -8004,12 +8500,12 @@ prima che tu possa commentare - + Comments Commenti - + Allow Comments Consenti i commenti @@ -8019,35 +8515,75 @@ prima che tu possa commentare Senza Commenti - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Contatti: - + Please add a Name Aggiungi un Nome - + Load Group Logo caricamento Logo Gruppo - + Submit Group Changes - + Applica Modifiche al Gruppo - + Failed to Prepare Group MetaData - please Review - + Non è stato possibile preparare i MetaDati del Gruppo — procedi con la Revisione - + Will be used to send feedback - + Verrà utilizzato per inviare feedback @@ -8055,24 +8591,24 @@ prima che tu possa commentare Proprietario: - + Set a descriptive description here - + Inserisci qui una descrizione - + Info Info Comments allowed - + Commenti autorizzati Comments not allowed - + Commenti non autorizzati @@ -8133,7 +8669,7 @@ prima che tu possa commentare Anteprima stampa - + Unsubscribe Esci @@ -8143,12 +8679,12 @@ prima che tu possa commentare Entra - + Open in new tab Apri in nuova scheda - + Show Details Mostra Dettagli @@ -8173,20 +8709,20 @@ prima che tu possa commentare Segna tutti come da leggere - + AUTHD AUTHD - + Share admin permissions - + Condividi permessi amministrativi GxsIdChooser - + No Signature Nessuna firma @@ -8199,7 +8735,7 @@ prima che tu possa commentare GxsIdDetails - + Loading Sto caricando... @@ -8214,8 +8750,15 @@ prima che tu possa commentare Nessuna firma - + + + + [Banned] + [Bloccato] + + + Authentication Autenticazione @@ -8230,22 +8773,22 @@ prima che tu possa commentare Anonimo - + Identity&nbsp;name - + Nome&nbsp;dell’identità Identity&nbsp;Id - + ID&nbsp;dell’identità Signed&nbsp;by - + Firmato&nbsp;da - + [Unknown] [Scononsciuto] @@ -8263,6 +8806,49 @@ prima che tu possa commentare Nessun nome + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8447,7 +9033,7 @@ prima che tu possa commentare Error Loading Help Contents: - + Errore durante il caricamento della Guida @@ -8458,28 +9044,7 @@ prima che tu possa commentare A proposito di - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors Autori @@ -8527,12 +9092,46 @@ 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;">Swedish: </span><span style=" font-size:8pt;"> Daniel Wester</span><span style=" font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-size:8pt;">wester@speedmail.se</span><span style=" 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-size:8pt; font-weight:600;">German: </span><span style=" font-size:8pt;">Jan</span><span style=" font-size:8pt; font-weight:600;"> </span><span style=" font-size:8pt;">Keller</span> &lt;<span style=" font-size:8pt;">trilarion@users.sourceforge.net</span>&gt;</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-weight:600;">Polish: </span>Maciej Mrug</p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//IT" "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-size:8pt; font-weight:600;">Traduzioni di 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;"><a href="http://retroshare.sourceforge.net/wiki/index.php/Translation"><span style=" text-decoration: underline; color:#0000ff;">http://retroshare.sourceforge.net/wiki/index.php/Translation</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; 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;"></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;">Traduttori del sito web di 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; 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-size:8pt; font-weight:600;">Svedese: </span><span style=" font-size:8pt;"> Daniel Wester</span><span style=" font-size:8pt; font-weight:600;"> &lt;</span><span style=" font-size:8pt;">wester@speedmail.se</span><span style=" 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-size:8pt; font-weight:600;">Tedesco: </span><span style=" font-size:8pt;">Jan</span><span style=" font-size:8pt; font-weight:600;"> </span><span style=" font-size:8pt;">Keller</span> &lt;<span style=" font-size:8pt;">trilarion@users.sourceforge.net</span>&gt;</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-weight:600;">Polacco: </span>Maciej Mrug</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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> - + Libraries - + Librerie @@ -8565,26 +9164,26 @@ p, li { white-space: pre-wrap; } Error opening help file: - + Errore apertura file di aiuto: IdDetailsDialog - + Person Details - + Dettagli Persona Identity Info - + Info sull’Identità Owner node ID : - + ID nodo proprietario : @@ -8594,91 +9193,101 @@ p, li { white-space: pre-wrap; } Owner node name : - + Nome nodo proprietario : Identity name : - + Nome dell’identità : Identity ID : - + ID dell’identità : - + + Last used: + Ultimo utilizzo: + + + Your Avatar Click here to change your avatar Il Tuo Avatar - + Reputation Reputazione - - Overall - + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + <html><head/><body><p>Opinione media dei nodi adiacenti riguardo questa identità. Negativa è male,</p><p>positiva è buono. Zero è neutrale.</p></body></html> - - Implicit - - - - - Opinion - Opinone - - - - Peers - Contatti - - - - Edit Reputation - Modificare reputazione - - - - Tweak Opinion - - - - - Accept (+100) - Accetta (+100) + + Your opinion: + La tua opinione: - Positive (+10) - Positivo (+10) + Neighbor nodes: + Nodi adiacenti: - Negative (-10) - Negativo (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> + - - Ban (-100) - Ban (-100) + + Negative + Negativo - Custom - Personalizzato + Neutral + Neutrale - - Modify - Modifica + + Positive + Positivo - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + <html><head/><body><p>Punteggio complessivo della reputazione, tenendo conto del tuo voto e quello dei tuoi amici.</p><p>Negativo è male, positivo è bene. Zero è neutrale. Se il punteggio è troppo basso, l’identità viene marchiata come pessima, e sarà filtrata via nei forum, nelle aree di conversazione, nei canali, ecc.</p></body></html> + + + + Overall: + Complessivo: + + + Unknown real name Nome reale sconosciuto @@ -8690,64 +9299,85 @@ p, li { white-space: pre-wrap; } Identity owned by you, linked to your Retroshare node - + Identità di tua proprietà, collegata al tuo nodo Retroshare Anonymous identity, owned by you - + Identità anonima, appartenente a te Owned by a friend Retroshare node - + Appartenente ad un nodo RetroShare tuo amico Owned by 2-hops Retroshare node - + Appartenente ad un nodo RetroShare a 2-balzi Owned by unknown Retroshare node - + Appartenente ad un nodo RetroShare sconosciuto Anonymous identity - + Identità anonima + + + + +50 Known PGP + +50 PGP Conosciuta + + + + +10 UnKnown PGP + +10 PGP Sconosciuta + + + + +5 Anon Id + +5 ID Anonima + + + + OK + OK + + + + Banned + Bloccato IdDialog - + New ID Nuovo ID - + + All Tutto - + + Reputation Reputazione - - - Todo - Da fare - - Search Cerca - + Unknown real name Nome reale sconosciuto @@ -8757,130 +9387,87 @@ p, li { white-space: pre-wrap; } Id Anonimo - + Create new Identity Crea nuova identità - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - Opinone - - - - Peers - Contatti - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - Accetta (+100) - - - - Positive (+10) - Positivo (+10) - - - - Negative (-10) - Negativo (-10) - - - - Ban (-100) - Ban (-100) - - - - Custom - Personalizzato - - - - Modify - Modifica - - - + Edit identity - + Modifica Identità Delete identity - + Cancella identità Chat with this peer - + Conversa con questo contatto Launches a distant chat with this peer - + Avvia una conversazione a distanza con questo contatto - - Identity name - - - - + Owner node ID : - + ID nodo proprietario : - + Identity name : + Nome dell’identità : + + + + () - + Identity ID - + ID dell'identità - + Send message - + Invia Messaggio - + Identity info - + Info sull'identità - + Identity ID : - + ID dell’identità : - + Owner node name : - + Nome nodo proprietario : @@ -8888,71 +9475,181 @@ p, li { white-space: pre-wrap; } Tipo: - - Owned by you + + Send Invite + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + <html><head/><body><p>Opinione media dei nodi adiacenti riguardo questa identità. Negativa è male,</p><p>positiva è buono. Zero è neutrale.</p></body></html> + + + + Your opinion: + La tua opinione: + + + + Neighbor nodes: + Nodi adiacenti: + + + + Negative + Negativo + + + + Neutral + Neutrale + + + + Positive + Positivo + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + <html><head/><body><p>Punteggio complessivo della reputazione, tenendo conto del tuo voto e quello dei tuoi amici.</p><p>Negativo è male, positivo è bene. Zero è neutrale. Se il punteggio è troppo basso, l’identità viene marchiata come pessima, e sarà filtrata via nei forum, nelle aree di conversazione, nei canali, ecc.</p></body></html> + + + + Overall: + Complessivo: + + + + Contacts + + + + + Owned by you + Appartiene a te + Anonymous Anonimo - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - - This identity is owned by you + + Search ID + + + This identity is owned by you + Questa identità ti appartiene + Unknown PGP key - + Chiave PGP sconosciuta Unknown key ID - + ID chiave sconosciuta - + Identity owned by you, linked to your Retroshare node - + Identità di tua proprietà, collegata al tuo nodo Retroshare Anonymous identity, owned by you - + Identità anonima, appartenente a te Anonymous identity + Identità anonima + + + + OK + OK + + + + Banned + Bloccato + + + + Add to Contacts - - Distant chat cannot work + + Remove from Contacts + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + + Distant chat cannot work + La conversazione a distanza non può funzionare + Error code Codice errore - - - - - People + + Hi,<br>I want to be friends with you on RetroShare.<br> - + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + + + People + Persone + + + Your Avatar Click here to change your avatar Il Tuo Avatar @@ -8965,109 +9662,92 @@ p, li { white-space: pre-wrap; } Linked to neighbor nodes - + Collegato a nodi adiacenti Linked to distant nodes + Collegato a nodi distanti + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - + Linked to a friend Retroshare node - + Collegato a un nodo RetroShare tuo amico Linked to a known Retroshare node - + Collegato a un nodo RetroShare noto Linked to unknown Retroshare node - + Collegato a un nodo RetroShare sconosciuto - + Chat with this person - + Conversa con questa persona Chat with this person as... - + Conversa con questa persona come... - - Send message to this person - - - - - Columns - Colonne - - - + Distant chat refused with this person. - + Conversazione a distanza con questa persona: rifiutata. Last used: - + Ultimo utilizzo: - + +50 Known PGP - + +50 PGP Conosciuta +10 UnKnown PGP - + +10 PGP Sconosciuta +5 Anon Id - + +5 ID Anonima - + Do you really want to delete this identity? - + Vuoi davvero eliminare questa identità? - + Owned by - + Appartenente a - - - Show - - - - - - column - - - - + Node name: - + Nome nodo: Node Id : - + ID Nodo : - + Really delete? - + Cancellare davvero? @@ -9108,8 +9788,8 @@ p, li { white-space: pre-wrap; } Nuova identità - - + + To be generated Da generare @@ -9117,7 +9797,7 @@ p, li { white-space: pre-wrap; } - + @@ -9127,13 +9807,13 @@ p, li { white-space: pre-wrap; } N/D - + Edit identity Modifica Identità - + Error getting key! Errore ricevendo la chiave! @@ -9153,9 +9833,9 @@ p, li { white-space: pre-wrap; } Nome reale sconosciuto - + Create New Identity - + Crea Nuova Identità @@ -9200,22 +9880,22 @@ p, li { white-space: pre-wrap; } Linked to your profile - + Collegato al tuo profilo You can have one or more identities. They are used when you write in chat lobbies, forums and channel comments. They act as the destination for distant chat and the Retroshare distant mail system. - + Puoi avere una o più identità. Vengono impiegate quando scrivi nelle aree di discussione, sui forum e per i commenti nei canali. Fungono da destinazione per le conversazioni a distanza e per il sistema postale a distanza di RetroShare. - + The nickname is too short. Please input at least %1 characters. - + Nickname troppo corto. Inserisci almeno %1 caratteri. The nickname is too long. Please reduce the length to %1 characters. - + Nickname troppo lungo. Riducilo a %1 caratteri. @@ -9245,25 +9925,25 @@ p, li { white-space: pre-wrap; } GXS name: - + Nome GXS: PGP name: - + Nome PGP: GXS id: - + id GXS: PGP id: - + id PGP: @@ -9276,7 +9956,7 @@ p, li { white-space: pre-wrap; } - + Copy Copia @@ -9306,16 +9986,35 @@ p, li { white-space: pre-wrap; } Invia + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Aprire file - + Open Folder Apri cartella @@ -9325,7 +10024,7 @@ p, li { white-space: pre-wrap; } Modificare le autorizzazioni di condivisione - + Checking... Verifica... @@ -9374,7 +10073,7 @@ p, li { white-space: pre-wrap; } - + Options Opzioni @@ -9408,12 +10107,12 @@ p, li { white-space: pre-wrap; } Auto configuratore rapido - + RetroShare %1 a secure decentralized communication platform RetroShare %1 una piattaforma di comunicazione sicura decentralizzata - + Unfinished Non finito @@ -9449,7 +10148,12 @@ Libera un po' di spazio e clicca OK. Notifica - + + Open Messenger + Apri Messenger + + + Open Messages Apri messaggi @@ -9499,7 +10203,7 @@ Libera un po' di spazio e clicca OK. %1 nuovi messaggi - + Down: %1 (kB/s) Scollegato: %1 (kB/s) @@ -9561,7 +10265,7 @@ Libera un po' di spazio e clicca OK. ServicePermissions - + PermessiServizio @@ -9569,7 +10273,7 @@ Libera un po' di spazio e clicca OK. Matrice dei permessi sui servizi - + Add Aggiungi @@ -9581,12 +10285,12 @@ Libera un po' di spazio e clicca OK. Show web interface - + Mostra interfaccia web The disk space in your - + Lo spazio disco nella tua @@ -9594,47 +10298,26 @@ Libera un po' di spazio e clicca OK. - + Really quit ? - + Uscire davvero? MessageComposer - + Compose Componi - - + Contacts Contatti - - >> To - >> A - - - - >> Cc - >> Cc - - - - >> Bcc - >> Bcc - - - - >> Recommend - >> Raccomanda - - - + Paragraph Paragrafo @@ -9715,7 +10398,7 @@ Libera un po' di spazio e clicca OK. Sottolinea - + Subject: Oggetto: @@ -9726,22 +10409,32 @@ Libera un po' di spazio e clicca OK. - + Tags Etichette - - Set Text color + + Address list: + + + Recommend this friend + + + + + Set Text color + Imposta colore del testo + Set Text background color - + Imposta colore di sfondo del testo - + Recommended Files Files raccomandati @@ -9811,7 +10504,7 @@ Libera un po' di spazio e clicca OK. Aggiungi citazione - + Send To: Invia a: @@ -9836,47 +10529,22 @@ Libera un po' di spazio e clicca OK. &J - Giustifica - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Ciao, <br>ti raccomando un mio buon amico; ci si può fidare di lui quanto di me. <br> @@ -9903,12 +10571,12 @@ Libera un po' di spazio e clicca OK. - + Save Message Salva messaggio - + Message has not been Sent. Do you want to save message to draft box? Messaggio non inviato @@ -9920,7 +10588,7 @@ Vuoi salvarlo nelle bozze? Incolla collegamento RetroShare - + Add to "To" Aggiungi in "A:" @@ -9940,12 +10608,7 @@ Vuoi salvarlo nelle bozze? Aggiungi come raccomandato - - Friend Details - Dettagli amici - - - + Original Message Messaggio Originale @@ -9955,19 +10618,21 @@ Vuoi salvarlo nelle bozze? Da - + + To A - + + Cc CC - + Sent Inviato @@ -10009,12 +10674,13 @@ Vuoi salvarlo nelle bozze? Inserisci almeno un destinatario. - + + Bcc BCC - + Unknown Scononsciuto @@ -10124,7 +10790,12 @@ Vuoi salvarlo nelle bozze? &Formato - + + Details + Dettagli + + + Open File... Apri file ... @@ -10172,12 +10843,7 @@ Vuoi salvarlo? Aggiungi File Extra - - Show: - Mostra - - - + Close Chiudi @@ -10187,55 +10853,100 @@ Vuoi salvarlo? Da: - - All - Tutti - - - + Friend Nodes - + Nodi Amici - - Person Details - + + Bullet list (disc) + Elenco puntato (disco) - - Distant peer identities - + + Bullet list (circle) + Elenco puntato (cerchio) - + + Bullet list (square) + Elenco puntato (quadrato) + + + + Ordered list (decimal) + Elenco ordinato (decimali) + + + + Ordered list (alpha lower) + Elenco ordinato (alfa minuscolo) + + + + Ordered list (alpha upper) + Elenco ordinato (alfa maiuscolo) + + + + Ordered list (roman lower) + Elenco ordinato (romani minuscolo) + + + + Ordered list (roman upper) + Elenco ordinato (romani maiuscolo) + + + Thanks, <br> Grazie, <br> - + Distant identity: - + Identità distante: [Missing] - + [Mancante] Please create an identity to sign distant messages, or remove the distant peers from the destination list. - + Devi crearti un’identità per firmare i messaggi a distanza, altrimenti rimuovi i contatti a distanza dalla lista di destinazione. Node name & id: - + Nome & ID nodo: MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Lettura @@ -10250,7 +10961,7 @@ Vuoi salvarlo? Apri messaggio in - + Tags Etichette @@ -10290,7 +11001,7 @@ Vuoi salvarlo? Una nuova finestra - + Edit Tag Modifica etichetta @@ -10300,24 +11011,14 @@ Vuoi salvarlo? Messaggio - + Distant messages: - + Messaggi distanti: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images - + Carica immagini incorporate @@ -10447,17 +11148,17 @@ Vuoi salvarlo? Load images always for this message - + Carica sempre le immagini per questo messaggio Hide the attachment pane - + Nascondi pannello allegati Show the attachment pane - + Mostra pannello allegati @@ -10596,7 +11297,7 @@ Vuoi salvarlo? MessagesDialog - + New Message Nuovo messaggio @@ -10663,24 +11364,24 @@ Vuoi salvarlo? - + Tags Etichette - - - + + + Inbox Casella di posta: - - + + Outbox In spedizione @@ -10692,14 +11393,14 @@ Vuoi salvarlo? - + Sent Inviato - + Trash Cestino @@ -10768,7 +11469,7 @@ Vuoi salvarlo? - + Reply to All Rispondi a tutti @@ -10786,12 +11487,12 @@ Vuoi salvarlo? - + From Da - + Date Data @@ -10819,12 +11520,12 @@ Vuoi salvarlo? - + Click to sort by from Clicca per ordinare per mittente - + Click to sort by date Clicca per ordinare per data @@ -10880,7 +11581,12 @@ ricerca Ricerca allegati - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messaggi</h1> <p>RetroShare ha un suo sistema postale email interno. Puoi inviare/ricevere email a/da nodi amici a cui sei connesso.</p> <p>È altresì possibile inviare messaggi alle Identità altrui utilizzando il sistema di instradazione globale. Questi messaggi sono sempre crittografati e firmati, e vengono reinstradati da nodi intermedi finché non raggiungono la destinazione finale.</p> <p>I messaggi a distanza rimangono nella tua Casella in Uscita fin quando non ricevono una ricevuta di confermata consegna.</p> <p>Generalmente, puoi utilizzare i messaggi per raccomandare file ai tuoi amici, incollandovi i link ai file, o per raccomandare nodi amici ad altri nodi amici, al fine di irrobustire la tua rete, o per inviare un feedback al titolare di un canale.</p> + + + Starred Evidenziato @@ -10945,14 +11651,14 @@ ricerca Vuota cestino - - + + Drafts Bozze - + 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 gray star beside any message. Messaggi speciali non disponibili. I contrassegni (star) consentono di dare ai messaggi uno status speciale per renderli più facili da trovare. Per contrassegnare un messaggio, fare clic sulla stella grigia accanto a un qualsiasi messaggio. @@ -10972,7 +11678,12 @@ ricerca Clicca per ordinare per - + + This message goes to a distant person. + + + + @@ -10981,35 +11692,30 @@ ricerca Totale: - + Messages Messaggi - + Click to sort by signature Clicca per ordinare per firma - + This message was signed and the signature checks - + Questo messaggio è stato firmato, e la firma corrisponde This message was signed but the signature doesn't check - + Questo messaggio è stato firmato, ma la firma non corrisponde - + This message comes from a distant person. - - - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - + Questo messaggio proviene da una persona distante @@ -11033,7 +11739,22 @@ ricerca MimeTextEdit - + + Paste as plain text + Incolla come testo non formattato + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link Incolla Collegamento Retroshare @@ -11067,7 +11788,7 @@ ricerca - + Expand Allarga @@ -11110,7 +11831,7 @@ ricerca <strong>NAT:</strong> - + Network Status Unknown Stato rete sconosciuto @@ -11154,26 +11875,6 @@ ricerca Forwarded Port Porta rinviata - - - OK | RetroShare Server - OK | Server RetroShare - - - - Internet connection - Connessione Internet - - - - No internet connection - Nessuna connessione internet - - - - No local network - Nessuna rete locale - NetworkDialog @@ -11287,7 +11988,7 @@ ricerca ID contatto - + Deny friend Rifiuta amico @@ -11352,7 +12053,7 @@ Per sicurezza, il tuo portachiavi è stato precedentemente salvato su di un file Impossibile creare il file di salvataggio, Controlla i permessi sulla cartella di pgp, lo spazio sul disco, ecc. - + Personal signature Firma personale @@ -11419,81 +12120,83 @@ Clic-destro e seleziona 'fatti amico' per poterti connettere.te stesso - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Inconsistenza nei dati nel portachiavi. Questo è molto probabilmente un bug. Per favore contatta gli sviluppatori. Export/create a new node - + Esporta/crea un nuovo nodo Trusted keys only - + Solo chiavi fidate - + Trust level - + Livello fiducia Do you accept connections signed by this key? - + Accetti connessioni firmate con questa chiave? Name of the key - + Nome della chiave Certificat ID - + ID del certificato - + Make friend... - + Diventa amico... - + Did peer authenticate you This column indicates trust level and whether you signed their PGP key - + Questa colonna riporta il livello di fiducia e se tu hai firmato o no la loro chiave PGP Did that peer sign your PGP key - + Questo contatto ha firmato la tua chiave PGP Since when I use this certificate - + Da quando utilizzo questo certificato Search name - + Cerca nome Search peer ID - + Ricerca ID contatto - + Key removal has failed. Your keyring remains intact. Reported error: - + La rimozione della chiave è fallita. Il tuo portachiavi è rimasto intatto. + +Errore riportato: @@ -11524,7 +12227,7 @@ Reported error: Freeze - + Congela @@ -11558,7 +12261,7 @@ Reported error: NewsFeed - + News Feed Annuncio Notizie @@ -11577,24 +12280,24 @@ Reported error: This is a test. Questo è un test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed Annuncio notizie - + Newest on top - + Più recenti in cima Oldest on top + Più vecchi in cima + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> @@ -11672,7 +12375,7 @@ Reported error: Ip security - + Sicurezza IP @@ -11741,7 +12444,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notifica</h1> <p>Retroshare ti notificherà di ciò che succede nella tua rete. A seconda dell'uso che ne fai, potresti voler abilitare o disabilitare alcune notifiche. Questa pagina serve a tal scopo!</p> + + + Top Left In alto a sinistra @@ -11765,25 +12473,20 @@ Reported error: Notify Notifica - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters - + Disabilita tutte le notifiche del Toaster Posted - + Pubblicato Disable All Toaster temporarily - + Disabilita temporaneamente tutte le notifiche del Toaster @@ -11793,7 +12496,7 @@ Reported error: Systray - + Riquadro sistema @@ -11803,23 +12506,23 @@ Reported error: Count all unread messages - + Conta tutti i messaggi non letti Count occurences of any of the following texts (separate by newlines): - + Conteggia le ricorrenze di qualunque dei seguenti testi (separati su più righe): Count occurences of my current identity - + Conteggia le ricorrenze della mia identità attuale NotifyQt - + PGP key passphrase Parola d'ordine chiave PGP @@ -11859,7 +12562,7 @@ Reported error: Salvataggio indice file... - + Test Test @@ -11871,23 +12574,23 @@ Reported error: Unknown title - + Titolo sconosciuto - - + + Encrypted message - + Messaggio criptato - + Please enter your PGP password for key - + Si prega di inserire la password per la chiave PGP For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of several minutes was detected with your friends). - + Perché le aree di discussione funzionino correttamente, l'orario del tuo computer deve essere corretto. Per favore controlla che questo sia il tuo caso (Una probabile differenza di diversi minuti è stata rilevata con i tuoi amici). @@ -11932,55 +12635,47 @@ Modalità gioco: 25% traffico standard e TODO: popup ridotto Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti di file - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog Dialog - + Dialogo PGP Key info - + Info Chiave PGP PGP name : - + Nome PGP : Fingerprint : + Impronta : + + + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> - + Trust level: + Livello fiducia: + + + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> - + Unset - + Deimposta @@ -11990,7 +12685,7 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti No trust - + Nessuna fiducia @@ -12010,53 +12705,76 @@ Basso Traffico: 10% di traffico standard e TODO: sospende tutti i trasferimenti Key signatures : + Firme chiave : + + + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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">⏎ <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;">Controfirmando la chiave di un amico si esprime fiducia a questo amico davanti agli altri amici. D'altronde, solo i contatti controfirmati ricevono informazioni sugli altri amici di fiducia.</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;">Controfirmare una chiave non può essere annullato, perciò fallo accortamente.</p></body></html> - - - - Sign this PGP key +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + Sign this PGP key + Firma questa Chiave PGP + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Firma Chiave PGP - Deny connections + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + Deny connections + Rifiuta connessioni + - Accept connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + Accept connections + Accetta connessioni + ASCII format - + Formato ASCII + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Includi firme PGP Key details - + Dettagli Chiave PGP @@ -12081,12 +12799,12 @@ p, li { white-space: pre-wrap; } The trust level is a way to express your own trust in this key. It is not used by the software nor shared, but can be useful to you in order to remember good/bad keys. - + Il livello di fiducia è un modo per esprimere la fiducia che riponi in questa chiave. Non viene utilizzato dal programma, né viene condiviso, ma può esserti utile a ricordare le chiavi buone e quelle cattive. Your trust in this peer is ultimate - + La tua fiducia in questo contatto è massima @@ -12104,25 +12822,25 @@ p, li { white-space: pre-wrap; } La tua fiducia in questo contatto è nulla. - + This key has signed your own PGP key - + Questa chiave ha firmato la tua chiave PGP <p>This PGP key (ID= - + <p>Questa chiave PGP (ID= You have chosen to accept connections from Retroshare nodes signed by this key. - + Hai scelto di accettare connessioni da nodi RetroShare firmati con questa chiave. You are currently not allowing connections from Retroshare nodes signed by this key. - + Al momento non stai autorizzando connessioni da nodi RetroShare firmati con questa chiave. @@ -12137,17 +12855,17 @@ p, li { white-space: pre-wrap; } You haven't set a trust level for this key. - + Non hai impostato il livello di fiducia per questa chiave. This is your own PGP key, and it is signed by : - + Questa è la tua chiave PGP, ed è firmata da : This key is signed by : - + Questa chiave è firmata da : @@ -12272,18 +12990,18 @@ p, li { white-space: pre-wrap; } Send Message - + Invia Messaggio PeerStatus - + Friends: 0/0 Amici: 0/0 - + Online Friends/Total Friends Amici in linea/ Totale Amici @@ -12299,23 +13017,23 @@ p, li { white-space: pre-wrap; } People - + Persone External - + Esterno Drag your circles or people to each other. - + Trascina le tue cerchie o persone le une sulle altre. Internal - + Interno @@ -12644,37 +13362,37 @@ Altro... base folder %1 doesn't exist, default load failed - + la cartella di partenza %1 non esiste, caricamento di default fallito - + Error: instance '%1'can't create a widget - + Errore: l'istanza '%1' non può creare un widget Error: no plugin with name '%1' found - + Errore: non è stato trovato nessun plugin con nome '%1' Error(uninstall): no plugin with name '%1' found - + Errore(disinstallazione): non è stato trovato nessun plugin con nome '%1' Error(installation): plugin file %1 doesn't exist - + Errore(installazione): file di plugin '%1' inesistente Error: failed to remove file %1(uninstalling plugin '%2') - + Errore: non è stato possibile eliminare il file %1(disintallazione del plugin '%2') Error: can't copy %1 to %2 - + Errore: impossibile copiare %1 in %2 @@ -12708,19 +13426,19 @@ Altro... Autorizza tutti i moduli aggiuntivi - - Loaded plugins - Moduli aggiuntivi caricati - - - + Plugin look-up directories Cartella scorcio moduli aggiuntivi - - Hash rejected. Enable it manually and restart, if you need. - Segmento respinto. Attivarlo manualmente e riavviare, se c'è bisogno. + + Plugin disabled. Click the enable button and restart Retroshare + Plugin disattivato. Cliccare il bottone "attiva" e riavviare RetroShare. + + + + [disabled] + [disattivato] @@ -12728,27 +13446,36 @@ Altro... Nessun numero di API in dotazione. Si prega di leggere manuale di sviluppo plugin. - + + + + + + [loading problem] + [problema di caricamento] + + + No SVN number supplied. Please read plugin development manual. Nessun numero SVN in dotazione. Si prega di leggere manuale di sviluppo plugin. - + Loading error. Errore caricamento. - + Missing symbol. Wrong version? Simbolo errato. Versione sbagliata? - + No plugin object Nessun oggetto modulo aggiuntivo - + Plugins is loaded. Modulo aggiuntivo caricato. @@ -12758,22 +13485,7 @@ Altro... Stato sconosciuto. - - Title unavailable - Titolo non disponibile - - - - Description unavailable - Descrizione non disponibile - - - - Unknown version - Versione sconosciuta - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12783,15 +13495,16 @@ Su di essi non verrà effettuato il controllo dell'hash. Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin contraffatti. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;I Plugin</h1> <p>I plugins vengono caricati dalle cartelle elencate nella lista sottostante.</p><p>Per motivi di sicurezza, i plugin accettati vengono caricati automaticamente fino a quando non vengono modificati l'eseguibile principale di RetroShare o la libreria dei plugin. In tal caso, l'utente dovrà riconfermarli. Dopo l'avvio del programma, puoi abilitare manualmente un plugin cliccando sul bottone "Abilita" e riavviando RetroShare.</p> <p>Se vuoi sviluppare un tuo plugin, contatta il team degli sviluppatori, saranno felici di aiutarti!</p> + + + Plugins Moduli aggiuntivi - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - PopularityDefs @@ -12859,12 +13572,17 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. La persona con cui stai parlando ha chiuso il tunnel sicuro. Dovresti chiudere la finestra di chat adesso. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Chiudere questa finestra terminerà la conversazione, verrà notificato all'altro peer e rimuoverà il tunnel cifrato. @@ -12874,19 +13592,14 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Terminare il tunnel? - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. - + Impossibile inviare il messaggio: non c’è nessun tunnel. Can't send message, because the chat partner deleted the secure tunnel. - + Impossibile inviare il messaggio: il compagno di chat ha eliminato il tunnel sicuro. @@ -12919,7 +13632,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin You are submitting a link. The key to a successful submission is interesting content and a descriptive title. - + Stai proponendo un link. La chiave per una proposizione di successo è: contenuti interessanti, e un titolo descrittivo. @@ -12929,12 +13642,12 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Submit a new Post - + Invia un nuovo Post Please add a Title - + Aggiungi un Titolo @@ -12944,7 +13657,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Link - + Collegamento @@ -12957,12 +13670,17 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Posted + Pubblicato + + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - + Create Topic - + Crea Argomento @@ -12984,11 +13702,6 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Other Topics Altri argomenti - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13010,17 +13723,17 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Create New Topic - + Crea Nuovo Argomento Edit Topic - + Modifica Argomento Update Topic - + Aggiorna Argomento @@ -13093,12 +13806,12 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Vote up - + Vota per Vote down - + Vota contro @@ -13186,7 +13899,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Submit a new Post - + Invia un nuovo Post @@ -13211,7 +13924,7 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin 1-10 - + 1-10 @@ -13224,12 +13937,12 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Posted - + Pubblicato Open each topic in a new tab - + Apri ciascun argomento in una nuova scheda @@ -13237,13 +13950,13 @@ Per il normale utilizzo abilitare il controllo dell'hash ti protegge plugin Posted - + Pubblicato PrintPreview - + RetroShare Message - Print Preview Messaggio RetroShare - Anteprima di stampa @@ -13390,12 +14103,12 @@ p, li { white-space: pre-wrap; } Full keys available in your keyring: - + Tutte le chiavi disponibili nel tuo portachiavi: Export selected key - + Esporta chiave selezionata @@ -13589,7 +14302,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Conferma @@ -13599,7 +14313,7 @@ p, li { white-space: pre-wrap; } Vuoi che questo link sia gestito dal tuo sistema? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13627,7 +14341,12 @@ and open the Make Friend Wizard. Vuoi elaborare il collegamento %1? - + + This file already exists. Do you want to open it ? + Questo file esiste già. Vuoi aprirlo? + + + %1 of %2 RetroShare link processed. %1 di %2 collegamenti RetroShare elaborati. @@ -13794,7 +14513,7 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Impossibile elaborare il file della raccolta - + Deny friend Rifiuta amico @@ -13814,7 +14533,7 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Richiesta file cancellata - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Questa versione di RetroShare usa OpenPGP-SDK. Come effetto collaterale, non utilizza il portachiavi PGP condiviso di sistema, ma ha il proprio portachiavi condiviso da tutte le istanze di RetroShare. <br><br>Non sembri avere un tale portachiavi, sebbene chiavi PGP siano menzionati da account RetroShare esistenti, probabilmente perché hai appena cambiato per questa nuova versione del software. @@ -13845,7 +14564,7 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Errore inatteso. Riferisci "RsInit::InitRetroShare unexpected return code %1". - + Multiple instances Istanze multiple @@ -13884,11 +14603,6 @@ Blocco del file: Tunnel is pending... Il tunnel è in attesa... - - - Secured tunnel established. Waiting for ACK... - Tunnel sicuro costruito. In attesa di risposta (ACK) - Secured tunnel is working. You can talk! @@ -13900,12 +14614,15 @@ Blocco del file: Reported error is: %2 - + Il file della raccolta %1 non può essere aperto. +L’errore segnalato è: + +%2 - + Click to send a private message to %1 (%2). - + Clicca per inviare un messaggio privato a %1 (%2). @@ -13915,12 +14632,12 @@ Reported error is: Click this link to send a private message to %1 (%2) - + Clicca su questo link per inviare un messaggio privato a %1 (%2) RetroShare Certificate (%1, @%2) - + Certificato RetroShare (%1, @%2) @@ -13950,113 +14667,136 @@ Reported error is: Data forward - + Inoltro dati - + You appear to have nodes associated to DSA keys: - + Sembri avere nodi associati a chiavi DSA: DSA keys are not yet supported by this version of RetroShare. All these nodes will be unusable. We're very sorry for that. - + Chiavi DSA non sono ancora supportate da questa versione di RetroShare. Tutti questi nodi saranno inutilizzabili. Siamo molto spiacenti per questo. - + enabled - + abilitato disabled - + disabilitato - + Join chat lobby - + Unisciti al gruppo di discussione - + Move IP %1 to whitelist - + Sposta l’IP %1 alla lista bianca Whitelist entire range %1 - + Metti l’intero range %1 in lista bianca whitelist entire range %1 - + metti l’intero range %1 in lista bianca - + + %1 seconds ago - + %1 secondi fa + %1 minute ago - + %1 minuto fa + %1 minutes ago - + %1 minuti fa + %1 hour ago - + %1 ora fa + %1 hours ago - + %1 ore fa + %1 day ago - + %1 giorno fa + %1 days ago %1 giorni fa - + Subject: - + Oggetto: Participants: - + Partecipanti: Auto Subscribe: - + Sottoscrizione Automatica: Id: + Id: + + + + +Security: no anonymous IDs This cert is malformed. Error code: - + Questo certificato è malformato. Codice di errore: The following has not been added to your download list, because you already have it: - + Questo non è stato aggiunto alla lista da scaricare, perché già ce l'hai: + + + + Error + Errore + + + + unable to parse XML file! + impossibile analizzare il file XML! @@ -14067,7 +14807,7 @@ Reported error is: Auto configuratore rapido - + <!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; } @@ -14105,21 +14845,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > Seguente > - - - - + + + + + Exit Uscita - + For best performance, RetroShare needs to know a little about your connection to the internet. Per migliori prestazioni, RetroShare necessita sapere qualcosa sulla tua connessione ad Internet, @@ -14186,13 +14928,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back < Indietro - + <!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; } @@ -14217,7 +14960,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Tutta la rete @@ -14242,7 +14985,27 @@ p, li { white-space: pre-wrap; } Condividi automaticamente cartella ricezione (Raccomandato) - + + RetroShare Page Display Style + Stile di Visualizzazione della Pagina di RetroShare + + + + Where do you want to have the buttons for the page? + Dove vuoi posizionare i bottoni della pagina? + + + + ToolBar View + Visualizza Barra Strumenti + + + + List View + Vista Elenco + + + <!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; } @@ -14343,18 +15106,21 @@ p, li { white-space: pre-wrap; } * Network Wide: anonymously shared over the network (including your friends) * Browsable: browsable by your friends * Universal: both - + Decidi se questa cartella è: +* Livello Rete: condivisa anonimamente attraverso la rete (inclusi i tuoi amici) +* Navigabile: navigabile dai tuoi amici +* Universale: entrambi Do you really want to stop sharing this directory ? - + Vuoi davvero smettere di condividere questa cartella? RSGraphWidget - + %1 KB %1 KB @@ -14390,62 +15156,62 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default - + Concesso di default Denied by default - + Negato di default Enabled for this peer - + Abilitato per questo contatto Disabled for this peer - + Disabilitato per questo contatto Enabled by remote peer - + Abilitato da contatto remoto Disabled by remote peer - + Disabilitato da contatto remoto - Switched Off - + Globally switched Off + Disattivato globalmente Service name: - + Nome servizio: Peer name: - + Nome contatto: Peer Id: - + ID contatto: RSettingsWin - + Error Saving Configuration on page - + Errore Salvataggio Configurazione sulla pagina @@ -14463,7 +15229,7 @@ p, li { white-space: pre-wrap; } <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) @@ -14552,7 +15318,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14577,7 +15343,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW NUOVO @@ -14587,22 +15353,22 @@ p, li { white-space: pre-wrap; } IP address not checked - + Indirizzo IP non verificato IP address is blacklisted - + L’indirizzo IP è in lista nera IP address is not whitelisted - + L’indirizzo IP non è in lista bianca IP address accepted - + Indirizzo IP accettato @@ -14620,28 +15386,28 @@ p, li { white-space: pre-wrap; } Remove IP from whitelist - + Rimuovi l’IP dalla lista bianca Add IP to blacklist - + Aggiungi l’IP alla lista nera Remove IP from blacklist - + Rimuovi l’IP dalla lista nera Only IP - + Solo IP Entire range - + Intervallo completo @@ -14704,7 +15470,7 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Selected files : - + Files selezionati : @@ -14719,7 +15485,7 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit <html><head/><body><p>Add selected item to collection.</p><p>If a directory is selected, all of his children will be added.</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Enter&gt;</span></p></body></html> - + <html><head/><body><p>Aggiungi alla raccolta l’elemento selezionato.</p><p>Se è stata selezionata una cartella, verranno aggiunti tutti i suoi figli (file e sottocartelle).</p><p><span style=" text-decoration: underline; vertical-align:sub;">&lt;Shift + Enter&gt;</span></p></body></html> @@ -14729,12 +15495,12 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit <html><head/><body><p>Make a new directory in the collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> - + <html><head/><body><p>Crea una nuova cartella nella collezione.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;+&gt;</span></p></body></html> + - + + @@ -14744,17 +15510,17 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Collection Editor - + Editor di Raccolte File Count - + Conteggio File This is the root directory. - + Questa cartella è la root. @@ -14771,29 +15537,29 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit This is a directory. Double-click to expand it. - + Questa è una directory. Doppio click per espanderla. Real Size=%1 - + Dimesioni Reali=%1 Real File Count=%1 - + Conteggio File Reale=%1 Save Collection File. - + Salva Raccolta di File. What do you want to do? - + Cosa vuoi fare ? @@ -14803,42 +15569,42 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit Merge - + Unisci Warning, selection contains more than %1 items. - + Attenzione, la selezione contiene più di %1 oggetti. Do you want to remove them and all their children, too? <br> - + Vuoi eliminarli, con tutti i figli inclusi?<br> New Directory - + Nuova Cartella Enter the new directory's name - + Inserisci il nome della nuova cartella <html><head/><body><p>Change the file where collection will be saved.</p><p>If you select an existing file, you could merge it.</p></body></html> - + <html><head/><body><p>Cambia il file in cui verrà salvata la raccolta.</p><p>Se selezioni un file già esistente, puoi scegliere di unificarlo.</p></body></html> File already exists. - + File esistente. <html><head/><body><p>Remove selected item from collection.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Del&gt;</span></p></body></html> - + <html><head/><body><p>Elimina dalla raccolta l’elemento selezionato.</p><p><span style=" font-style:italic; vertical-align:sub;">&lt;Del&gt;</span></p></body></html> @@ -14879,17 +15645,19 @@ Caratteri <b>", |, \, &lt;&gt;,, *,?</b> saranno sostit This file contains the string "%1" and is therefore an invalid collection file. If you believe it is correct, remove the corresponding line from the file and re-open it with Retroshare. - + Questo file contiene la stringa "%1", perciò non è un file di collezione valido. + +Se ritieni sia corretto, rimuovi dal file la riga corrispondente e ri-aprilo con RetroShare. Save Collection File. - + Salva Raccolta File. What do you want to do? - + Cosa vuoi fare ? @@ -14899,7 +15667,7 @@ If you believe it is correct, remove the corresponding line from the file and re Merge - + Unisci @@ -14909,13 +15677,13 @@ If you believe it is correct, remove the corresponding line from the file and re File already exists. - + File esistente. RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? L'immagine è sovradimensionata per la trasmissione. @@ -14927,13 +15695,13 @@ Riduzione immagine a %1x%2 pixel? Invalid format - + Formato non valido. Rshare - + Resets ALL stored RetroShare settings. Ripristina TUTTI i parametri Retroshare memorizzati @@ -14978,34 +15746,34 @@ Riduzione immagine a %1x%2 pixel? Impossibile aprire file di LOG '%1': %2 - + built-in Incluso - + Could not create data directory: %1 - + Impossibile creare la cartella dati: %1 - + Revision - + Revisione Invalid language code specified: - + Codice linguaggio incorretto: Invalid GUI style specified: - + Stile GUI incorretto: Invalid log level specified: - + Livello log incorretto: @@ -15016,33 +15784,10 @@ Riduzione immagine a %1x%2 pixel? RTT Statistiche - - SFListDelegate - - - B - B - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Immetti una chiave (di almeno 3 caratteri) @@ -15223,12 +15968,12 @@ Riduzione immagine a %1x%2 pixel? Scarica selezionati - + File Name Nome File - + Download Scarica @@ -15294,30 +16039,30 @@ Riduzione immagine a %1x%2 pixel? Open Folder - + Apri cartella - + Create Collection... - + Crea Raccolta... Modify Collection... - + Modifica Raccolta... View Collection... - + Guarda Raccolta... Download from collection file... - Scarica da una collezione di file + Scarica da una raccolta di file... - + Collection Raccolta @@ -15343,7 +16088,7 @@ Riduzione immagine a %1x%2 pixel? IP address: - + Indirizzo IP: @@ -15358,7 +16103,7 @@ Riduzione immagine a %1x%2 pixel? Peer Name: - + Nome contatto: @@ -15380,28 +16125,28 @@ Riduzione immagine a %1x%2 pixel? Wrong external ip address reported - + Segnalazione: indirizzo IP esterno errato IP address %1 was added to the whitelist - + L’indirizzo IP %1 è stato aggiunto alla lista bianca <p>This is the external IP your Retroshare node thinks it is using.</p> - + <p>Questo è l’IP esterno che il tuo nodo RetroShare crede di utilizzare.</p> <p>This is the IP your friend claims it is connected to. If you just changed IPs, this is a false warning. If not, that means your connection to this friend is forwarded by an intermediate peer, which would be suspicious.</p> - + <p>Questo è l’IP a cui il tuo amico sostiene di essere connesso. Se avete appena cambiato gli IP, allora questo è un falso allarme. Altrimenti, significa che la tua connessione a questo amico è inoltrata da un peer intermedio, ed è una cosa sospetta.</p> <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> - + <html><head/><body><p>Questo avviso serve a proteggerti dagli attacchi tramite inoltro del traffico. In simili casi, l’amico a cui sei connesso non vedrà il tuo IP esterno, vedrà invece l’IP di chi esegue l’attacco.</p><p><br/></p><p>Però, se per qualche motivo avete appena cambiato gli IP (alcuni ISP ti cambiano l’IP a intervalli regolari), allora questo avviso ti sta solo dicendo che un amico si è connesso al tuo nuovo IP prima che RetroShare si sia accorto che l’IP è cambiato. In questo caso, non c’è nulla che non vada.</p><p><br/></p><p>Puoi facilmente evitare falsi allarmi mettendo in lista bianca i tuoi indirizzi IP (p.es. l’intervallo dei tuoi IP), o disabilitando del tutto questi avvisi in Opzioni-&gt;Notifica-&gt;News Feed.</p></body></html> @@ -15534,38 +16279,48 @@ Riduzione immagine a %1x%2 pixel? Certificate has wrong signature!! This peer is not who he claims to be. - + Il Certificato ha una firma errata!! Questo contatto non è chi afferma di essere. Missing/Damaged certificate. Not a real Retroshare user. - + Certificato Mancante/Danneggiato. Non è un vero utente RetroShare. Certificate caused an internal error. - + Il certificato ha causato un errore interno. Peer/node not in friendlist (PGP id= - + Peer/nodo non in lista-amici (PGP id= Missing/Damaged SSL certificate for key - + Certificato SSL della chiave Mancante/Danneggiato ServerPage - + Network Configuration configurazione rete - + + Network Mode + Modalità Rete + + + + Nat + Nat + + + Automatic (UPnP) Automatica (UPnP) @@ -15580,7 +16335,7 @@ Riduzione immagine a %1x%2 pixel? Rinvio Manuale Porta - + Public: DHT & Discovery Pubblico: DHT & Scoperta @@ -15600,13 +16355,13 @@ Riduzione immagine a %1x%2 pixel? Rete Oscura: Nessuna - - + + Local Address Indirizzo Locale - + External Address Indirizzo Esterno @@ -15616,28 +16371,28 @@ Riduzione immagine a %1x%2 pixel? DNS Dinamico - + Port: Porta: - + Local network Rete locale - + External ip address finder Rilevatore di indirizzo IP esterno - + UPnP UPnP - + Known / Previous IPs: IP conosciuti / precedenti: @@ -15660,61 +16415,100 @@ behind a firewall or a VPN. Permetti a RetroShare di chiedere il mio IP a questi siti: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. - + L’intervallo di porte consentite va da 10 a 65535. In genere le porte al di sotto della 1024 sono riservate al sistema. Acceptable ports range from 10 to 65535. Normally ports below 1024 are reserved by your system. - + L’intervallo di porte consentite va da 10 a 65535. In genere le porte al di sotto della 1024 sono riservate al sistema. - + Onion Address - + Indirizzo Onion - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) - + Scoperta Attivata (raccomandato) Discovery Off - + Scoperta Disattivata - + + Hidden - See Config + Nascosto - Vedi Configurazione + + + + I2P Address + Indirizzo I2P + + + + I2P incoming ok + I2P in entrata ok + + + + Points at: + Punta a: + + + + Tor incoming ok + Tor in entrata ok + + + + incoming ok + in entrata ok + + + + Proxy seems to work. - + Il proxy sembra funzionare. - + + I2P proxy is not enabled + proxy di I2P non abilitato + + + + You are reachable through the hidden service. + Sei raggiungibile tramite servizio nascosto. + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + Il proxy non è abilitato, o è danneggiato. +I servizi sono tutti sù e ben funzionanti?? +Controlla anche le tue porte! + + + [Hidden mode] - + [Modalità Nascosta] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> - + <html><head/><body><p>Questo azzera la lista degli indirizzi noti. Questa azione è utile se per qualche ragione la tua lista di indirizzi contenesse un indirizzo non valido/irrilevante/scaduto che vorresti evitare di passare ai tuoi amici come indirizzo di contatto.</p></body></html> @@ -15722,127 +16516,247 @@ HiddenServicePort 9191 127.0.0.1:9191 Cancella - + Download limit (KB/s) - + Limite scaricamento (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + <html><head/><body><p>Questo limite di download copre l’intero applicativo. Però, in alcune situazioni, come il trasferimento simultaneo di tanti piccoli file, la stima di larghezza di banda diventa inaffidabile ed il valore totale riportato da RetroShare potrebbe eccedere quel limite. </p></body></html> - + Upload limit (KB/s) - + Limite caricamento (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> + <html><head/><body><p>Il limite di upload copre l’intero software. Un limite di upload troppo piccolo potrebbe eventualmente bloccare i servizi a bassa priorità (forum, canali). Il valore minimo raccomandato è di 50KB/s. </p></body></html> + + + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> - + Test Test - + Network Rete - + IP Filters - + Filtro IP - + IP blacklist - + Lista nera degli IP - + IP range - + Intervallo IP - - - + + + Status Status - - + + Origin - + Origine - - + + Reason - + Motivo - - + + Comment Commento - + IPs - + IP - + IP whitelist - + Lista bianca degli IP - + Manual input - + Input manuale <html><head/><body><p>Enter an IP range. Accepted formats:</p><p>193.190.209.15</p><p>193.190.209.15/24</p><p>193.190.209.15/16</p></body></html> - + <html><head/><body><p>Inserisci un intervallo IP. Formati accettati:</p><p>193.190.209.15</p><p>193.190.209.15/24</p><p>193.190.209.15/16</p></body></html> <html><head/><body><p>Enter any comment you'd like</p></body></html> - + <html><head/><body><p>Inserisci qualsiasi commento di tuo gradimento</p></body></html> Add to blacklist - + Aggiungi alla lista nera Add to whitelist + Aggiungi alla lista bianca + + + + Hidden Service Configuration + Configurazione Servizio Nascosto + + + + Outgoing Connections + Connessioni in Uscita + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> - + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + I2P Socks Proxy + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + I2P in uscita ok + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + Connessioni di Servizio in Entrata + + + + + Service Address + Indirizzo Servizio + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + <html><head/><body><p>Questo è il tuo indirizzo nascosto. Dovrebbe assomigliare a <span style=" font-weight:600;">[qualcosa].onion</span> oppure <span style=" font-weight:600;">[qualcosa].b32.i2p. </span>Se hai configurato un servizio nascosto con Tor, l’indirizzo onion viene generato automaticamente da Tor. Puoi torvarlo in, p.es., <span style=" font-weight:600;">/var/lib/tor/[nome servizio]/hostname</span>. Per I2P: Imposta un server tunnel (http://127.0.0.1:7657/i2ptunnelmgr ) e copia il suo indirizzo a base32 quando è avviato (dovrebbe terminare in .b32.i2p)</p></body></html> + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + <html><head/><body><p>Questo è l’indirizzo locale a cui punta il servizio nascosto punta nel tuo localhost. Nella maggior parte dei casi, <span style=" font-weight:600;">127.0.0.1</span> è la risposta giusta.</p></body></html> + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + in entrata ok + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + Per poter Ricevere Connessioni, devi prima impostare un Servizio Nascosto Tor/I2P. +Per Tor: Vedi torrc e la documentazione dello HOWTO per maggiori dettagli. +Per I2P: Vedi http://127.0.0.1:7657/i2ptunnelmgr per impostare un server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> inserisci l’indirizzo e la porta utilizzati dal tuo RS (vedi sopra, Indirizzi Locali) -> check 'Auto Start' -> finish! + +Fatto questo, incolla l’Indirizzo Onion/I2P (Base32) nella casella soprastante. +Questo è il tuo indirizzo esterno nella rete Tor/I2P. +Infine, assicurati che le Porte corrispondano alla configurazione. + +Se riscontri problemi nella connessione attraverso Tor, controlla anche i log di Tor. + + + IP Range - + Intervallo IP - + Reported by DHT for IP masquerading - + Segnalato dalla DHT per mascheramento IP Range made from %1 collected addresses - + Range creato da %1 indirizzi raccolti @@ -15855,156 +16769,78 @@ HiddenServicePort 9191 127.0.0.1:9191 Added by you - + Aggiunto da te - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>Gli IP della lista bianca vengono ottenuti dalle seguenti fonti: IP provenienti da un certificato scambiato manualmente; gamme di IP inserite da te in questa finestra o negli elementi immessi nella sicurezza.</p><p>Il comportamento di default di RetroShare è di (1) autorizzare sempre la connessione ai peer il cui IP è nella lista bianca, anche se quell’IP appare anche nella lista nera; (2) opzionalmente richiede che gli IP siano nella lista bianca. Puoi modificare questo comportamento per ciascun contatto nella finestra &quot;Dettagli&quot; di ciascun nodo RetroShare. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + <html><head/><body><p>La DHT ti consente di rispondere a richieste di connessione dai tuoi amici che usano la DHT di BitTorrent. Migliora notevolmente la connettività. Nessuna informazione viene memorizzata nella DHT; viene impiegata solo come sistema di proxy per entrare in contatto con altri nodi di RetroShare.</p><p>Il servizio Discovery invia il nome del nodo e gli ID dei tuoi contatti fidati ai peers connessi, per aiutarli a scegliere nuovi amici. Però l’amicizia non è mai automatica, ed entrambi i peer dovranno pur sempre aggiudicarsi la fiducia a vicenda per consentire la connessione. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>Il punto diventa verde non appena RetroShare riesce ad ottenere il tuo IP dai siti elencati qui sotto, se hai abilitato l’operazione. RetroShare utilizzerà anche altri metodi per scoprire il tuo IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + <html><head/><body><p>Questa lista viene compilata automaticamente con informazioni reperite da molteplici fonti: i contatti mascherati segnalati dalla DHT; gli intervalli IP immessi da te; e gli intervalli IP segnalati dai tuoi amici. Le impostazioni di default dovrebbero proteggerti dal relaying del traffico su larga scala.</p><p>L'individuazione automatizzata degli IP mascherati potrebbe far finire in lista nera gli IP dei tuoi amici. In questo caso, usa il menù contestuale per metterli in lista bianca.</p></body></html> - + activate IP filtering - + Attiva filtro IP - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> - + <html><head/><body><p>Questo è molto drastico, fai attenzione. Dato che gli IP mascherati possono anche essere IP reali, questa opzione potrebbe causare la disconnessione, e probabilmente ti costringerà ad aggiungere gli IP dei tuoi amici alla lista bianca.</p></body></html> Ban every IP reported by your friends - + Blocca ogni IP segnalato dai tuoi amici <html><head/><body><p>Another drastic option. If you use it, be prepared to add your friends' IPs into the whitelist when needed.</p></body></html> - + <html><head/><body><p>Un’altra opzione drastica: se la usi, preparati ad aggiungere gli IP dei tuoi amici alla lista bianca, quando necessario.</p></body></html> Ban every masquerading IP reported by your DHT - + Blocca ogni IP mascherato segnalato dalla tua DHT <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + <html><head/><body><p>Se usata da sola, questa opzione di protegge abbastanza bene dal mascheramento IP su vasta scala.</p></body></html> Automatically ban ranges of DHT masquerading IPs starting at - - - - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - - Tor Socks Proxy - - - - - Tor outgoing Okay - - - - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - + Blocca automaticamente gli intervalli degli IP mascherati della DHT che iniziano da + Tor Socks Proxy + Tor Socks Proxy + + + + Tor outgoing Okay + Tor in uscita ok + + + Tor proxy is not enabled - - - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - + proxy di Tor non abilitato @@ -16017,30 +16853,30 @@ Check your ports! Service Permissions - + Permessi del Servizio Use as direct source, when available - + Usa come fonte diretta, quando disponibile Auto-download recommended files - + Scarica automaticamente i file raccomandati Require whitelist - + Richiede una lista bianca ServicePermissionsPage - + ServicePermissions - + PermessiServizio @@ -16052,15 +16888,15 @@ Check your ports! Permissions Autorizzazioni - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> - - hide offline - + nascondi offline + + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permessi</h1> <p>I permessi ti consentono di controllare quali servizi sono disponibili a quali amici.</p> <p>Ciascun interrutore mostra due luci, che indicano se tu o il tuo amico avete abilitato quel servizio. Entrambi devono essere su ON (attivi, mostrando <img height=20 src=":/images/switch11.png"/>) per consentire il trasferimento di informazioni per uno specifica combinazione servizio/amico.</p> <p>Per ciascun servizio, l’interruttore globale <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> ti consente di attivare/disattivare (ON/OFF) il servizio per tutti gli amici in un colpo solo.</p> <p>Sii molto cauto: Alcuni servizi dipendono gli uni dagli altri. Per esempio, spegnendo il Turtle si arresteranno anche tutti i trasferimenti anonimi, le conversazioni a distanza, e la messaggistica a distanza.</p> @@ -16117,7 +16953,7 @@ Check your ports! Share flags and groups: - + Condividi gruppi e permessi: @@ -16141,7 +16977,8 @@ Check your ports! You can let your friends know about your Channel by sharing it with them. Select the Friends with which you want to Share your Channel. - + Puoi far sapere agli amici del tuo Canale condividendolo con loro. +Seleziona gli Amici con cui vuoi Condividere il Canale. @@ -16252,7 +17089,7 @@ Select the Friends with which you want to Share your Channel. This is a list of shared folders. You can add and remove folders using the buttons at the bottom. When you add a new folder, intially all files in that folder are shared. You can separately setup share flags for each shared directory. - + Questo è un elenco delle cartelle condivise. Puoi aggiungere e rimuovere cartelle usando i bottoni in fondo. Quando aggiungi una nuova cartella, all’inizio tutti i file in essa contenuti vengono condivisi. Puoi impostare separatamente i parametri di condivisione per ciascuna cartella condivisa. @@ -16323,7 +17160,7 @@ Select the Friends with which you want to Share your Channel. Scarica - + Copy retroshare Links to Clipboard Copia negli Appunti Collegamenti RetroShare @@ -16348,7 +17185,7 @@ Select the Friends with which you want to Share your Channel. Aggiungere collegamenti a Cloud - + RetroShare Link Collegamento RetroShare @@ -16364,47 +17201,47 @@ Select the Friends with which you want to Share your Channel. Aggiungi condivisione - + Create Collection... - + Crea Raccolta... Modify Collection... - + Modifica Raccolta... View Collection... - + Guarda Raccolta... Download from collection file... - Scarica da una collezione di file + Scarica da una raccolta di file... SoundManager - + Friend Amico Go Online - + Vai in linea Chatmessage - + Messaggio conversazione New Msg - + Nuovo messaggio @@ -16413,17 +17250,23 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Messaggio arrivato - + Download Download Download complete + Scaricamento completo + + + + Lobby @@ -16475,18 +17318,18 @@ Select the Friends with which you want to Share your Channel. Sound is off, click to turn it on - + Audio disattivato, clicca per attivarlo Sound is on, click to turn it off - + Audio attivato, clicca per disattivarlo SplashScreen - + Load profile Carica profilo @@ -16561,7 +17404,11 @@ Le identità/posizioni attuali non saranno toccate. 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;"><a href="Create new Profile..."><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; text-decoration: underline; color:#0000ff;">Manage profiles and nodes...</span></a></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//IT" "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;"><a href="Create new Profile..."><span style=" font-family:'MS Shell Dlg 2'; font-size:8pt; text-decoration: underline; color:#0000ff;">Gestisci profili e nodi...</span></a></p></body></html> @@ -16570,7 +17417,11 @@ p, li { white-space: pre-wrap; } Your PGP passwd will not be stored. This choice can be reverted in settings. - + La password per il tuo certificato SSL (il tuo nodo) verrà archiviata crittografata nel portachiavi Gnome. + +La password PGP non verrà memorizzata. + +Questa scelta può essere ripristinata in Impostazioni. @@ -16579,7 +17430,11 @@ This choice can be reverted in settings. Your PGP passwd will not be stored. This choice can be reverted in settings. - + La password per il tuo certificato SSL (il tuo nodo) verrà archiviata crittografata nel portachiavi. + +La password PGP non verrà memorizzata. + +Questa scelta può essere ripristinata in Impostazioni. @@ -16588,7 +17443,11 @@ This choice can be reverted in settings. Your PGP password will not be stored. This choice can be reverted in settings. - + La password per il tuo certificato SSL (il tuo nodo) verrà archiviata crittografata nel file keys/help.dta. Questo non è sicuro. + +La password PGP non verrà memorizzata. + +Questa scelta può essere ripristinata in Impostazioni. @@ -16642,7 +17501,7 @@ This choice can be reverted in settings. ServicePermissions - + PermessiServizio @@ -16662,12 +17521,12 @@ This choice can be reverted in settings. Turtle Router - + Router Turtle Global Router - + Router Globale @@ -16730,12 +17589,12 @@ This choice can be reverted in settings. - + Connected Connesso - + Unreachable Irraggiungibile @@ -16751,18 +17610,18 @@ This choice can be reverted in settings. - + Trying TCP Provo TCP - - + + Trying UDP Provo UDP - + Connected: TCP Connesso: TCP @@ -16773,6 +17632,11 @@ This choice can be reverted in settings. + Connected: I2P + Connesso: I2P + + + Connected: Unknown Connesso: Indefinito @@ -16782,39 +17646,49 @@ This choice can be reverted in settings. DHT: Contatto - + TCP-in - + TCP-in TCP-out - + TCP-out - + inbound connection - + connessione in entrata outbound connection - + connessione in uscita - + UDP UDP Tor-in - + Tor-in Tor-out - + Tor-out + + + + I2P-in + I2P-in + + + + I2P-out + I2P-out @@ -16822,9 +17696,9 @@ This choice can be reverted in settings. sconosciuto - + Connected: Tor - + Connesso: Tor @@ -17039,7 +17913,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Pausa @@ -17088,14 +17962,14 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled - + Tutte le notifiche del Toaster sono disabilitate Toasters are enabled - + Notifiche del Toaster abilitate @@ -17156,7 +18030,15 @@ 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;">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//IT "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;"> è in grado di trasmettere dati e richieste di ricerca tra peers che non necessariamente sono amici. Questo traffico però transita solo attraverso una lista di amici connessi ed è anonimo.</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;"><br /></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;">Nella finestra di dialogo dei file condivisi puoi impostare, separatamente, i seguenti criteri di condivisione per ciascuna cartella condivisa:</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;">Visibile agli amici</span>: gli amici possono vedere i file che contiene.</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;">Condivisione anonima</span>: i file possono essere raggiunti anonimamente tramite i tunnel F2F.</li></ul></body></html> @@ -17166,27 +18048,27 @@ p, li { white-space: pre-wrap; } <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> - + <html><head/><body><p><span style=" font-weight:600;">Streaming </span>costringe il trasferimento a richiedere chunk di file da 1MB in ordine crescente, facilitando l’anteprima durante lo scaricamento. <span style=" font-weight:600;">Random</span> è puramente casuale e favorisce lo swarming. <span style=" font-weight:600;">Progressivo</span> è un compromesso: seleziona il prossimo chunk casualmente entro un margine che non superi i 50MB di distanza dalla fine del file parziale. Questo consente una randomizzazione parziale ma al contempo previene lunghi tempi di inizializzazione per grossi file vuoti.</p></body></html> <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> - + <html><head/><body><p>RetroShare sospenderà tutti i trasferimenti ed il salvataggio del file di configurazione qualora lo spazio libero sul disco dovesse scendere al di sotto di questo limite. Su alcuni sistemi, questo previene la perdita di informazioni. Una finestra di popup ti avviserà quando questo accade.</p></body></html> <html><head/><body><p>This value controls how many tunnel request your peer can forward per second. </p><p>If you have a large internet bandwidth, you may raise this up to 30-40, to allow statistically longer tunnels to pass. Be very careful though, since this generates many small packets that can significantly slow down your own file transfer. </p><p>The default value is 20. If you're not sure, keep it that way.</p></body></html> - + <html><head/><body><p>Questo valore controlla quante richieste di tunnel al secondo può inoltrare il tuo contatto.</p><p>Se disponi di una connessione Internet a banda larga, può portarlo su fino a 30-40, consentendo così il passaggio di tunnel statisticamente più lunghi. Fai molta attenzione però: questo genererà molti pacchetti piccoli che possono rallentare notevolmente il tuo trasferimento di file.</p><p>Il valore predefinito è 20. Nel dubbio, lascialo così.</p></body></html> File transfer - + Trasferimento file <html><head/><body><p>You can use this to force RetroShare to download your files rather <br/>than cache files for as many slots as requested. Setting that number <br/>to be equal to the queue size above will always prioritize your files<br/>over cache. <br/><br/>It is however recommended to leave at least a few slots for cache files. For now, cache files are only used to transfer friend file lists.</p></body></html> - + <html><head/><body><p>Puoi usare questo per forzare RetroShare a scaricare i tuoi file anziché <br/>memorizzare nella cache tanti file quanti sono gli slot richiesti. <br/>Impostando un numero pari alla dimensione della coda di memoria <br/>riportata sopra, RS darà sempre priorità ai tuoi file rispetto alla cache. <br/><br/>Tuttavia, si consiglia di lasciare almeno qualche slot per i file della cache. Al momento, i file della cache vengono impiegati soltanto per trasferire elenchi di file degli amici.</p></body></html> @@ -17221,16 +18103,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Scaricamenti + Uploads Caricamenti - + Name i.e: file name @@ -17340,7 +18224,7 @@ p, li { white-space: pre-wrap; } Download from collection file... - Scarica da una collezione di file + Scarica da una raccolta di file... @@ -17426,25 +18310,25 @@ p, li { white-space: pre-wrap; } - + Slower Rallenta - - + + Average Media - - + + Faster Accelera - + Random Casuale @@ -17469,7 +18353,12 @@ p, li { white-space: pre-wrap; } Specifica... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Trasferimento File</h1> <p>RetroShare offre due modi per trasferie file: trasferimenti diretti dai tuoi amici, e trasferimenti a distanza anonimizzati con tunnel. Inoltre, il trasferimento file è multi-fonte e consente lo swarming (puoi essere una fonta mentre scarichi).</p> <p>Puoi condividere file usando l’icona <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> bekka barra laterale sinistra. Queste file verranno elencati nella finestrella "I Miei File". Per ciascun gruppo di amici, puoi stabilire se potranno vedere o meno questi file nella finestra "File degli Amici".</p> <p>La finestra di ricerca riporta i file nelle liste dei file dei tuoi amici, ed i file distanti che possono essere raggiunti anonimamente tramite il sistema di tunneling a multi-hop.</p> + + + Move in Queue... Sposta in coda... @@ -17495,39 +18384,39 @@ p, li { white-space: pre-wrap; } - + Failed Fallito - - + + Okay OK - - + + Waiting in attesa - + Downloading In scaricamento - + Complete Completo - + Queued Accodato @@ -17565,7 +18454,7 @@ RetroShare chiederà alla fonte una mappa dettagliata dei dati; Controllerà i b Sii paziente! - + Transferring In trasferimento @@ -17575,7 +18464,7 @@ Sii paziente! In caricamento - + Are you sure that you want to cancel and delete these files? Sei sicuro di voler annullare ed eliminare questi files? @@ -17633,7 +18522,7 @@ Sii paziente! Per favore inserisci un nuovo--e valido--nome per il file - + Last Time Seen i.e: Last Time Receiced Data Ultima volta visto @@ -17739,7 +18628,7 @@ Sii paziente! Visualizza colonna del tempo di ultimo avvistamento - + Columns Colonne @@ -17749,7 +18638,7 @@ Sii paziente! Trasferimento file - + Path i.e: Where file is saved Tracciato @@ -17762,17 +18651,12 @@ Sii paziente! Show Path Column - + Visualizza colonna dei Percorsi - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file - + Impossibile eliminare il file anteprima @@ -17780,22 +18664,22 @@ Sii paziente! Riprovare? - + Create Collection... - + Crea Raccolta... Modify Collection... - + Modifica Raccolta... View Collection... - + Guarda Raccolta... - + Collection Raccolta @@ -17805,19 +18689,19 @@ Sii paziente! Condivisione dei file - + Anonymous tunnel 0x - + Tunnel anonimo 0x - + Show file list transfers - + version: - + versione: @@ -17851,7 +18735,7 @@ Sii paziente! DIR - + Friends Directories Cartelle amici @@ -17894,7 +18778,7 @@ Sii paziente! TurtleRouterDialog - + Search requests Richieste di ricerca @@ -17957,7 +18841,7 @@ Sii paziente! Statistiche router - + Age in seconds Età in secondi @@ -17972,25 +18856,30 @@ Sii paziente! totale - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Contatto sconosciuto Turtle Router - - - - - Tunnel Requests - + Router Turtle TurtleRouterStatisticsWidget - + Search requests repartition Cerca suddivisione richieste @@ -18032,7 +18921,7 @@ Sii paziente! Forwarded data - + Dati inoltrati @@ -18161,7 +19050,7 @@ Sii paziente! Enable Retroshare WEB Interface - + Abilita l’Interfaccia Web di RetroShare @@ -18176,37 +19065,42 @@ Sii paziente! allow access from all IP adresses (Default: localhost only) - + permetti accesso da tutti gli indirizzi IP (Predefinito: soltanto localhost) apply setting and start browser - + Applicare le impostazioni e avviare il browser Note: these settings do not affect retroshare-nogui. retroshare-nogui has a command line switch to active the webinterface. - + Nota: queste impostazioni non si applicano a RetroShare-nogui. Per RetroShare-nogui vi è un parametro di riga di comanda per attivare l'Interfaccia Web. - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Interfaccia Web</h1><p>L’Interfaccia Web ti consente di controllare RetroShare tramite browser. Più dispositivi possono condividere il controllo di un’istanza di RetroShare. Quindi, potresti avviare una conversazione su un tablet, per poi proseguirla su un PC da tavolo.</p> <p>Attenzione: non esporre l’Interfaccia Web all’Internet, dato che non dispone di alcun sistema di controllo dell’accesso, né di cifratura. Se vuoi usare l’Interfaccia Web tramite Internet, usa un tunnel SSH o un proxy verso una connessione sicura.</p> + + + Webinterface not enabled - + Interfaccia Web non abilitata + + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + L’Interfaccia Web non è abilitata. Attivala in Impostazioni -> Interfaccia Web failed to start Webinterface - + Non so riuscito ad avviare l’Interfaccia Web Webinterface - - - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - + Interfaccia Web @@ -18397,7 +19291,7 @@ Sii paziente! Cerca - + My Groups I miei Gruppi @@ -18417,7 +19311,7 @@ Sii paziente! Altri Gruppi - + Subscribe to Group Sottoscrivi al Gruppo @@ -18434,7 +19328,7 @@ Sii paziente! Show Wiki Group - + Mostra gruppo Wiki @@ -18605,7 +19499,7 @@ Sii paziente! Update Group - + Aggiorna Gruppo @@ -18832,7 +19726,7 @@ Sii paziente! Pictures (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) - + Immagini (*.png *.jpeg *.xpm *.jpg *.tiff *.gif) \ No newline at end of file diff --git a/retroshare-gui/src/lang/retroshare_ja_JP.qm b/retroshare-gui/src/lang/retroshare_ja_JP.qm index 30ac250efe0b61ef13b6f46738056bba566762f3..6414fac5915aa3dc67ab5d0d15efbeb0907bea26 100644 GIT binary patch delta 3443 zcmXZfcU)9g76#Y9DlfI%Tt=^YhNdX+AM^v*y)&BV3WpkvfXENj4M zG)hFHuA1OtLEVj-pdZWX$CyOjk1J%c#?`n7fAG)u-OJ2-@7{aPxpx+?mH)m*-eP7r zLL~GOX{@2G6LcH~Lsk%p{zPd4)DO1fh~6oJ`g|fcEm77nINKZ+R1kT(5)FGoG_8%u z;RcM|KICI)h`Wl5q_c2#1FTFZis>Y>O@xkKM9KUapBxwarZvHgK3Mt(36~;>B2q}Wx|&Ft z1l5nB>t*O+9P%RcAL4@dYJbh6TMOe$Fc};tjNZ2%XwsTq8{KC$X!LXhJXy?T4{FuvAH! z!yM zLJZ6;*_tT&geBnMSoE5xjv#% z4Rn9ozj+3lWQplxhvGv^E-yCy^7j*ciKZ4A%|!>>_?zf1zxhva#iI3i5Ght+NJ(&nFt+`ltsi}Ala|9u zCs;Kd*6$NGuhJ2j_6x0378A`h2s{0!5m_V&yNZVG;dxZFfI~iZ-BFRz>*GFu^m=^ zEVeG&#L+tsPSC<>O)xeAmfVDO1F)fA+#a=pE1r72_|;0DSlf2!DZ=;zu;Lu7w}y?= z#XT+N955rqj;~H|1j=EGh1l~245FD$biIbLCi94lHY1 z_<^Jhzhh>UNh71|l$kQVqh6zIn#c+FZjW+a-yV*EBXIId7(_5^3@m;Cs~^Hzy)j#| zijJJCJRY%#DD`9Im8({K%y^^x&5a|)BMy3}!K6M|;0#NGVdWlJqc@(G#z`8JxEB+N zrfZCkBrEsC*CrL$f8cF@yh+Uweu&#`=zG_srROQ9nbG9cpS?VW(qYuiMQ7?IW1woB zY`!sDHO|dKaxV-b%CM4xBRshvjglg}R`QMsLOPO={)f47Pxf2R_p$Rj18ldu4sfzdVo;cY<&Y2t7;k}xQ0xEeqO5j%X}Zd=c>jqiE~dZtk&k<*Vb_z_Ghg2@k5=ju7;ZMtF72ICe@P-1ePT2*_FgXM2( z?VcvyX)Z$N!)p7^Pl-zE)&7CuT#FyV3P*MPKYEGYo2yRkso~SiF_`j5o%U@VN3g=^ zZ0cypQ2*#%$m{cy`sUYs6fRz%898{IwvW+RH~z}U<~EJZ{uBI!-QI9((W~*k|!A1On)tbG}6kI8MHTyChi7aKBL%aBURw8s+ zuQ_bz$*1L9&G#*#WK7iBgoS@=>S`kq&GIvi^jyrLcD3mYQa`axjnF0JGv@ z`CQYIYp3`bT9~}rct{(R=(^MNR8Ig=fuJ4pSj*ecQLTgdR!-67T91JuqV#*(px6Af zL|Us&Y~$3OaY>uJt)A!D9;RDpQ{T4Zw7E-oXwy@SQ*;jRrHAQs>jXZE`06YyuMmX> z>#QoAh$3$p7wa5j6}s>yewb;Bt|Xm*UNk6l&9P57oDI797kCSntaVGqmGHa%u4}Kj z&ht^I`|>3(U{R)vwC{ delta 3554 zcmY+{d010d769;*U!JZN zE?X~bcCg$7VEO=LZlt?6>19jCMFOz+pYx2YH=}6)L*|n8cpM-HC~PBjLQ>KE}q_3a@%`s9po2;4wklGI5t|q;L0W{qJ;R-Se&keMTZIY<$wLfMdwF}MUES%tLYb*e>ys1OGg4CTN&3J)- z;}oVJBI`YXd9nu}_%#{UMn=bxN_#TqD4BkZ%sxgI_>e_Ekmb`+N4%gx3Cw?RdZ(I! zWiA24>39!eh{d-P*hK91?;!&olW|>S+C?%afh;*r)}91b`w>9xFTmEI;n8HxCemaC zwtgePxc#JmKd`GA9Os{;(RR@Hpnf~BEnNWI?_}mFQs2SG?u`$O{ZbtZ_w#1nVvlB3 zm|+`1)7XS-W;p2+K<1n$3*H|v2w-*zbr@P9_bfg+S4mdhC97G;J>LpY-v#+?7--)b z-j{I^8iV;%#>sL83dDGqvhZ4GdoC&BXzQglX>Q1AzqjxkS!6V%~2=_7<8%3T0zBma`|bkA5V%&q<>z?@Ho#Vr_S zn{PI4wtLx$ZTBdf@0BdLrdV_mKGk_p!DC0N@kA@vsz zv3i)SD-#v_;$j%-D>9jJ7RD|mlk+M?t1jd8%<&L4tG59}v7%SEreWLF3`*GB9qI-VTIO;o$Uho2g?#DZeLo7KvnU}@!W^sdV@@}CVAZ7D0K0l>7j96o zWZG+TRwJofN0x0TE7y=!73|iPEtt-W$nkPA(VI*Yl4U)l=`Lx$&F)NU!m1(N$R1dQ z6YIW*^xZ-ReL-f-CM&J&Iy-954`UBDJ7VGtV~-yA8Z%KyW{cRKT{xgAMeMViEJkz@ z`|7hstmYA75r^w1>5SOf9}~>YeL&oACM^*s+;hP4k|a*L^#;IEAkOcw2T=8iXA1BJ zb+5$@KDZu7_J|ifK8O)6B|{IA%DG=wn=;C12Fw-n~ED3ah#u%o-L%0)yzlK&KhcCJdSstypD|EZJK*t;)3OE-oER@ zVVBuLC)TrROL#}lRq&Dz=3E21C6o0^fSFQBj4B9g-3UqIx2tfg`Gw4MC9{J_lLNnu zQ(9tkBq_RJfDBJEa}k;EOBO|v+6Uz9b);?rS-pWYZI`6Z#ncWsLBt5a*cS{cg@W7EVfd3zmAY68)RLwzld-r2kmd79L#brTRea8b60+u$ zWOv65yzVW@vF&fMxRyxH44&Ui);yQIbHJj(g>u}y&+z;MuE>A^6a{d)FucED52uU5 z3=6Fzqh<_hfx^qwQTzc}v6s`U#sS3qNXD(>jAj+a<_;P0kTYGz3q`hZ=6DG%RtdNH z`VowEDA#r}0^d6A$%+W>E9naW?_M%?2dUAJSy#EUCRT=vr*q%{-xM49I+;?Pl`7?G z&H`lZlgbY^;9hl!^qVC0X#W_XOe>9yPQc>*D_Q9vO~25Gsk~5{-DAXBWgxR}N^`!b z#S(OkXYIT!z0%%LJ%-_m^wyygfYM5t{lGi6N2<)t`~V<#y==^pEX7A|BpDw;7TL<; z+mis~_heP6t+=K4%j&f%@KY`=J{PVLeW=%j4b$m}|1j_s68P-$WKhlNIyqO0S>BI`s{iwSZqESE>VC>`wPY z0qCB|M?aV2#9_-zTD?55e=b1Y6}j>c{4pX~FIVrzC78NIuKC1-lQ@jb6Unm& z+fnkO<@oF=V%}NdIVx|GLa~9tx0P_kaHp&IPWx2hQsIrYXDwf-@S3quk + AWidget - + version @@ -21,12 +21,17 @@ RetroShare について - + About バージョン情報 - + + Copy Info + + + + close 閉じる @@ -479,7 +484,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language 言語 @@ -519,24 +524,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -572,24 +581,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -619,8 +640,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -724,7 +750,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar クリックでアバターを変更 @@ -732,7 +758,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -740,7 +766,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -748,13 +774,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage RetroShare 帯域使用量 - + Show Settings 設定を表示 @@ -809,7 +835,7 @@ p, li { white-space: pre-wrap; } キャンセル - + Since: 開始: @@ -819,6 +845,31 @@ p, li { white-space: pre-wrap; } 設定を非表示 + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -882,7 +933,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -897,6 +948,49 @@ p, li { white-space: pre-wrap; } フォーム + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -925,14 +1019,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -946,17 +1032,32 @@ p, li { white-space: pre-wrap; } ニックネーム変更 - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -971,7 +1072,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 %1 のロビーにようこそ @@ -981,13 +1082,13 @@ p, li { white-space: pre-wrap; } 話題: %1 - + Lobby chat - + Lobby management @@ -1019,7 +1120,7 @@ p, li { white-space: pre-wrap; } このチャットロビーの購読を中止しますか? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1034,12 +1135,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1085,7 +1186,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1124,18 +1225,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name 名前 - + Count カウント @@ -1156,23 +1257,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby チャットロビーを作成 - + [No topic provided] [話題はありません] - + Selected lobby info - + Private プライベート @@ -1181,13 +1282,18 @@ p, li { white-space: pre-wrap; } Public パブリック + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1197,27 +1303,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1232,7 +1348,7 @@ p, li { white-space: pre-wrap; } いいえ - + Lobby Name: @@ -1251,6 +1367,11 @@ p, li { white-space: pre-wrap; } Type: タイプ + + + Security: + + Peers: @@ -1261,19 +1382,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1282,23 +1404,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1308,22 +1425,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1376,7 +1513,7 @@ Double click lobbies to enter and chat. キャンセル - + Quick Message クイックメッセージ @@ -1385,12 +1522,37 @@ Double click lobbies to enter and chat. ChatPage - + General 一般 - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings チャット設定 @@ -1415,7 +1577,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1529,7 +1696,7 @@ Double click lobbies to enter and chat. プライベートチャット - + Incoming 受信 @@ -1573,6 +1740,16 @@ Double click lobbies to enter and chat. System message システムメッセージ + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1664,7 +1841,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1687,7 +1864,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat グループチャットの基本スタイル @@ -1736,17 +1913,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close 閉じる - + Send 送信 - + Bold 太字 @@ -1761,12 +1938,12 @@ Double click lobbies to enter and chat. 斜体 - + Attach a Picture 画像を添付 - + Strike 取り消し線 @@ -1817,12 +1994,37 @@ Double click lobbies to enter and chat. フォントをデフォルトに戻す - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... 書き込み中... - + Do you really want to physically delete the history? 本当に履歴を削除しますか? @@ -1847,7 +2049,7 @@ Double click lobbies to enter and chat. Text File (*.txt );;All Files (*) - + appears to be Offline. @@ -1872,7 +2074,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -1894,7 +2096,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1909,12 +2111,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1924,7 +2126,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1935,7 +2137,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1970,12 +2172,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1985,7 +2187,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2143,7 +2345,12 @@ Double click lobbies to enter and chat. 詳細 - + + Node info + + + + Peer Address ピア アドレス @@ -2230,12 +2437,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2271,6 +2473,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2326,7 +2533,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2359,17 +2566,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2379,18 +2576,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2400,13 +2586,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2427,11 +2608,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2512,6 +2698,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2537,7 +2763,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2551,61 +2777,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: 名前: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: 場所: - + - + Options - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2625,7 +2892,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2681,12 +2948,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed 証明書の読み込みに失敗 - + Cannot get peer details of PGP key %1 @@ -2721,12 +2988,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation - + Ultimate @@ -2752,7 +3020,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2767,7 +3035,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2865,13 +3133,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2881,12 +3158,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2906,17 +3188,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2929,7 +3206,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2939,8 +3216,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2950,8 +3227,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2961,7 +3238,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2971,17 +3248,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3838,7 +4115,7 @@ p, li { white-space: pre-wrap; } - + Forum @@ -3848,7 +4125,7 @@ p, li { white-space: pre-wrap; } 件名 - + Attach File @@ -3878,12 +4155,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3921,12 +4198,12 @@ p, li { white-space: pre-wrap; } - + Send 送信 - + Forum Message @@ -3937,7 +4214,7 @@ Do you want to reject this message? - + Post as @@ -3972,7 +4249,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3986,7 +4263,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3996,12 +4288,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4160,7 +4462,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4182,7 +4489,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4280,7 +4587,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4310,7 +4617,7 @@ Do you want to reject this message? ピア アドレス - + Name 名前 @@ -4355,7 +4662,7 @@ Do you want to reject this message? - + Bucket @@ -4381,17 +4688,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4426,7 +4733,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4631,7 +4953,7 @@ Do you want to reject this message? - + RELAY END @@ -4665,19 +4987,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4687,13 +5014,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4763,12 +5092,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4901,7 +5251,7 @@ you plug it in. ExprParamElement - + to @@ -5006,7 +5356,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5181,7 +5531,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5257,89 +5607,39 @@ you plug it in. FriendList - - - Status - 状態 - - - - - + Last Contact 最新のコンタクト - - - Avatar - - - - + Hide Offline Friends - - State - 状態 - - - - Sort by State - - - - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name - 名前 - - - - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + + export friendlist - Set Root Decorated + export your friendlist including groups + + + + + import friendlist + + + + + import your friendlist including groups + + + + + + Show State @@ -5349,7 +5649,7 @@ you plug it in. - + Group @@ -5390,7 +5690,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5420,40 +5730,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5463,7 +5836,7 @@ you plug it in. - + Display @@ -5473,12 +5846,7 @@ you plug it in. - - Sort by - - - - + Node @@ -5488,17 +5856,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5546,30 +5914,35 @@ you plug it in. - - All + + Sort by state - None - - - - Name 名前 - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5663,12 +6036,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5679,12 +6057,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5697,7 +6070,7 @@ you plug it in. - + Name 名前 @@ -5749,7 +6122,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5764,7 +6137,7 @@ anonymous, you can use a fake email. - + Port ポート @@ -5808,28 +6181,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5851,7 +6219,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5876,12 +6244,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5897,12 +6270,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5919,7 +6297,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6029,7 +6412,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6037,12 +6425,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6058,21 +6446,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6222,23 +6595,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6252,8 +6620,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6262,35 +6642,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6299,7 +6657,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6392,82 +6765,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - 送信 - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6647,7 +7042,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -6667,7 +7062,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6681,13 +7076,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6700,7 +7100,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6798,7 +7198,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6809,17 +7209,22 @@ p, li { white-space: pre-wrap; } チャンネルを作成 - + Enable Auto-Download 自動ダウンロード有効 - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels 購読済みのチャンネル @@ -6834,13 +7239,29 @@ p, li { white-space: pre-wrap; } その他のチャンネル - + + Select channel download directory + + + + Disable Auto-Download 自動ダウンロード無効 - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7181,7 +7602,7 @@ p, li { white-space: pre-wrap; } チャンネルが選択されていません。 - + Disable Auto-Download 自動ダウンロード無効 @@ -7201,7 +7622,7 @@ p, li { white-space: pre-wrap; } - + Feeds @@ -7211,7 +7632,7 @@ p, li { white-space: pre-wrap; } ファイル - + Subscribers @@ -7369,7 +7790,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7501,12 +7922,12 @@ before you can comment フォーム - + Start new Thread for Selected Forum - + Search forums @@ -7527,7 +7948,7 @@ before you can comment - + Title @@ -7540,13 +7961,18 @@ before you can comment - + Author - - + + Save image + + + + + Loading ロード中 @@ -7576,7 +8002,7 @@ before you can comment - + Search Title @@ -7601,17 +8027,27 @@ before you can comment - + No name - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7649,7 +8085,7 @@ before you can comment RetroShareリンクをコピー - + Hide 非表示 @@ -7659,7 +8095,38 @@ before you can comment 展開 - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7679,29 +8146,55 @@ before you can comment - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7726,7 +8219,7 @@ before you can comment - + Forum name @@ -7741,7 +8234,7 @@ before you can comment - + Description 説明 @@ -7751,12 +8244,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7772,7 +8265,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums @@ -7802,11 +8300,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7829,13 +8322,13 @@ before you can comment GxsGroupDialog - - + + Name 名前 - + Add Icon @@ -7850,7 +8343,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7860,36 +8353,36 @@ before you can comment - - + + Description 説明 - + Message Distribution - + Public パブリック - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7919,7 +8412,7 @@ before you can comment - + PGP Required @@ -7935,12 +8428,12 @@ before you can comment - + Comments - + Allow Comments @@ -7950,33 +8443,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name 名前を追加してください - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7986,12 +8519,12 @@ before you can comment - + Set a descriptive description here - + Info 情報 @@ -8064,7 +8597,7 @@ before you can comment - + Unsubscribe 購読中止 @@ -8074,12 +8607,12 @@ before you can comment 購読 - + Open in new tab - + Show Details @@ -8104,12 +8637,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8117,7 +8650,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8130,7 +8663,7 @@ before you can comment GxsIdDetails - + Loading ロード中 @@ -8145,8 +8678,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8161,7 +8701,7 @@ before you can comment - + Identity&nbsp;name @@ -8176,7 +8716,7 @@ before you can comment - + [Unknown] @@ -8194,6 +8734,49 @@ before you can comment + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8389,28 +8972,7 @@ before you can comment バージョン情報 - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8457,7 +9019,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8499,7 +9082,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8534,78 +9117,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8644,37 +9237,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search 検索 - + Unknown real name @@ -8684,72 +9298,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8770,42 +9341,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8815,7 +9386,57 @@ p, li { white-space: pre-wrap; } タイプ - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8825,12 +9446,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8846,7 +9472,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8861,7 +9487,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8871,15 +9532,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8900,7 +9581,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8915,7 +9601,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8925,17 +9611,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8945,7 +9621,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8960,29 +9636,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8992,7 +9656,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9035,8 +9699,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9044,7 +9708,7 @@ p, li { white-space: pre-wrap; } - + @@ -9054,13 +9718,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9080,7 +9744,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9135,7 +9799,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9203,7 +9867,7 @@ p, li { white-space: pre-wrap; } - + Copy @@ -9233,16 +9897,35 @@ p, li { white-space: pre-wrap; } 送信 + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9252,7 +9935,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9301,7 +9984,7 @@ p, li { white-space: pre-wrap; } - + Options @@ -9335,12 +10018,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9374,7 +10057,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9424,7 +10112,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9494,7 +10182,7 @@ p, li { white-space: pre-wrap; } - + Add 追加 @@ -9519,7 +10207,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9528,38 +10216,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9640,7 +10307,7 @@ p, li { white-space: pre-wrap; } 下線 - + Subject: @@ -9651,12 +10318,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9666,7 +10343,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9736,7 +10413,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9761,47 +10438,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9827,12 +10479,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9843,7 +10495,7 @@ Do you want to save message to draft box? RetroShareリンクを貼り付け - + Add to "To" @@ -9863,12 +10515,7 @@ Do you want to save message to draft box? - - Friend Details - 友達の詳細 - - - + Original Message @@ -9878,19 +10525,21 @@ Do you want to save message to draft box? - + + To - + + Cc - + Sent @@ -9932,12 +10581,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown @@ -10047,7 +10697,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... ファイルを開く... @@ -10094,12 +10749,7 @@ Do you want to save message ? さらにファイルを追加 - - Show: - - - - + Close 閉じる @@ -10109,32 +10759,57 @@ Do you want to save message ? - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10157,7 +10832,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10172,7 +10867,7 @@ Do you want to save message ? - + Tags @@ -10212,7 +10907,7 @@ Do you want to save message ? - + Edit Tag @@ -10222,22 +10917,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10518,7 +11203,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10585,24 +11270,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10614,14 +11299,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10690,7 +11375,7 @@ Do you want to save message ? - + Reply to All @@ -10708,12 +11393,12 @@ Do you want to save message ? - + From - + Date @@ -10741,12 +11426,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10801,7 +11486,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10866,14 +11556,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10893,7 +11583,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10902,18 +11597,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10923,15 +11618,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10954,7 +11644,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link RetroShareリンクを貼り付け @@ -10988,7 +11693,7 @@ Do you want to save message ? - + Expand 展開 @@ -11031,7 +11736,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11075,26 +11780,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11208,7 +11893,7 @@ Do you want to save message ? ピア ID - + Deny friend @@ -11266,7 +11951,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11332,7 +12017,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11347,7 +12032,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11367,12 +12052,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11402,7 +12087,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11471,7 +12156,7 @@ Reported error: NewsFeed - + News Feed 情報 @@ -11490,18 +12175,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed 情報 - + Newest on top @@ -11510,6 +12190,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11653,7 +12338,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11677,11 +12367,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11731,7 +12416,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11771,7 +12456,7 @@ Reported error: - + Test @@ -11786,13 +12471,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11841,24 +12526,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11882,12 +12549,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11922,33 +12599,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11959,6 +12654,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -12013,7 +12713,7 @@ p, li { white-space: pre-wrap; } このピアへのあなたの信頼はなしです. - + This key has signed your own PGP key @@ -12187,12 +12887,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12544,7 +13244,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12605,18 +13305,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12625,27 +13325,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12655,22 +13364,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12678,13 +13372,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12754,12 +13449,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12769,12 +13469,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12855,7 +13550,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12879,11 +13579,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13138,7 +13833,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13482,7 +14177,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13492,7 +14188,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13519,7 +14215,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13685,7 +14386,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13705,7 +14406,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13736,7 +14437,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13770,11 +14471,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13789,7 +14485,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13839,7 +14535,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13849,7 +14545,7 @@ Reported error is: - + enabled @@ -13859,12 +14555,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13879,42 +14575,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13933,6 +14636,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13944,6 +14653,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13953,7 +14672,7 @@ Reported error is: - + <!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; } @@ -13975,21 +14694,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14056,13 +14777,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14080,7 +14802,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14105,7 +14827,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14204,7 +14946,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14240,7 +14982,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14271,7 +15013,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14293,7 +15035,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14402,7 +15144,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14427,7 +15169,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14763,7 +15505,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14780,7 +15522,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. 保存された Retoroshare の設定をすべてリセット. @@ -14825,17 +15567,17 @@ Reducing image to %1x%2 pixels? ログファイル '%1" が開けません: %2 - + built-in - + Could not create data directory: %1 - + Revision @@ -14863,33 +15605,10 @@ Reducing image to %1x%2 pixels? - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15070,12 +15789,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download ダウンロード @@ -15144,7 +15863,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15164,7 +15883,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15407,12 +16126,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15427,7 +16156,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15447,13 +16176,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address ローカル アドレス - + External Address 外部アドレス @@ -15463,28 +16192,28 @@ Reducing image to %1x%2 pixels? Dynamic DNS - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15507,13 +16236,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15523,23 +16252,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15549,17 +16267,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15569,90 +16335,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status 状態 - - + + Origin - - + + Reason - - + + Comment コメント - + IPs - + IP whitelist - + Manual input @@ -15677,12 +16448,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15705,32 +16582,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15760,99 +16638,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15885,7 +16684,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15900,13 +16699,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16170,7 +16969,7 @@ Select the Friends with which you want to Share your Channel. ダウンロード - + Copy retroshare Links to Clipboard @@ -16195,7 +16994,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16211,7 +17010,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16234,7 +17033,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16260,11 +17059,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16273,6 +17073,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16333,7 +17138,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16575,12 +17380,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16596,18 +17401,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16618,6 +17423,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16627,7 +17437,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16637,7 +17447,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16647,7 +17457,7 @@ This choice can be reverted in settings. - + UDP @@ -16661,13 +17471,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16876,7 +17696,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16925,7 +17745,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17058,16 +17878,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17263,25 +18085,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17306,7 +18128,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17332,39 +18159,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay OK - - + + Waiting - + Downloading - + Complete - + Queued @@ -17398,7 +18225,7 @@ Try to be patient! - + Transferring @@ -17408,7 +18235,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17466,7 +18293,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17572,7 +18399,7 @@ Try to be patient! - + Columns @@ -17582,7 +18409,7 @@ Try to be patient! - + Path i.e: Where file is saved @@ -17598,12 +18425,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17613,7 +18435,7 @@ Try to be patient! - + Create Collection... @@ -17628,7 +18450,7 @@ Try to be patient! - + Collection @@ -17638,17 +18460,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17684,7 +18506,7 @@ Try to be patient! - + Friends Directories @@ -17727,7 +18549,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17790,7 +18612,7 @@ Try to be patient! - + Age in seconds @@ -17805,7 +18627,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17814,16 +18646,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18022,10 +18849,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18036,11 +18873,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18230,7 +19062,7 @@ Try to be patient! 検索 - + My Groups @@ -18250,7 +19082,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_ko.qm b/retroshare-gui/src/lang/retroshare_ko.qm index 0339ce064d1483d714cbf775be8a19bbdad8ef71..5588bf4230231b57f1a7d4b54e33b8847e6f25cb 100644 GIT binary patch delta 4710 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 delta 5120 zcmZwL2UJw&wgBKgGv`b>(-2S;0Y?y&5~5PXf&m#EKtLFZfT(~BO*(@V!BG(esbOeV z^u~h5k`*)|>eYxOC`OD0Urg?ea%1XEOs*x@zTO@->%R5Yd#>gB&N*|+U-sVTKMegB z|EIt4TPzJ-0L*OwSr9qxS8~>JGR7Z(T?ml(l014!He zG`Kx$I=SjkaNK0duGfVD)Zb zdJY2ki^ut&M1?1*$$gTlk?ydrebRkn4$aRtAMtt6{I8{lL zPy=ps1pxCq_B2pWYOa%EBV_nNG7@`kIxp!RGN+Bydy=I!WL+n@eG{x z6M*t|U}FOT9Iujd%SmrP(#Qukxeh?vjt@*bkFl0P#ylh2a)8a~!4OzYcIbdz-v(em zM9%L9w(BzhsWYiNL00)1R|%{P{lM;41HAKwT;ocnIRV>^(VMax*kcC(3J#AuOg5PT z`>77V8HdSaEOyuAYCE#dA4H~ZIk=P2dXRmL8NfRW%Gu8WW|x3&~=^?Cx14unXW_%0LRoiibx=8o&{k-e6udgO66Ugm% zA^MAcfZRKsUv3G zH>BE+T=tNRUP6{Uf|Y5H0Vae)q7d6RVFS6UblhRcG7Stb5!M}+C3*uDHHMLw50-M z`|tv8eG9O86>sT_&j1#g^FrUx!l|s}Y2$1Ff(v=EFYr2RUvl0OUcxOC-@5SJB)ROgI2{g~*0a~UDf_@vuZq8(B z!#7c|;sd-O@BpcKLx$WX!v*8sAS1sZqYsiRLdm$AanF#YAChHSva?T+^p+QZm8(Es z@(`xNbf2*eD0nQWzkvf+bwkji-3_ozXABeBr8G_v3|>6~U^^D;^R}Bg=7ztozDA}$B{P2=6XWzM^Wnw4IPpg2k`*Rco17UabHq66XRc>p zAOtQUHG9dhgJgIK8Sy!plS}I5WN92(mql)mVeYtKLf6_bcQ#?*us2K^e-@h?f-lga zu3wl(k8sHBoyo>pmVY)9OV>{DV=_C-7Gn;a zSq)<2n0&%R~&@kJw`ZeBte^U{8!{ z0h-#`503s7!=F!P?`L0~eg?2$L})wv3Dzr{^J5#}BNWcQx&vQ1@xp-nmHld;cC;@W6i z8XYiRB-`H>*6zZkC2yv%ZBUPePAPmZV=I7fkMO`~AXb{kWQIm~PL0R&c*2o8b^vl$ z;kV6L@77)uem@5TIv|DAq>~xP$Soe^wqDeLC$=1*18u&--`}Wl=#9cZcVJ~zjEV%V z53nT0h{OYb0ccJVO}PJetk7oUa(}YyzR2ACAwYGdD9G$Qz~Wb;oV&v~6(QuzZu0E` zQui&HsSy=S>f4GX{iUeDWbjK-!}U&p9fL+&nY+QeP@KBw6wW}A_~>`oj`;=Rp+Btw zERKn<2{2vC`^DG4zzVbCmiS-2_87B!B+^$HO0KIV($`qImhY3iqxJ-tvR4xHX+2h? zsibZinPWqCm`OrYy#V+Yq^NmJ1K2;M1I`@jsv_NL$hXC$_DeD)oz&^c!k1*pF0%YF zS-FkeG=5!cF70=WNW#)FZ~byjVrWD((SaDHWM$e@oZ4-YWKRZb?w_Ro9$CLolJNp# z7uHF(e;k4}*oJiffYis6mCj^cKe_#gWakL>JkFYIYnPnb^9pO!y*|KNoIrOjpadHo#b&`#xa1UD>zGE3xI|DxWun-;mbnHt;rt13MAoD zeX!xYYA$sVCfCxxk)c|$_;a$%o^1G;(;3t=aDm^%=}gA7bD3#Z@U<%C3QE*i-owZc zEvLVMH(WM}D_J7J81UsbxMH@taa_kvysqP2uJfyt012L4&$$KoO=m{d=X0M(pWu0q z$Y=$b7ENXsafWjZdVuuH-1&st`0X`;yV$%LgS&>iqGti@V#u`9+>oIP*GFdD(550x zo*{CMAL&`i{oMv@G}F!9%ZR~|y2<_6D#racQmzm?lr?$WXHv!cWf-hcr1yy+sbg^RFXgbI6hmnYT+d&X=uh@%2Yo6*FZ^dV_KKX)V*nHesFja2(r! zv>(VkPqJw1xP9c7JhF2$xidnRQ+4>+jw~{e&Jn`)t=gl zJ)bXY5VqlZwn)|zZHepMXR^IN;D}bSCUK!uwM({d6k9ZBRCc-twKkCRw#h!q$i@2p zFWJWqo>=abvI{N#n9RMh?;i|c4jneGnqX&$Um%}+2=CwAD|bx7!!zpSv!_ciMNi5- zXSHHVD&;|*H~>?>lSc_Z0eH(n9?xyWcJk#3v!CM3x{$>S$ojqVJR!DID<;=%l$S2T zW(eZtbuTbrlg;FfJe*O_ASEWW(to-SUU>e zQ!IXskuJHQ&>mO}km#?7?$%?-Od<=GDq_d>{S<3za6l8jQsmFa4l4F54jzAw3nq=? zkQU2(_Lqu5(Q{*&xr?EoP^oNX@Y}*)Imv1SS1k@oJA)U1%}nKN!3~_76s30$&e4>c zr1vXjKpFN$Uat)L!PM7f61T9Ca%zui_g+5~r+*WC7eY%EnGR zTnh{+n=CLJqK1{bY92xmEQnMd{tf$B`$&2C1rCnOu(Bs78o!1{l>Jqwv2yPxmz^M^ znw6J+#6^SkOXY2?8emgw&rX2~flbv$M;Lb9`)j zFL({*~| zm-%*+{{J(KelZTcFCt$!h|Go)k7whWV~(eVQbA2tsdf6~%)eTEsmRR)dQe*^0-uU7y7 diff --git a/retroshare-gui/src/lang/retroshare_ko.ts b/retroshare-gui/src/lang/retroshare_ko.ts index fee0558dc..41e6e72da 100644 --- a/retroshare-gui/src/lang/retroshare_ko.ts +++ b/retroshare-gui/src/lang/retroshare_ko.ts @@ -1,8 +1,8 @@ - + AWidget - + version @@ -21,12 +21,17 @@ 레트로 쉐어 정보 - + About 정보 - + + Copy Info + + + + close 닫기 @@ -479,7 +484,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language 언어 @@ -519,24 +524,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -572,24 +581,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -619,8 +640,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -724,7 +750,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar 아바타를 바꾸려면 누르십시오 @@ -732,7 +758,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -740,7 +766,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -748,13 +774,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage 레트로 쉐어 대역폭 사용 - + Show Settings 옵션 보이기 @@ -809,7 +835,7 @@ p, li { white-space: pre-wrap; } 취소 - + Since: 시초: @@ -819,6 +845,31 @@ p, li { white-space: pre-wrap; } 설정 숨기기 + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -882,7 +933,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -897,6 +948,49 @@ p, li { white-space: pre-wrap; } 양식 + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -925,14 +1019,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -946,17 +1032,32 @@ p, li { white-space: pre-wrap; } 별명 바꾸기 - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -971,7 +1072,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 %1 대기방에서 환영합니다 @@ -981,13 +1082,13 @@ p, li { white-space: pre-wrap; } 주제: %1 - + Lobby chat - + Lobby management @@ -1019,7 +1120,7 @@ p, li { white-space: pre-wrap; } 대화 대기방에서 탈퇴하시겠습니까? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1034,12 +1135,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1085,7 +1186,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1124,18 +1225,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name 이름 - + Count @@ -1156,23 +1257,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby 대화 대기방 만들기 - + [No topic provided] [설정한 주제가 없습니다] - + Selected lobby info - + Private 개인용 @@ -1181,13 +1282,18 @@ p, li { white-space: pre-wrap; } Public 공용 + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1197,27 +1303,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1232,7 +1348,7 @@ p, li { white-space: pre-wrap; } - + Lobby Name: @@ -1251,6 +1367,11 @@ p, li { white-space: pre-wrap; } Type: 유형: + + + Security: + + Peers: @@ -1261,19 +1382,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1282,23 +1404,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1308,22 +1425,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1376,7 +1513,7 @@ Double click lobbies to enter and chat. 취소 - + Quick Message 간단한 메시지 @@ -1385,12 +1522,37 @@ Double click lobbies to enter and chat. ChatPage - + General 일반 - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings 대화 설정 @@ -1415,7 +1577,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1529,7 +1696,7 @@ Double click lobbies to enter and chat. 개인 대화 - + Incoming @@ -1573,6 +1740,16 @@ Double click lobbies to enter and chat. System message 시스템 메시지 + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1664,7 +1841,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1687,7 +1864,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat 집단 대화에 표준 스타일 @@ -1736,17 +1913,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close 닫기 - + Send 보내기 - + Bold 굵게 @@ -1761,12 +1938,12 @@ Double click lobbies to enter and chat. 기울임 - + Attach a Picture 그림 첨부 - + Strike 취소선 @@ -1817,12 +1994,37 @@ Double click lobbies to enter and chat. 글꼴을 기본으로 재설정 - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... 입력중 ... - + Do you really want to physically delete the history? 실제 기록을 정말로 삭제하시겠습니까? @@ -1847,7 +2049,7 @@ Double click lobbies to enter and chat. 텍스트 파일 (*.txt );;모든 파일 (*) - + appears to be Offline. @@ -1872,7 +2074,7 @@ Double click lobbies to enter and chat. 다른 용무중이며 응답하지 않을 수도 있습니다 - + Find Case Sensitively @@ -1894,7 +2096,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1909,12 +2111,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1924,7 +2126,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1935,7 +2137,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1970,12 +2172,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1985,7 +2187,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2143,7 +2345,12 @@ Double click lobbies to enter and chat. 세부 정보 - + + Node info + + + + Peer Address 동료 주소 @@ -2230,12 +2437,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2271,6 +2473,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2326,7 +2533,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2359,17 +2566,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2379,18 +2576,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - 레트로 쉐어 ID 직접 입력(&E) - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2400,13 +2586,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures 서명 포함 @@ -2427,11 +2608,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2512,6 +2698,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2537,7 +2763,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2551,61 +2777,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: 이름: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: 지역: - + - + Options 옵션 - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2625,7 +2892,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2681,12 +2948,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed 서명 불러오기에 실패했습니다 - + Cannot get peer details of PGP key %1 @@ -2721,12 +2988,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation 레트로 쉐어 초대 - + Ultimate @@ -2752,7 +3020,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2767,7 +3035,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2865,13 +3133,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2881,12 +3158,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2906,17 +3188,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2929,7 +3206,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2939,8 +3216,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2950,8 +3227,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2961,7 +3238,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2971,17 +3248,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3838,7 +4115,7 @@ p, li { white-space: pre-wrap; } - + Forum 포럼 @@ -3848,7 +4125,7 @@ p, li { white-space: pre-wrap; } 제목 - + Attach File @@ -3878,12 +4155,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3921,12 +4198,12 @@ p, li { white-space: pre-wrap; } - + Send 보내기 - + Forum Message @@ -3937,7 +4214,7 @@ Do you want to reject this message? - + Post as @@ -3972,7 +4249,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3986,7 +4263,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3996,12 +4288,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4160,7 +4462,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4182,7 +4489,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4280,7 +4587,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4310,7 +4617,7 @@ Do you want to reject this message? 동료 주소 - + Name 이름 @@ -4355,7 +4662,7 @@ Do you want to reject this message? - + Bucket @@ -4381,17 +4688,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4426,7 +4733,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4631,7 +4953,7 @@ Do you want to reject this message? 알 수 없음 - + RELAY END @@ -4665,19 +4987,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4687,13 +5014,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4763,12 +5092,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4901,7 +5251,7 @@ you plug it in. ExprParamElement - + to @@ -5006,7 +5356,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5181,7 +5531,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5257,89 +5607,39 @@ you plug it in. FriendList - - - Status - 상태 - - - - - + Last Contact 마지막 문의 - - - Avatar - - - - + Hide Offline Friends - - State - 상태 - - - - Sort by State - - - - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name - 이름 - - - - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + + export friendlist - Set Root Decorated + export your friendlist including groups + + + + + import friendlist + + + + + import your friendlist including groups + + + + + + Show State @@ -5349,7 +5649,7 @@ you plug it in. - + Group @@ -5390,7 +5690,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5420,40 +5730,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5463,7 +5836,7 @@ you plug it in. - + Display @@ -5473,12 +5846,7 @@ you plug it in. - - Sort by - 정렬순 - - - + Node @@ -5488,17 +5856,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5546,30 +5914,35 @@ you plug it in. - - All + + Sort by state - None - 없음 - - - Name 이름 - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5663,12 +6036,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5679,12 +6057,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5697,7 +6070,7 @@ you plug it in. - + Name 이름 @@ -5749,7 +6122,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5764,7 +6137,7 @@ anonymous, you can use a fake email. - + Port 포트 @@ -5808,28 +6181,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5851,7 +6219,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5876,12 +6244,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5897,12 +6270,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5919,7 +6297,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6029,7 +6412,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6037,12 +6425,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6058,21 +6446,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6222,23 +6595,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6252,8 +6620,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6262,35 +6642,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6299,7 +6657,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6392,82 +6765,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - 목표 - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - 보내기 - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6647,7 +7042,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title 제목 @@ -6667,7 +7062,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6681,13 +7076,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6700,7 +7100,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6798,7 +7198,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6809,17 +7209,22 @@ p, li { white-space: pre-wrap; } 채널 만들기 - + Enable Auto-Download 자동 다운로드 활성화 - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels 가입한 채널 @@ -6834,13 +7239,29 @@ p, li { white-space: pre-wrap; } 기타 채널 - + + Select channel download directory + + + + Disable Auto-Download 자동 다운로드 비활성화 - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7181,7 +7602,7 @@ p, li { white-space: pre-wrap; } 선택한 채널 없음 - + Disable Auto-Download 자동 다운로드 비활성화 @@ -7201,7 +7622,7 @@ p, li { white-space: pre-wrap; } - + Feeds 피드 @@ -7211,7 +7632,7 @@ p, li { white-space: pre-wrap; } - + Subscribers @@ -7369,7 +7790,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7501,12 +7922,12 @@ before you can comment 양식 - + Start new Thread for Selected Forum - + Search forums 포럼 검색 @@ -7527,7 +7948,7 @@ before you can comment - + Title 제목 @@ -7540,13 +7961,18 @@ before you can comment - + Author 작성자 - - + + Save image + + + + + Loading 불러오는 중 @@ -7576,7 +8002,7 @@ before you can comment - + Search Title 제목 검색 @@ -7601,17 +8027,27 @@ before you can comment - + No name 이름 없음 - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7649,7 +8085,7 @@ before you can comment 레트로 쉐어 링크 복사 - + Hide 숨김 @@ -7659,7 +8095,38 @@ before you can comment 확장 - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7679,29 +8146,55 @@ before you can comment - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare 레트로 쉐어 - + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7726,7 +8219,7 @@ before you can comment - + Forum name @@ -7741,7 +8234,7 @@ before you can comment - + Description 설명 @@ -7751,12 +8244,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7772,7 +8265,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums @@ -7802,11 +8300,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7829,13 +8322,13 @@ before you can comment GxsGroupDialog - - + + Name 이름 - + Add Icon @@ -7850,7 +8343,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7860,36 +8353,36 @@ before you can comment - - + + Description 설명 - + Message Distribution - + Public 공용 - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7919,7 +8412,7 @@ before you can comment - + PGP Required @@ -7935,12 +8428,12 @@ before you can comment - + Comments - + Allow Comments @@ -7950,33 +8443,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name 이름을 입력해주십시오 - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7986,12 +8519,12 @@ before you can comment - + Set a descriptive description here - + Info 정보 @@ -8064,7 +8597,7 @@ before you can comment - + Unsubscribe 탈퇴 @@ -8074,12 +8607,12 @@ before you can comment 가입 - + Open in new tab 새 탭에서 열기 - + Show Details @@ -8104,12 +8637,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8117,7 +8650,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8130,7 +8663,7 @@ before you can comment GxsIdDetails - + Loading 불러오는 중 @@ -8145,8 +8678,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8161,7 +8701,7 @@ before you can comment - + Identity&nbsp;name @@ -8176,7 +8716,7 @@ before you can comment - + [Unknown] @@ -8194,6 +8734,49 @@ before you can comment 이름 없음 + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8389,28 +8972,7 @@ before you can comment 정보 - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8457,7 +9019,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8499,7 +9082,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8534,78 +9117,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8644,37 +9237,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search 검색 - + Unknown real name @@ -8684,72 +9298,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8770,42 +9341,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8815,7 +9386,57 @@ p, li { white-space: pre-wrap; } 유형: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8825,12 +9446,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8846,7 +9472,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8861,7 +9487,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8871,15 +9532,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8900,7 +9581,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8915,7 +9601,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8925,17 +9611,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8945,7 +9621,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8960,29 +9636,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8992,7 +9656,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9035,8 +9699,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9044,7 +9708,7 @@ p, li { white-space: pre-wrap; } - + @@ -9054,13 +9718,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9080,7 +9744,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9135,7 +9799,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9203,7 +9867,7 @@ p, li { white-space: pre-wrap; } - + Copy 복사하기 @@ -9233,16 +9897,35 @@ p, li { white-space: pre-wrap; } 보내기 + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9252,7 +9935,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9301,7 +9984,7 @@ p, li { white-space: pre-wrap; } - + Options 옵션 @@ -9335,12 +10018,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9378,7 +10061,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9428,7 +10116,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9498,7 +10186,7 @@ p, li { white-space: pre-wrap; } - + Add 추가 @@ -9523,7 +10211,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9532,38 +10220,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9644,7 +10311,7 @@ p, li { white-space: pre-wrap; } 밑줄 - + Subject: 제목: @@ -9655,12 +10322,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9670,7 +10347,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9740,7 +10417,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9765,47 +10442,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9831,12 +10483,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9847,7 +10499,7 @@ Do you want to save message to draft box? 레트로 쉐어 링크 붙여넣기 - + Add to "To" @@ -9867,12 +10519,7 @@ Do you want to save message to draft box? - - Friend Details - 친구 세부 정보 - - - + Original Message @@ -9882,19 +10529,21 @@ Do you want to save message to draft box? 보낸이 - + + To - + + Cc - + Sent @@ -9936,12 +10585,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown 알 수 없음 @@ -10051,7 +10701,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... @@ -10098,12 +10753,7 @@ Do you want to save message ? 추가 파일 추가 - - Show: - - - - + Close 닫기 @@ -10113,32 +10763,57 @@ Do you want to save message ? 어디에서 : - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10161,7 +10836,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10176,7 +10871,7 @@ Do you want to save message ? - + Tags @@ -10216,7 +10911,7 @@ Do you want to save message ? - + Edit Tag @@ -10226,22 +10921,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10522,7 +11207,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10589,24 +11274,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10618,14 +11303,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10694,7 +11379,7 @@ Do you want to save message ? - + Reply to All @@ -10712,12 +11397,12 @@ Do you want to save message ? - + From 보낸이 - + Date 날짜 @@ -10745,12 +11430,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10805,7 +11490,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10870,14 +11560,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10897,7 +11587,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10906,18 +11601,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10927,15 +11622,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10958,7 +11648,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link 레트로 쉐어 링크 붙여넣기 @@ -10992,7 +11697,7 @@ Do you want to save message ? - + Expand 확장 @@ -11035,7 +11740,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11079,26 +11784,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - 확인 | 레트로 쉐어 서버 - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11212,7 +11897,7 @@ Do you want to save message ? 동료 ID - + Deny friend @@ -11270,7 +11955,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11336,7 +12021,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11351,7 +12036,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11371,12 +12056,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11406,7 +12091,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11475,7 +12160,7 @@ Reported error: NewsFeed - + News Feed 정보 @@ -11494,18 +12179,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed 정보 - + Newest on top @@ -11514,6 +12194,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11657,7 +12342,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11681,11 +12371,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11735,7 +12420,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11775,7 +12460,7 @@ Reported error: - + Test 시험 @@ -11790,13 +12475,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11845,24 +12530,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11886,12 +12553,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11926,33 +12603,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11963,6 +12658,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures 서명 포함 @@ -12017,7 +12717,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12191,12 +12891,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12548,7 +13248,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12609,18 +13309,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12629,27 +13329,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12659,22 +13368,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12682,13 +13376,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12758,12 +13453,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12773,12 +13473,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12859,7 +13554,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12883,11 +13583,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13142,7 +13837,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview 레트로 쉐어 메시지 - 인쇄 미리보기 @@ -13486,7 +14181,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13496,7 +14192,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13523,7 +14219,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13689,7 +14390,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13709,7 +14410,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13740,7 +14441,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace 예상치 못한 오류가 발생했습니다. 'RsInit::InitRetroShare unexpexted return code %1' 을 보고해 주십시오. - + Multiple instances @@ -13776,11 +14477,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13795,7 +14491,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13845,7 +14541,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13855,7 +14551,7 @@ Reported error is: - + enabled @@ -13865,12 +14561,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13885,42 +14581,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13939,6 +14642,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13950,6 +14659,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13959,7 +14678,7 @@ Reported error is: - + <!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; } @@ -13981,21 +14700,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14062,13 +14783,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14086,7 +14808,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14111,7 +14833,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14210,7 +14952,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14246,7 +14988,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14277,7 +15019,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14299,7 +15041,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14408,7 +15150,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14433,7 +15175,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14769,7 +15511,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14786,7 +15528,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. 저장한 모든 레트로 쉐어 설정을 초기화합니다. @@ -14831,17 +15573,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14869,33 +15611,10 @@ Reducing image to %1x%2 pixels? - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15076,12 +15795,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download 다운로드 @@ -15150,7 +15869,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15170,7 +15889,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15413,12 +16132,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15433,7 +16162,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15453,13 +16182,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address 지역 주소 - + External Address 외부 주소 @@ -15469,28 +16198,28 @@ Reducing image to %1x%2 pixels? 동적 DNS - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15513,13 +16242,13 @@ behind a firewall or a VPN. 이 웹사이트에서의 내 아이피 요청을 레트로 쉐어가 허용합니다: - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15529,23 +16258,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15555,17 +16273,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15575,90 +16341,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test 시험 - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status 상태 - - + + Origin - - + + Reason - - + + Comment 답글 달기 - + IPs - + IP whitelist - + Manual input @@ -15683,12 +16454,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15711,32 +16588,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15766,99 +16644,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15891,7 +16690,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15906,13 +16705,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16176,7 +16975,7 @@ Select the Friends with which you want to Share your Channel. 다운로드 - + Copy retroshare Links to Clipboard 레트로 쉐어 링크를 클립보드에 복사 @@ -16201,7 +17000,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link 레트로 쉐어 링크 @@ -16217,7 +17016,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16240,7 +17039,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16266,11 +17065,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16279,6 +17079,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16339,7 +17144,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16581,12 +17386,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16602,18 +17407,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16624,6 +17429,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16633,7 +17443,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16643,7 +17453,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16653,7 +17463,7 @@ This choice can be reverted in settings. - + UDP @@ -16667,13 +17477,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16882,7 +17702,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16931,7 +17751,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17064,16 +17884,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17269,25 +18091,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17312,7 +18134,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17338,39 +18165,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay 확인 - - + + Waiting - + Downloading 다운로드중 - + Complete - + Queued @@ -17404,7 +18231,7 @@ Try to be patient! - + Transferring @@ -17414,7 +18241,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17472,7 +18299,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17578,7 +18405,7 @@ Try to be patient! - + Columns @@ -17588,7 +18415,7 @@ Try to be patient! - + Path i.e: Where file is saved 경로 @@ -17604,12 +18431,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17619,7 +18441,7 @@ Try to be patient! - + Create Collection... @@ -17634,7 +18456,7 @@ Try to be patient! - + Collection @@ -17644,17 +18466,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17690,7 +18512,7 @@ Try to be patient! - + Friends Directories @@ -17733,7 +18555,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17796,7 +18618,7 @@ Try to be patient! - + Age in seconds @@ -17811,7 +18633,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17820,16 +18652,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18028,10 +18855,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18042,11 +18879,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18236,7 +19068,7 @@ Try to be patient! 검색 - + My Groups @@ -18256,7 +19088,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_nl.qm b/retroshare-gui/src/lang/retroshare_nl.qm index 41bc44b0346ff82c5cb41002ee31b3c3b12856fe..04e2e3f6eedc6e53cbbaaec51d47eae4566dc80c 100644 GIT binary patch delta 28999 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 delta 52158 zcmX7w1ymJX7l!xDoHO^%4ZDB4JF#0aP*B9iR!}jpz(D1yhytRbfQs0FgxHGcX9Fsz z7+|;9fdO{?FK50~f|;)omQ;Ow!o^FqD*y_#zg8 ze}e^8k4*3YNx`*r9=eD;=DR^KG>F+Y7tb27XkYcc^91TOX@I;ET2ls zyn@eriGG~7i34SC8J#(9;A!Fm$_lEzOMoAUZE7#5PTxXgP)OeJ0US$m!AKbPl9YrS zsD6Odxf1vptU^?y81a9Rg6iDP;1Zl4L)4@YvF^8Zp0_241MXgt$gVL__bj4r_b}9n zn9699dL|1h-uHF-U_@|US@Kxt;g5p6^KqRic%U9PND9G-7BCH84Dyv&6QJt2f~aSG zTo-GrfVNw=#DOyDh|UfB1^E>WHGV*y^%NY63!DTo_Yu>;Y?1=Qb%r++O-UYtZ8LW< z$>VcLT310(_V*|G(0P)QodlJ&=Say}i0$W2Y&qt?$a_Kg!#QGs7@1>Fh^-7H{`3#A zb++n6Td@V#Rmae7!YITOgl%Tl7{4FshOY!ZBCrSXde?6_Ev@0d+&=R8stR3{dj zO-f`fVsSAfho97Wc#h7DVuH%mvx4mWHDY@>rs^#*TT(ZYR;FN{9un`5I|bE-jfwro zNJ;vn^V$tTelA*2bqgSN@er|cTZmm@#Jf8YyIO;|m%pIuR0+h0eaa$sb0tx;4mx`u z5tP^L(Ydt?*$RF@-i9wK;Ne`I7jFx)?wfTEAEk3dVV#@C3UZgNg6fE&#O{nB`BG^? zWwVdY?EZr6JcjyyeWJVT1X*iWVh?;s*?b2>`)UKp>*@(ATTbXafuX{A?wzbN?3SQv zXC(HnF)98>1=V54iG9G3$86IX-$G|9=Dy(kxj{NF^%7M4pXq!#SdewL;STYGY`vQx z-x8uT`YEw5fHQKr|pV^esH^x&U{=5zbLO8uJh43L1q4Soj>ygS@K9hwe>*a zj`>))e~1r^A!$iBomaec<~Juks2kCB~am!C2fY?iSES{PAOPLLJ_M`1*X3V)_!_kOnK3DX7Fh5ae@L65nJGm)S#S z{AxjIc40vo_Nd_hm4$fn0`58p4j}nD_ByB}Zq)gB9r3LbNLf{j_%<8nJ`y9aos)D9 zb{dq|VJHi@eSx5|8#js1%9+N3d>(EDpLryn98|k6)7iHs@mT!Ke=WgKB4;;2Dcw$x zZTk!6kg}(#&ZD?tTfvERJYfN!U`Rl9I__+jD=bx65SDRlW#Wn0`xSA)0@j=;$p5nt zKMXgTgb@SfH=%-xR~te8=eVFc5jT3;ouvN0g7R}0LB*#o*$V!HZ{AG&AskH2ae}Pp zFRXBQs&W~E{Lg1W)vXAr*yrk;6{KQ!@Nq6W{~Jq&_N$0CWs;#_v7KorDBtuULu3@O zk4MSa>;}mZWk~CBl$5zLY2imn>buHDrVsg~_-z;D4|B+Jq%LIA3$kR)Bl+tRDwMc@ z*sLE^=oYNq?Lkzy@eh)M-cY%-t4R9MlFGXcCFNU3Dj#v4lvC$)p0nz_TZk$aZB6tz zlPZPOBIRWYRknk8IrEOHXICT^WXq-McoO#U3Dt~ONQzIQ+I9zsyI4RxwM%=d-Mkp+ zNwo)#gI{k)bqj2M$Y`ny6D=hd6;whZsBS8@TA%MaPxYm`Fv-fAiaO6Ss#gy_V(l8L zw_-0Tp|7Z3!7i{ZS)?C??$vpAF4e>8SHgx;y;S^Q*jlQ01y2@shw4MoP*<}c{~AyA z?VrPR$LieYD#$~x>x4aNP(PJe@=9tVeaFf_t@CCBvir-3?zEy-$Dc$0IewtFeho?K zl}jBzJR=rThPo7p%<%5i1sY8WPoXY1vWQxap)PmANGjJ;=b9?iH57B5>qXt;Qb~SU zih8U|C8EWGit{y{OAZM#k7a`VVHxUK=LAvJxzzL6KO3ahuz~~Pt145^w-5)X?vq1- zX)Tpb4$X7GU(~C16iI78Qm=YTNXd&5j^cG~Jv#8gU z0Yo$BQm;8(h=1=zz0Svx+TWgf-LZ|qiFwp}Ip*e?8#%W8O;X+zL3X$>IYx{nY0(j# zzpe|)TNQHr?;y$hs*vNQ0mN@@C&yb@#PgezniFItda zA1J6g^(QAA^C9`OKRJ1vAZf;0o##CT<+HcRX^K50S1EE@XM($o(|P71o_Sd zG~m)%QhrsTfv#?(toEgWlOS$Z{-lA6F{N9}(ZKC9L01|Sw1K1)NUK4?;lzLE3#x60 z(xBroorjzSl~Hqa&fH0ZzV0Q~<0cLE@FAXjkOqgqw!fYxsGM@pnRZ|29i41PJsP|Y z_9Chh4LJ)xFh-&w=VBm6x6+XFtx3LWvl9nO{8*jmLv`MtL_^ZCnjP>9AV1MxXSN#+ zxfns}@QE}e--Dzb1{&HOa_ZGP8rtJDvDcMo=uUr#T7`z*e@(LQFdF&_pFm*nHUkuf56DBLe%=m0TwuBDE*e>AVJN*`E0AOXTVc)w*ZA&NDm6H7*Qu z90|hT-^e7_(=~|N)zaDPvCi;Dg8Zuw4Kvq(C|#j*d%n&?MFnkg_Be6CLLSpF*Fa)e zv4UGS2&!{x)3EV*MDvHxuz(GuJS$4WRji5m*94W(p*p<|((s?B5b=}{!DNSa@omN_&d>7z!=GRhJ=I*?YEfoMrRMWHjW&Hk*S zurS)GbgVt?*y4qu51|-nc{w_iV&`rl`Zbs0-jyV&u?xjNf}uIHly>j%gb60vm$Q`U z^AkaKHkI~Q&m!qiJ{|0}ig@5LI&>wIIv4Syu4EY_(Gjiz%gkx!U+i_&KlCMDX9 zGWzF|+NmvFN~=%2pC4rwgJB}+vyoU&g`O_8 zBPq59<&=viWqmQqX_rQ9*$v9+0kxYONY7dDuVQ^Lp@)L?A9f>9$ zu1dUN7E#PC$yjkD$v1N)^SP=dZy~9OgNE(6St{`jxuE*8&dAqN$(uMo+ea!j9IN}p zXQ|AV>Lf3$C6%9m>&;j$RdRB}NV-UsN0uP9!(pjPXRHm|pAu4)-k5@*ky4e*eIO)V zrD}l)!!A6N8nyaM(u5&`^85EvlQ0b3V=gsy@PYfxmzrfl)7|)=WS3qXYvhyE@+$P- z*l$wnc}_5`HmQyML6RmWOKq-{A!>bGYFnl{DU0h$ZLh+4tv)Tad#E7(kH0E)&3Z`O zxvga1xdSP;hfCdmreO}dOFe#gV>gVEdT#telJjnhvb>KpEFvGyXNfdoO$4zvPo>e{h9l=QL2?^_ z8`~N$x#wfI?06wfu;NCh^_DzdClC#ND^1w}33uwdG-Ll^qUon3?{;{A-o2&yo;OGt zovPD&8EC@^pD1ZQvK(r+EXmd%Dt2%m$@U0~vg{klulW-q!%4|+Q8QBAe@p&XXF;eq zOUqyUBKi_01%7iNbxfWV)GvaRQOP=I6_$dnS4jD>Q(F1!4j!H(H9a9af01E-CGd&nDW?Sc;tpr}Ol-6ra76*xf-=LUS07jL}je9VF$- zTq)6d9ouKIlvp2gd3lwzyD+xnrESt~A8%ODdeZJiR-7*(?d`CN*wl~GF%I`0G+R2} z3cKb=ymWjnvS+u4NXJvcNw&$7?X+KcB#UlJ=f{>Hc|nqtUT+++uw7C{HH?U78!2PA z2UP1o>9SJ-^uaYjcKVZadD1?TE(S`MgZJP`%z|niSLt$0AEM23rK=&ONqT)m%31|o zVT_cr7sCBIEz+5sBi*EQqWv#z((U#4NSV4;x_uH;kuX(fdKKwT3ws0z52Sm|9Ecr` zlI$Hc9LDOTR*~ z4PX2x{d$K$GI@^lX9;ZmIeS61Pk-revuz~ZvB*?86mmKkJV@gK>gag6cCq55#B-gei_3Lfpj`4Z&h*+A&y*FT5i?B z4RhW}Zc{alq+Z!_o0ScTttltB$vQ+7^h<8vd=v7|4}9hJ2Wpd?b4%{DrWulmL*%Y2 zFoYvt%Jx2XNS{>@R7X~l9h%`niR0zI#~E_CPi1HRoM_8WLCMXib6UKhvTnHCuP~fY z{z`cuA}Q*7S03oAAsN|E9x@#xzT6@Y*%=1^UrCXNu0?jcLz?XB-GRucFSl;l2l$EzZm=cUy3|oX*MzcAbFBc7Rj4j_mPGD-H*ut+@a$zBJ}k<|LI>}_t2v|OH` zvT2jf*;7U3+38onG4h;(-#@iio|DVLU-De5 zJ4r`B$u@5p7WT1hTmP5TCV6szt;1+iXC}x&G0^u(8|4*ekkw4_l~)dZNYdUW@~VtF zM5T|&AqP()pm-{WckW8+_@i?8283!)o#luD@MfKU%8^q%N%>Mv-t^52YiYNKGR}rVGO3lx}hY zBpBO1Ufxq3LSsP#c^?7`Wz7qD|C{DWt?rZ$)yEAy9wi^TScjCM#dJ=oD<=g(UWc}j zleULqaR$goa{ouli^_8HA1I=*D)Ldy4vEX3@<|hJ*ms0Y9Pn`qbj}>EbM+EIwO)jL zYEVADsHA+lXAV~R3PEXyy?pxEKy2I1^68s?q&&6CXOTXZt_I7geS)wS9Od&3$`b89 zBxfkFc*|lCRVpiq%?T zjzQtv`6%C-T8Fs9Tb)S_-{2<~G$C?#(p-8$y7QvPgdQX9o7m0Il~>DyJM ziV?f0eIKRn0_>uk1xkbPzr>1N(OGki(%@28tPMqJW?uz}iQ0)IOS?Te8DDkV6l%DT1 zkx(!T%C=0!p$C+WV}#Oc%}7#SPgi=M=}NNC6s6DLFl5T_D+5Zv9vmE{4EFISscDWf zcwcGcf*#cNJ3(TUlDtkoH1!FVjfQ8CJ*GRqMW$%1Of@5<7Q zbW*3-lz@Rqr&o{Ygm^d}`PT(OCR8(YN*R^Cq8*0(E3&HF1mJANbizN*A^#Oj`%t0e4N zf~=RO>^=^I6f;ZNS8o;3p8?9g_U=SKQv_N2qRPIf9f_iHmHqSJmhU`O4s=*V^0^S@ zzRY_g5BFj$F}stfwIR-+AToH-*%G?#h*6w}`&>Q?B*vhDvDz<>t+Nk}9`SZnwsE zO?FXkA1X(Tol+j;BX+!Db5R~QoQ_1JqCCkkleD_K^5l(~cy@%6voVU)vg?#*C?c^> z#g*sRV480&S6=ji$sU!Ub4Fw3mGKTSuX)OA876i7cjdL=8!3n0DsQ@kBCwgQyxZeX z)O>>S?jJ_XHAQ(}75U(-v&#GCOR@j2jS>gSqYlc)H5G`8<_WUlSCvoGk(&JyrQ{jX zN!tHP$vaz;)OP!nyoa#uYu74YnsZWSY*oIxV^;+GDBrrl&2BdcGCoa^=l@W?4T~pf zkCXEK8D#shSIW=3s0~*8sQjMHQU9s5Tlw2uA*n(wonf5Gc7CKfcVud12!_fArmn(N zIDKLUhl41;MKfbbFQV(Gn6X+eDcf2z^BGjQUc0a|D}CS#a&&suW@S#TCdIWeEBgeI z(b>H^Gd8etWA>8TcMB``75RUu^4fv}Qr?td|Eu6lil-;5=z=+`Se{ibsCb4KVRcfz zV1FyDUPKs4YgVuZc8H9cMYARk6jDA1uqJsYi58Y*O)EkT?{Z}=`VAyy-7(g3aw@TD zuB`Qg5~O%HV{IlaC8=E!YlmQ#iYBsluC__UcVA{5m*av*B-VLqabinOvo7^KiTp1y z2ira*jT*CF6|kT8bJoir?$bVy^$J01er$E-XgNgE&5eRQt}}CNf^8N4lR3_X?msa{ zP_6TY_3iwel=J0v-uuj)rIV;LHD;r1ZxGiX^JC+RK1GFdICGcsN&fVYxjRiG$#WTV z_iTrX$9(2~4cn}j!aPEXBUru3JWk<8@+@qUjErd!KS6cmVm6KXqncvU`J^1_JlUm=I*=GL1&<~4Zg3~UsIZX?}+i^Cp(J`Xnk<4db8cD%B zn9tG1BuyXA77iXtQvNQs$m=2Ugl3(KMzbYX^N5YGXG^|$6Fb?L1$;!|x@!gt#EmNX zL)eP>c0><1vlX$(A#Hfdf;9xEQ|sASaL^Jsoj!srup|rKJC@`_e|28Cr}OS!w(4>* zl20vUYu3&r=|XF^)(=yZmdQfG6wg*oJNOOJWh8;Y1l>g3_)tg8XDfowue6s>8~#jltMn z157Nkn?F*tZCT{@R4m#NY^(PLSjI@UZPr6#!TxOf`;mzMJ!XjmIX702pX#7%XFJ>WAX<5a#Woy3ls<{YCC8Aw z#9rITP8_U_O3JeWqO|s?A3Hn!GqC`FmQp&E__viT#RkD~V>L@zoelf&hNafPwtQBa zrOty_n{+e0pzVtJ3CaOEg6ilt>_Wm>QX3y&>8&BV5A9^>t|-y- zY?gizd4daN*u@t%^m@F`$H6@~g<^vI$V+x94N2x(H`(RU1>0;hyD}P<&n1UlDQHB9 z8L2bwh|ZJ@ooP39X8aXYURDugo%-oqUsI58>8~?7mR+&!d``^c0K3`-8B8b6t~#UY z-F+#$dMk~T!!6mhnjC(*g3heXU=32Ts!Drlh#B2oztXw*~iTx|zF3E1*hS7VXcwcw+!a1FI=dU{VB(N6&(Cdj)1zBV-_R6_E z$yrs{>yoH^{Fd13Rw+o$7})D6vq-wUN049GDya6Uz~1zSL~Ccq-nQw6wCG7e$fWqgSmD1vNIb@ur)l*!36f;{Oh`w~!*qy}#6XW||xo{#JwQmN{Y(Ok-h zw3=9%%QfGjA!!Ad|Lcbc#GfmLaATQYxZ<>)q*c>6M*>so)`1(^9YR(tl4}moe)IFV zb^s$~t8|x}mgEubtSzWSH{_NTjHLEK+^X&&zHXk*>sf+ot6{uQWEAm@hk5ZZj@<7y zUgFbqlF}#glKs&QQTqZfZNQrHdcaHfbSF9UmCpA&d6^@Hh-LWla#!IaBJ+6pL)qB> zb3%FLZt!M%Kl3V0QJbBAl~?)fM(p7LUbRFAR5mnTZF>g<7L|DQLlBoEKMJa@yLjyi zn0wm8YeOffgCFubzdn*$-pK35dExgtZ}6-Jv9yi6iHjQ|rU2gb_dt@GwBvT0!(bOW z@#bNFvH$P3*&APf%GImv^!3g|ZTri+?Y#qMmZNieFz@~uQ^wEm9+f%Ki?+P?2|Eaz%e?nv*p&)?pbZCM z>%|G4)1Nz5&nIQ>HSRbAPui=WpgKHpqE3iASOEPAvCybS3#oB|Z%`04aPupEh|MnjQP{=~>W-E%l{0b2Q0`UTCtZ0Y=`%IQA?1YUB?6V^?=;B72|=;N+9_(hX=mG1?vyyLGjhl zYO$KHSm1-AQcJ!fc{!YhiLbbLh}4dAd2nq!N%RUH+#OS7A0?3<`5$nR*9%183G*^pS;c^f<`lW4;UO5__}>>xh!ACE+NjtqW+l1m#w`Kz;_GAmS& zZ{&h%=fZ+Eb%HP7+_WsZ*dFlBzPMmuZ@%@6I}BM1zV+E5%=rnv%>hoO*KQs)748(> zH!;Nr5dZax@4OIBQp`6VTLf!jW;&03f;HpgAtMup)&h>3@RK zjo$@C|KIjxaY9*@CCHE66I2~q>zsC!C!F;|On8JRoPS30qc40{NJ+$oZTPM*Mr`#h zL3LU#PgKyzUeBg;|&_mL_8Q-HuVNpNfd!D!uKlz65J#WK_tp>g? z;RNFLVS>t&D1M+vD!gJpLA6{GKiCB!RKguWj@@u*AhuN(15auTVY2ofPnw2pH9wRm z#r{OabM2`_$(BsF4W*BZJpeRm9E22wW)|Mmu38v zqc8DoN&I}Vt)$k>;}^`3+wrgYg($e^&s})>xojjJl6c00Xp&Fw;1{RH^$m%P($Z-4?*R9f*^l!0&I@!73W!Y&0)(0d7qIwALH{ijL?*_s{D8y$-c3wVtPpOkN>H>egsjg7OJ7`ICQlgQ;kl@ z0k_$pYB~K$9kg2g->8!$_YYDlG|nfA>nbR{nX6X#gvHv=7N=Hhp8=)QL#^Wcm*m|e z)T#`5yi2>)s$=ZYUYV&@JAyAbyhN?h5K~q0oLa{nS*;`I)CTLflQemt&RLz*#^?*6 zGn3UOUI^E>+0>?kd`K;mq&6ReDN5|GwtNXEwfVT(no1BWlclz4;R*lW`GneOeScCO zeo(tiX->-2PiogG9Z2n&rFK1oeP8W>pcH&lP>#*edH0zhi%3?xJ}yD@{-=!SNkmY zBbMW*_Box5ZQ`o-ErlW4GD>xE_D5;voa!=lFWRep)&2~bj_uj%z&ZXT&2~@+?MK8@ zwV68Tnm@5F&(y&yjih=#RR^Cdi!V+WWM%rQL-)ez_>Bvy82*suMbyU zeTyS!^ICPqlgpn9sly~>Jccb(hr1NqNTxcXKfZ8xBXxu?-0-tX>d1n*Zht@>rQ9K& za#$VZoJ}mMygKRug3<83>Zs?rL~pF>XwOiR-#t-BuL3Vb3M!NE`GO5`f4~5BQl)<= zx7}B#6oZt?Uad|keiBu$pX!vfaga>S)Tte-;{uyi&-_`C+a=ZM&V@)BK3V6Cw(9gp z5UuAMs1S^@r8@D(uCnfjXb{5mZ*-vkm{jin)pt{6wzK z$9>fWxw}Y?&es`NSZ8{y&X-PteDx`v-|7jf^_Qy)y`oVc=&JhK!FS}=RsD`*@m*`8 zE^R!6lsOI6r5>2-tUc=TwHt|d8>rd>BC8Nm7;4}Ov{d{ZsTRcPEa$qqIt&+bzo4!; z0JS@_gSxgOl+o9@g6wWdK_2y3T^soog2Yt~JMV?ETzNIznof$>12y8w52A=#YUFHt zT=$T=sU$}5TdumPD|X4SQR?Q$LrED^#inlCg(Oq?95rg6M{XCyxPy;TZ9vy{bR7^wlc(n+U-IC6m6cYK|Kgqy0NI=jIoZlLFP}O;XXI@So1O zxq`}nn*{l|RGn*T>%3N9(8j-|sV@iTlBD>nFZb9%QoT}NH-*sXYEnP^MFHXXc=cl( zre?uNHNP7|rV}^SuMwz zmkVrvZ-b!`yy2YB27}8UV($kTjHx@Y|I>>a%*}ftnKZ>=zJXed0ZFi8iU4MnyrC*|#ZL(#_%NZ$2C=XrNQwlUIBtXMAbfCxiz&n%M8Ylf1| zvET2y7)p8I29}-`R9zP9?7zrRYNl-!Ny!<8Qdi(S&V>o`Q%42WKFF}D3OM?-s?)Rv@+H4Ghh`H{5K-O#fLyw&2z2B$lj@CiE& zeU5vfum7Z>@ArD7xSTQctL}<8V3DC;VqsFQ%9^Xr#A+Vxh z(onSDOkQP}l82$({8Q)6WI?s}cf(ZN7{!;=`JtVl?)@7w5MU}2V_v@)ig}I zum`cB(J(FjH0W)Zk&LypF;(Z@$~MES)aUS8?+xCmXgVI{WSHlHMN;OTVcvy@MEBzj z^Rj%Ae(z;i_z4zmL6o5&4v^ng7F4GEGx#su0!`>{@W=ZdlHF`Wz>vkn{l6IkQ`^A( zb~glHS&tF>YY4gU1&eRGVQun71SX9PYxBAz=(Qyn!Vu-E?YA1jD&xY>Y8%3)ts(Z( z!w~+e0m^K31$l(outD2J%DbK75+Bgfknj^R zUNST6LT4r29%9%vX85{VCKxXN&Op!C zPDAErSjeEohATh5pcv(7$bOD!_>G(4W~I`kytr$)c@r1xe9rKAL@UVZM8o3^Xh`=h zuXE`V!{hX9k~VEMJik(sSgjg{SNl7Xbg6p*vHzoM8s0i#8)kJiyq)!hl#}BP?`FXV z%sOfKR3H{JYZyMAaU-dvqv2cY8}M3@hTrEn$=@>#zyHD)tZ!}jJN`9E%U&9(NFS0@ zO-4#V>*bdTM!Cszk}`@2@~5Ya@>+Dye7|jE1zj_)*FhT&rpZQi6N*B)6^uqJR%?S? zW8t^WP$C^>ELun=YU^z*ezFb0_8LpHM`||qg0aN)N+fUAjAa*MM3UASD@F7n9#U23 z)l5OPL71`Xa;RjxN5<-l{-G7CqR#0*jkP8mhap>KtY!O?L9}|2v3?aSrYd&Erp{=+ z%8oQPU5q?k>E1@WQh2fjC5_F0A_X&PnV|eZF}4edCpo;9v5T=e$p@AiyTm&p`=tuX z7ds28jq4ljt*heTt%jiV{J7C=^C4)!K}NSv?vQYGjP6Tbl6*1D=$=*spEuZy6L5lGUu*RI1IzS$ zym5AI^k&b!XY{GP8;u5W9}6O6v0$on-NZ}ffm3R6fDZxYU_=zcihhLyX}on-QIzW!z9Gm85#{#*HoQh;?Sh$ntg3c4K7+d9VRP>9EO>y0u0b3=FA8spAhIV4AA7~@0m zvPsv~#)PBK(E-)lm~a6);kTPHq2QgOXGe_*4?S?6j0riRo$h&9oe=G=^wdmD{u6C$A_6l2=tWkff788cFH zu>T`28Z*9@L%D4um_>^7ALFIv;iT3|GhT{nOmr~Lcv-;>ZvJ4r{5~I{m1ewh2{oeE zg^X9rE+xA7*?4o{GLnMo8E+={B*|@(@#Y6ll0)wrAB=Xvs&8$~u^WIcm}p~8_ht|z zyNs`z{vhdBTjQ(FHnc{D-!Q)NM6CB@pz(E6sNBJ?bWSd5d^2(+se_6d-yB5d;a9+&0{ol+fuKFW}j>f^2()#%JU6-E>Wb{FW|1(X>{K zSf?YJxgv&i{SeLkI|%i`uA2D|ir43JHLJ%N;s>f}))|>3`F#*%XX|Pu9>K0$`=OPb zy_S?IleMzXz2Q9rbiV7O*~)joqUqQ}tKfPbC6NtUg@TNz%QUUh0KC7ovXxfFz8Z2o zT&wc1ELQC_t?KJ7#B8;->Y0$|Ym>AZBkz#>(^aeSY!iA!7HGA+x{)$sy4Ikdjg${V z1lfh{TH|zvR8JGFsaHe!gupnbwYRq;=|!~GeiWweZ*#4ECa(AQrPi@7 ze8JK7T1WgpZSSsi+WrH*;?=aygE{g1c&*F(E$FPYJ=40rSV(NtX|3n!6=*a#C#b|u z(E0qVpxS1s=IGWOKEPRLmq4ATM+-{*zUZ9#N2m8iolCn5%2zK5D#2!*@sWbe)+S0n zSlvSBmfAYc>R-rSaPgTx(0@VgbXjw1zYt#Tw&pYe35(FtIx`$}-W#X&!EROEduT4+ zh<@AL*IaCzluT9Y-+CIc(UR7GQc;ZH4y}J0`hV5QTQyfhAEGU7v|$CSHFB^vf@8bY zanVKwBKGT`YNKkqA=PqM8)L^%j6N;Mx;7Bxv1_$)<6}rV9HdQ*ZbN+EVQu11#CY^u z^FXCUJ~&PDSQrH!(WX^`98W2%%`o30wO37TW{(*3|5Pld&06bAbVbsNMLXh=v z)s`n!$1Vxi0>+ns?f<6*9qEPQ^B_TK@f|_d`8a6ng>IC$;soE4t}~{;wl)S|d@W21 z+w=y>sfOD6A~2z6wh5{ZkF<#6uE-mvY8yu$B>91hw($ns@Eb=#{=1yEX$R!{Iah64 zqbVduY|*0rz^mpr)1uGxA!X-MEe38_dQ(r^XZV?RR-RubeV2k1O^LyO&o zsrhO?z-eE?bvu2H0O<)t>8fVzFYgR66pR`P{|me{rBbo$%i7f zspGWFC>{l*i8T-8qZ*+H^@bwSou|ID|36Q6nfWI=VnD($pa9;yAGYNuy|{R(TR zKgA#-N)S|M*VN9;e};F1m)W$lD-R=$c1laR{2hsb;#x``=1$GgQp-$0Z}%|moEX|0 zg8X;9cK!!~&=3#pLIXP_m0h)Tw?mNEWwrFxcaWSqsa>^i31`E!tY1(}*C%Kb zr@gC)@O*kX?cMBw=zuT_DiM{n_Zlv^^njLEkfQxBQp=l!FN%GxeJO+~?b}!TatFd? zo3r-4)=5%(9MgVms0d5BNBcE3o1_~PwBMD+Vagx7Xn%^-Ao*INpz_FH`!nVNDUZ%; ze@n!m9e1Dh*Aa8|>5KM{ASQk4X#dVOBdO9X6E(~v=5W+RjpyM8H=3mLP&$8Rn3O4h z(M#6IWZdBgS>9de-kB!T#6+x#!zSx?2RNltrouZ5{Qs=KrXu@L+2|Q)DmMH%Dc3Vi zCE6D!>F*s=`EF>pk1Am*zW|o6+W=FAw7MvpT`*Pr1=U-3jH%jKjDX)=Q;iALi9L=t z)mYkra-pQo`?;o;Gx6qP?_Q=3PcdY5{+c?CfH&+_&D6P=k)$sMll}NmV*U?J z-FCQ>vS_WT+c9KJg1Uj&ZuXB&-78{yClxgfzJC(iaHMJ2-5V%ARW=R3n??La8`G#M zwp1eKYZ|=}`S_c4Oyk^UKy0=KXM&!lajC_LX0{iUGCl|@Q!Was_3oJ5;FhsyOm6KE zsKf^8JltH6^@z|Ju}F~btz&YVeFF*3M4hQEOm4P<6IY#0ZhsphQ=ysM?W>b~$zSKg z6q9>kTT;DincNfc1?iIom8-!f_dT!|8HG*m85o%jzfJCUkc8T>+cZA43n@SHP2(>O zgi3yInhPw5g&D={8P~KeiP%ZMsnlS*t##IJ8tNPa2ux zB11@~5vI7~ZHRT9D9B^4nc_|c5=Hu&5^vyzgl)1Z@#j9?21nDr`gp>C zfu@5U{PC7sFVo>4hzX~C9^UC5*+crj*upBvo@TrOdz=bu^h$ ziz-Rv4FsO;To%CNzZ%-v+lD0n;W_-;XIWsuH`PfeNYATWkMFkL;4w`a#in6j-8 z@h*9q>1NNrXi|?i-3*N;WzAsI?eIX7dJHu^C|?K)Wu56kGkfU&tof!#5)6v}3)7>C z1Bo1Zn;xCQVhmhvdh8T}gk*&2rO}fV47K3nbkobVMpQZ#)2oJFu;C%5ckkShSomi8 zxS%A-KKD#{wc)N~r-3s!`kIR{zw;779#hivvzqM}Nmt@czkS-k zpLaF=Sq`_Fhz8Ix@PFqlISq1s=!R888FQdSC$y{Mp zT~b_aIz5xjH4cVDO^-3xGBqSVC&^r^Eg~&%)m-ZpV#XJR%(i;fM&l0*9We{ecx|rF zAEM=&nVXi~gCC4Fx4cptK4Fl#ZTqf7CyNU5{cX(cBH`ttqs$%0Vq31ZnLEdSKpL*3 zxd*;Lnm^mzb7&z{M2?ty&%TQK!DqAM^5?{QcGEdxiMj95D5Pj3ZQ?*VGREwDDVu0R zqPhR(EK)tjng^b#iq42j=7A5!qG7OtdC-L!B=71esJtp=9-K6b(Tc^?Fo-Jf-yaWk)}fvIRz+Z?*IB1tu$n8WV5qO~&CyeSrcq@?RcK^|u?Z`y!J2=QWuxIHjVi^_Mw)&{A|d9Wh@l1^0Z+ z$$a^EJWBhA?{aAvg^nQz8pL>DeK-@1!M zy0EtSwuJg0Jt%3u{k;{bH8+^=?Z%z0sA;~B)+<(}z4^goq*@*anID^qk+Q6$`SG=f z#FrS&PXc^N>ORN(^p}Q!WRdy#*%YK&n+qyS>Ix2tKJ%-fe5;-L(>ciH(QD104Q{aIFU?<@6Kc2n z&ENAOPEQWkdGDN{w78`pYrWe1tH>OvVQ2HNn@&Wzcg%lst74xAnEy?}4NNI&A?{B;UJetV_Pp9Vp-^+5}7j{Tn@ zTeue%-Q4mPwf|p|7tXU7|28M7Q+bQ_2idKLuPmm`&C$~N$6_5e3C%64ZyAhsimU2E&!yk)T%C~nT z#b>ak!dw`ZiQH0QA^s@I#2=PQ)8UpU{kBxbpI2l5bFfriG?nBFjVzUy?J@d|+vi`2dFHx1hXptj=Alb*5F&dA^jO^2$Y! z*}81f4>tJe+}KZ$Z;jU(+uhPoO(%I>vd*XD1ljVdmPU`GkyunLE$aH?<x+t<=>4u*Kf0*ec3MN;fOL1phtK_-9K*}kXF zj!uHy?LR@a*BzZc4Z%HVKEcoZ>5Iaq$ShY`fu>X--&dvwB))4bCC8_d?68*D$r8hFWI*LD_wFBa7F1l;?hJx6E#x zjULhmmf1sLX#P#L%s!imx7`)Xyq$;9gr02i>D2*iXtu@o0{RA=Z(5c#vTY+-nq*m8 z3Hy3i1|5a*n-aC2mOaNw9|?p{lDO(>l04K2}A zA-BV3TVjsq6aUxP66e|w*_Lh@Vq1o!kSWbm>hUx2RIoB_X=tjEbT<|!Q>7HB8o$@8srIaOol^gN6 z+m`fg4GDjl&Tjf3Oc8svivdQ7Xm+8$qJkQ_PbTCUY&Sm1YUK-em}QQ z=iT8}rB63J_$jNhF&2Hp`Bo*d98xyh1$mg4mGyrJf1hIIMhKCvAFaF&`hRbguv#}1 z=>MgfwNxUu$1fLa>06$}{#$4*{r(H)%1==K*vMLDXBhD-{?@8ae_{Db3$in9tkrgf zk<>83S_2nU7Vfsz7@dmuf?8N>K{-k7D_Lv5SVTN$rM31;{571Mo7M&)-LQyjS{ql< zh#lHuZ5-!@{eQE8)voqhWI&2rTinMS7dv5X72lH7X2qukGW$V zYC>!nV6wV4#sk{^f~fy7`zqoDPiSU!9aR#7V}f;r3vxkGKGv~`C`er2V0Alx011VX zR=0vgMBo>zySs+K#AM^D%3 zm1tdafJ56gu!gqFMLSL_Ys8o|;=Rras@{jK5s}D>ZCzrGEDQs8cZW6d6TI!*7S=6z z1Cre_*sQUYYoNU*)0$9p77__dtcfkqo4J3nHPH_tSS7`}XG=vmp?lUtFW&3+gBCjkLRCZpsUSGp7+_|s59zc3axYK8a2Frzr-`UibxaWCJEA}@Vr7e2ztrvk3u)4sk#GIh1D0!16YIBN zSiBa#*6%-`k@Dub^+!Q@&E{tP@fO?AWr+3Hj;_cZd079IU5Eh2Tu7-^oakY0A?9|H zlux}2v1d2X|JO35ka`T>tlQT@YC)Mj>SrN?0{5CXuaK!k5OI53p(3ptlJqsWP>Jg< zq)g}k@9x_JqpGgG&uan!GY3dQfB-oOk0g>O4=EUe;r$W<0TH#rB$*^bCNtyAgb-?t zT&>r(R>i6AR(lnn)%vJb>u6i8k6TfDvG{6hdrPI)NAQdG=ns!FD@ixqs75VD*+Q{4kW=}TVK%=cIMxBF9? z{>TRZ_OqTx^!zFR_T5lOze@PG58+MT<|hC4i=NTUw(0)BRS#>{!4iMh*lCC>*7|#Y z0<*a`(@kr%9zJNy^jXKB{q zulg@d|3K5OYx7^R_xGAUUH7M|U(@vOuJvDMoretOUjKE!TCVw)uJiBTg!Zre&40rO z4{E*_Z2yf_*ze~Y@Zb2ugqAmHga0Nxid8p$=fC;R_cfn*#ed5txbv^P=D+(&9CAPV z>qF|zIj{KB5E^UyPX7a!6+%~k+5g~Q{|7~+e*bqS|3ovc?el+c>Uzz5tIq$>Id5tD zp$Y!S&nX7lo#KD|0zj(y= z^g`qXzvw?W88PEmcKDw^Z-HiBHuSjvg^8zY+O|3V7nZNr^vcKmFK$DmVsFgi z^Ns#r-2RMaz1iqLd=rGrJkS5@pTDB{UfJb;V zyWk270fY6S8K{@+m_d_wu=(gnt83QULP87k1u%)oblmu|Cb4ip0=udr)x!M3beW7qy*Km7k!9+Q>T|iov-C#beX=gch!^2O(ADCk|>L@y2waA_`ZZkr&^X)l@phzxx)}DLr zVU%b!*eBfzR$qUqeAQq3o&Bku4{N^n7uZX;^=jr{SJ+Dj{U~63!Cv(mjoohfYQ9)t zubIjE-(^qmjpqAiz+Us6X3h6NslBd0fN0fPyY-JvnsL)&d(#_lXxdNK*;`5=heZMytK292B;d+k4i(hdBPJ_GjLG1vMbI%2(sQHTJoP z<(ijS_Gf<>)3g;I*yk-yB3ImH@BJHuux`2iFDtMsZroyD@aZ-@&|tNFQ5h7^dnNWo z8-1ES^p5?n;Xi5G3v=v?|8fT$orCrzS~Vi1W%eaQdVyxV_!s+?t~A9>s>#UuloG!)$2vK z$yZ~4p?oz5Z;-Fns_&`Svr_gDJGA<~WnXbY0s+Le>UBn^e9dcr-cCLEc|3aM$M!Xo zc4+!H>g{VT!uEUrb^G6t`|-8Swy%5X^Dr)F+57!xYR0R3?fnnHxBK~J_VwRugHO3! zzFM!`Enj`tZC0aoTP9U+jDKRBQT(EA4y!3pL|Eph0g*t87Ut(g7dFQ3u$I|uFm+=->T`WyDENkFx)#O&AR0`Rv{KDpYHlpYT;E?_x}0HG5Wn>aoX5>#chYodw+b_#!>eU zJUBbAF8{EWuQ{LeCw2Sxr7Oxvw(*Lt*|7RLKJ{EKMa zT7}k}y8how3M#dP)}+e8j!+QN85#O zLTJHvLHvaAE`Z+&ysp+ZX-n}sfa`IsSKd*F&!6aL=o2+N4z8fTGeCj^;y5Wqem_13 zFp((!g>bD8pVh?6ye56PoWy0mMldgR;~vp?tzKBnJEK}BkStl%i)K-+Puz3RDjwqf zyo;CBJxMuCM1HE1+>U9@X!FT_j&G_>d6-AD*22Y|=zs*yl1mZAQgpfmRf&C=gm~nj zm6!U@M@ODqjTTY4kZ~y}A+$_rweo5ge#g*D9Lxx59T11G)|rnj?QKVwl$=hvD2}!W-!*Ep@w*=XnxStgGsidkGcb)# z^c%pPT;g^);bdy@W2Iu*!}_?skDf^wx3=SFPzpJ3=Gs!MIh&*;lAP>C#}Nz?!X~2d zQx4*8E4ADMlIK`%(Q>*mCDrhFp7`|~!!I5_#W#M4T^+v+d@@P-1g$>V?)n5BVaCV1 zI8BhFvCY~tDL53Ooe;8QYU1-#ipk=gU@GNypZbtJNeWv>C4)qB*rRz1YN-6!|sQjLHs(H zH_Laze%C7TahQlC;w#TjsHW=kZs&Wo)|*{o9l38P<^geDqdrl*-C$V7*{=DHI|tid z1a3D9M=wNES9nstd8zzV2jUb(r=7U2G)S(x%GIPCyic~}aEfOg_}mBf_RD+Y;@YRo z5-2joRHb^C;Y%uK&LN23y`rwdS2ENqInk??ALmZvgpNmxeS}CY14Y@N-cSyVA+c7>COcPy${SRd*ObO#glC(VuR-rf@o$L_uD zi685!H=ig;ef7x&d5yE{o2%%wCef!BP{r5iklld#er>5#p=Qn9HwdE8<(I9+N z#9hnvyiZYlxcjNz$=_~|3T?{F<&k7C?raJs89E#o~GT$-*eppDXw^8n$78e*DD6hBJ+6L%T2<)!K47c1R23 zagU?4Ds7cqWjs4rzEY2aVu%*$?8ZAvs*+V&xd2*mmw3i4gjU#u&|v+L3C<`erKCp+ zm;*yjBN*4BqPf*75DjyEc_JvRF+*7i%r!05ndyXPwgn@dP9Wl}j_e901IbV{;HsuL?TxU`H^tE0|!*p!{wilx=dD;}!Y`dV0+a{bD^Gt<=xf(_g99&lsKFGf%(B z6!RD8J?Zj=`Vu4kgC;%COt+k(f5j9Nmg&)Sa=Bh=oTz^XT#bSw+>C@U4*msQb54#? z^OJ)?araoWd|Edd1U6B7DaLu2h+B<2G$QnutO;wRY3asiUhhXY-ontZEY(`IEqLX< zad+uFL`8F?`gePlPy=R_DuZey$Q#6&r}!#I@4?61R%N-J49N9QN9_)^IS82s)8yGUz0G0?FK6Fc1od zvCQZ6hp;7ryE}r31Qy&0^hNt4$%GT_a@qrtPPuJsoW5XRG(HGn=yZmbwr+7kUCv;% z-wAYfa`~~F2A!^W2$GekbGG4&4u}oE3?znq$)2u@m8ZgO-wyYpCnp$=p$_| zn^M5-VES(H)N*}F!y?6u8YdP=fE^$s?$PYDu55KWg7IXiE7TFdm!U{9Dn`xGXQltL zN`G%;;}x!TX@hEW&$xYg?4T#dS^eH69Dy5pI{A70~K}yyn>5kZc z*eG6d>gFDBBDg#0v}g~U5ISrf&}w_ARbh`6NzT9OPz5 z3Vp6VaTaZQGUGQ8ClMtQGf>@T;cQfkiSwrWN}-0R=M;n3>%xpoCO7wBW&@!;fq17{ zaO!?36_`&)G!hARa5A|IRF$aam8@=YBEjT9G~Qd+)E;jJ-yq`yfk7xM2vaPYNZ6tF zu;foC)Dy-N8|Oe?KDSx7N2YzB)~83)*ZhZGcY;1sj7ghCv*fB#m2ex;SIUw*rY+df z9}gu5(Qi1^F(~SP3^#GiOZo%p8-AvL#t^&L8&ky}Ue?E?Z~BFv94S8gn%*&D95}N| z+bs6oZWNEoU$$zqvpgP;#?uF1)93od+&}1Z(qH_8{+WXGWv20k>G}y`|0t_iygkYq zEoRIz#);A@Ba%A(M>F|pjQD(&@qO``YU7A_??j_TOivpN(pS$ie0tp^?KDsv$7(3u zWCYy4RsJy)7G=~0M% zO}_CXT}kK`d%tTG7mjNSLVrY~NoQHGBO1px=@jqO8sqb65VLoQ$$N}^pVY?kzVXGp zFV6e0?%7+*XBkC{E3_<7Yk~TrG_fm6R8%6MzRWzvwb9_q&v z-dJK!%IRq}G{T`fe8sk3-mQI zk^#tS4lRov@Q{87yHhG501Qk}8^dQPip+G1+M@BK(~{_b(hNnqoelBMU|dervFv17@EE zps?7wj7%FYY6ads8EMn!%C>q~9H=p76st)CZiLA|Y<4nGc0X~HD}7jw3=O_aKjII~ zW`&qJ%dpemn{9kU7c&q0CW~*)GfJf>J9s0Wp9|jXY4cb?*35lWy{|U zzCZ|uD?0*e8HB+%^pu(*KGckkwjRH!6uI8LsdEk&=4V_aaoM$ciFj+0Svg5AJG~0e zAW7^9YY-6os;pY^i<5kl#M=XUX_fS=JOe5w36^N_?40SrdKqxw{6rdxg@!s6$oXkBWQ z=rv+$i9Tfxog5WrA||1nt5(FUN=A4kf&2RKLk~SDCoxBcXJlgz?}jIiZi>$yDYUHj z+^?4mDQFjzyNa{}^5H|!3E4VRB{ZE+LrJ54V;^nfW@q5OtN*O-N3%w983)Gjir#C^Ze z$InwZGIz;1oum9;sRKwd*$nc;$R=a*36e0^Hy2Y5TBY@BJs2ibR-A;;J!SXpxSc^W z&Yn0LN5j_rKuUV$L7?^S>L8 z`IzB6b!SDKCf8eT`2_BAT`baF(L6KKo`{{Sey>-csHq;kr1m~lIn)#*IC9+UPBPH$ zBw$2cV5tDRLRAUr7)PR=!Nfu!Cb$g2PF}I_?s&9628RR#;kND|#)|WPIODMH0jDbz!G&;eS1?Q$Boyh2 z#`~0)8t9;pQsdx?^g{!Y4vF!i5jYF#es^HUNkseT_NYC=N-qilQj~KN^b=8bUJgK{zR~=KTHlL7J{`at)~8PbLz;`9hhIiDNW%}^O89H z-wv9!1l=HbOo;^J8}8(CxTVN~GZw`Jn(A>cdYrb6ove#?1i~J;b-Lq$SdY76YE2~Q z1%m; zh0EbEuy?Q%?p`#J1XIE30l@Uk3Nuik*e88G#b9p+6?skdUPj43IpJbGz zXP#s@w)pyT=8DgJ!z{I_Y#DKMvle3G z4r3xhi^>v7H(0c$;Jd^dtf__ccL{!#=BAb_7f0^b>&4x**2C%j+l*Uua|=wy-jGo= z4qawlu&i&>=$Ub44zh-T-SLwOB$EW12DFmSlL<8}e)p15lCRwLUYNvtPB$9Ut)Dg~ z=v$V7CN}R>Dqp^zhw$bc>CV#zD%+w4QI<*RWa>rgZQ5#*#6Hx}J4HjQRa!#Q+hvDT z=SqzNaHcW(l?I9!d9(CB@TwTY^Z>h10r4t%)x#rgxX$lX5ON9L$E6GCMUOZM&)AY5 zUeH1@kZxpwm&=d{Bfa-#t4+WE3}b~pv>vUqVJ?RF6}CTm`d&a^v0**_GW6z;q@All zIK!EJ%p4{SBb>2lFHRCp1s*LHQyG9+Rt#Y`(c&#M(XkM+tP0TkEj%6)xcTr#@Vst$ra5@g3g9W7>e3~5~E^D1fXq`p+3ZP7$M5>)1?j#^e3a# z;m~bRDz4d}A}JRezhm7j9_%n~Sig<&n2s=FNJ%KbAT%hfg4DhoA*V~vnzaX^o@C^M z!KS`IZ^j}aI4O>N&6=KaK0mnJrCCNDl4z80=GD$=aQZ@#{v@?CI`0a_p|(lC)Po5) zm`Mj#Dm!SFP8p@4Ll3*aSP^VdRY;i*IxGDNXGtKAXhnY<`gLVI7>qarJ@|zH%}0(qR7y2cQ*_xNA;FD*#m3U-NR9Dk@IU=7mfCM6tC!yW0bhFiZP%BtPjJ{ zH1IMm80g#;f{hQfM-eG>JA?tds@s@j6#ZJ+k+H~_BSM?A@kH6pR!IRBgi?;!XX2-O ztxA3I(Z*qGqttcB-YF}fhc;rLAb19i6OvoiQ|l_uNBygmvr^Rx-XbR?&fljO&nNV! zwn%^yZaStux$&roJ+02&t@f`Z0$0^Kra(WfQEzHeKFqV)!ADs5tkzNGwBnYyNhQejEPc)S314iG@UjFo%&Vx>5x z8kNy?@o=L#R(!F_H#+^T(~U3VZz4$ovl`lgo+fdg=JiM?>%8G|bH|G%12g#>+zDci zW`jr$S{0%#rH@mwt<=8ILSxhtr5I0g_t2`qF5)XBn)(@k1iDS~vs5SmQ8I&)RVs_K zT4h~hwG-yHa24u`mW|HVP;aQtk$MY(vw+i%?HLVYTMj_i#s}p+*$;fH9IXwb?$I>V0YRPB4Md%0!R53 z>1#TTR=r|wwFCV`kje%i7kPq2vcIFZ&P`nPAA`^v$3}KW2Nh*>V8Ahv*h2^vVjTeP7?kaBpQ{{h9P#x_ zk^W9!e6zJqL7|eh*eD^n`@Idx&|@#-M8$eSeD+LZ!2$(oyq8bA60S?L*_DL4h%qq) zdsjWmK4e0vC)meCk(*GG+J3C#dJUs?7~={RQ1p`T~z8-H8^B_mX#tRWKe5}AI8Xa@npa^8R-kPAV^pyT^nCfYD_Q|>&LMSRiCK_oN zvdWh_2j7Ti*XvUXy+EBRSD|5u$N|$(lub%l^kw3&RVV?V1S&m7w5f6_p8R>XMYZ4z z)riV4DZHrUN$EnG4#u(+hTH;!8Nolod4*(EKUB+JMNOTkzRjvv?o7)DC{E7}At77< z!dL~7vmLWD^&MffB8Iker+9gpuVe#JEx)EMRP<8OGo_Z*)+=#^9CSlml0uq0&W0Sx z$%r4VqkB)4t>KEHy~iPivsI3r?>!%Y>!Vgo?KI}!Rdk9xAw`OFT+1x2OaSv!o%BM- zdLqaH`94f9?6bNwpW^L%t%SJ!ervihGNm@8xWCJ=TS9%z+POPL>P;11i3Q_8KFFm) z7sAoz=A)7axLv;6)v~R~8PpxESzFz0?k3i#8e;&^vWF5gAwFvN#>T;NGszI=pYW;6%PUj0t`oY zJ3w=rqT<{yg87(+I1LEzg9L!a~fsWo_Qrw;}z9g=yHK)n`%dghf%9|*>N@NrG zOz|b`#Ku#Z14=pfU9Oh!u#$(I7{X3Kq`BF-XO#EMz3af%&B8x5Km{NjZJ)G5_$|vZ zGxVOOEQ!Pw@c@7kq$#paM&(otOZkg?qR~DDj@SV82TbSo1Q`L0%X=zkRmxSatgV#c zsu8F#8oiRyv2<$2a8-fIH+IJMb=w*|6G@sW-yoE?j|a*J?5rV$9K_z>Y99zDs)p z^<7X;L?}V=7$6S`5g$s7%$u(F{8cWE zUWs2jc3anq|Nf1!Db?OHS3Gj7ae{dNUGwzRbBD)|-HLA8!4mpp+|U8I4uxg_f2;hg zy}m}#dN$ViPi*XV`5W1h$wKgF50}`U`^oIb$K51;wA(kKgr(z-mi5Fw$(`PC(^|oT zs5E`d0y$Dyxpd0}+eeeIUc7&WwO*0nAe4jG>m(Z~K^(zmVb#@>e>W(a`*x3*L+%;Gs-uW8V$@zRz9Kv4!TASmb zz{s~K@EnGnzV^7 zTs}VHhx!u|W5B6wuZ?!qB7(zE81gaw(8UqP>@YLHiMRp~WLjI>I<^Q#I^u&dKz{%Z z&M-5jbUj?GOjL@-{Fe&k|no-XiL0t&0QsALXGt(5Ny{L(99RuUNHq))`v7yB+2*F9#9 z8gnces7g8KZ4j-0G)Iaz46|I^^RP9^BCrt)EwgTB4s6&OY>y!sl%X&H(LzFI6tXg+ zrPG)oPPWXNV~#-yZqJS}wW2wi^-+%H7V|nEZpYCLQ;GqQ9BLh--~Uce0eL zRZjf)h%6M5FZf!s)1H<~sk1p4=yR5Yqus|#>(Sj#AJ*-%;4Wt~KyWag>6aNT(TKWm z(Kp7l)0e+ye6zuvuC<7L4OZby2W7sqpxhdf)M?PNHMRvU$W&ryRLyE^Xs8yg6U>QX z>rHx5x~;?|s==bB^0UDM1-dG_*7 zpi}YkWOG_NG{JmCuPnkDAJ&@_I(Fb6!9_3w$40L1i@~)Ip?Cu%m5-63&7Hu4s=gtT zX_yCK4He2}rE{1cWAO)ZK@j+XvsMIWXY5}e?1plKQ$w27l&7Acor)Xixxzos^gUuj zEEHjco-|a9k&zcd85&%;!#VAc%!F=9kC|lNYaqVSxI!-$gUu+GJ2X}wC3&%c_K7f! z#(~t)q03#B912^biIAcYtKu%o9n;KN;;qSMal-^@V`!}io>|<%dJv$53_SZDiK zSdA?8V%>@6I8i*s{EU$|^Fwt;fB%q|Xsj~FtKuM9wBZ#-z$vNF;nD@Hp-_PWn&K?P zs|TQ94vBchtLce>4J=+}ETC2d28o}hnuW>}V45jk{%|l=M4{@6YQ;MagldkZ7m2CW zRuO;?`DN~UERSBaYGQ+=~2cnXLbgAh^FwCOD z8YoB+8)xVxbJ$t7u{yk_d~6k%X0U-ZD>xZ}cG6FgzW1q8tS~xDd_l0JiyhTUMv?9W zpr{&+;-xSoogO7>sxXP61z<9<|A0PKJW{Ls%Gr)Y?Lk;L%Po(4;GN>wJx>`$Wl_wC zl1F??oXk0TnN#$^8CHnf4_f(RO}SYnKE2!+E%N5+<83Yoe^j>{MA^^uIR)H^EXR@| z3ZYl~Cdv~sdv8R!&|6QNc?FaJl|luF*q|_9RZZb8@ui7onNLQzWGT)p6!U=>6lF$g z5;Dl`4VaymlmhW`iCHN)qZW!BVKHaK4ZxLDr&#*HWnRm!cs6LGJOe2SV()gna2g#3 z&hZR%;mI&r#L20Slj8DstkPnx(y+33HW1s-H73qb=v=Xu_bG3bi=*ndluJA1VMNtD zKZn~w<(Z+jf2Nn>U}=`i*-1;Tdpq0oWy)^ggnry1l@C|ltnMUEN+Lue3vXD0lAoWC zijvh4XOWDQu!48A?W&G_$V!UKpDG)2 z`^$VQqu}t8Wn?6S0@dAJE*wNAAh6I$0Jt(L(vOI07AmnuI+>_JxB0y4p7lV?KiJuh z$O5We2nsVmV+ir6{!lnsi!`G;3z8T_s24by{YdZ!x)UThKOmErE+liuae~PXRcnI= zV2or?mTi(R(HOBY^!*^p-zC|Yom*})lqE$K^#H5nRO_?u2pzX!s<yowXA zDrn0y2S7VAsD-fz{S+G|hGuCFI!DDY0?{~bfD{S39s*EzsrIOEImVi~(KW6#0kqcw zqae}^TLvs7Lu^qX>o_Zl;^=;JPY@|_09e#VW8!iqiC8q+#RM#gjYOlZh*nW{RM>E! zCyEu5oWiLaW`??9c#&aN;xQ;mRuqFP43&&r-MK6j0AA8feDdH+ZLXpGX!zoGAW9GW zD${pPF}EH+fcgDYGcE?M^34>dmEoO)GT$jP-xT*xFvpA1iDv#(Z!>BIu3QW{5fl}8 zga3H~LMc}{CTa^E^XX3vb8am+zuNP$Fz3T8nk;L3j~DdRSC}isXQ!DX3y*<##Gz?s z@h5>hofYOp{ljo4I?Y`4Pr#k4rXU~{#BqTiPNYPvKhYeMeto*R z)5X$)HZA zyAzt5#g|r?)28^{#_Q1-rZCfh{cRRUmYI{%vzMD`LluY@pN%x!f3GxGSfXn_4x)AA zM222s`&E7lrxB7k^_CFtECoWp?>uv2dd)iXL0jlYd__JVEB!_J7Q_yx-{Y$g16$3a z^n$a@i%i2_(PP{^DwvFJ2kVRQ) zrg*%n1cn7Uscc?J)g$q09C{K*N{VNg#i!sh(Fg0JY3FHq$r{zP7n3Hq z@sORmN{k(F?}Jmqy1tF$jPV7-fLp5mNS&emMeKVW3BC_X^sz(GnNo4P2c@72S<~t! zG~7}c_ka*Ju}pTl(F*ALOzZ$(L08wf)-KsEg9y;b$fCnq$T$NuH53t35Yjxvkk$`% zESE>JP&SEFd`}3;3)xC$29WXhx&w_F1B!r9raDuZP9$-T97cM)e+OzA9@%d0(|3yN z#`{Xd}P%&+uIa6CLu7A>+E@I<-`9*~)wT}s9lSt{$U1^r+`3>4i zHMZFPO$0yLyk-3Qs4{b4e9j%zt@)@}Qk6;4{>=35#=^mzjl@RFB6QsyFTQRZU6X_A7n0_ zi3C=F?Cq2;z;N#@_xuN2GS({Fruu$4!zcHc&~GzK-3UE9jLQv0;LEVHg2D71q^pJB z+=$upbv3xcjlu&H>Q1gUT7Z;nErpYA6;11WKM%^p3Gwf}N_b^O+oQbm_KM-@6jdebBuj=I=*&?cqpTE(bdp{uO| z_nxR!LCl!up|H@Qhbt@#s-%XgnRsY!P$;D&MnYiWYbI~uj|;tO-4ykUFz8<3Kz&C2|7$FkrHqc{e8$opxlDx z07&AX1Qn%F^0T!0Zd#=dXEYYB*yefh(MVUQo0%Sk09?8VHh4%Cbj0XA(u+pIr>VVp zgLH2ZA!u)|Qzs-Yf2!DVXS@rwX>|YHUf2ar&&Pv2Y0{QGY4Y+D`9nO$u~eOrW-2L= zgc}}%>sOisWT zb>wg=y&~fWV`Pdzx%J+;j}7zK3ajQUbrUhNsch*UEP?Nu=xhEh`R|F9}``BQbn&y=)@<=-^trdz&g`gOxNJ$2{z%gx!^+{|;eR(_m;XW2ai zXsYB#DY}T<;=@cl6R$&FxfgN0ifd9Kda8lSBU?eseyQ^Ky;sb^-jBBIN1K^r*<%K$ zVE4{IWV{QSi5QUjk~&D8w{YMV$xg79x zjXvKy7U#w1X3zb|hse0`xuM)+aZ%=jRd6mpA3`0=&7n!$j_3=T$RM4n`Wawpdru&S zbSJ`c!_^JrP3k}Pwk(J?@&vb6{M3(gUtOpr!cM|w97Np|FgR3$ER_nfrUi-(RZ|Fa z$r4zlc+exela#obVi_JnvYM$wSsE2&I1hRb0X-d(P%LYkl`e+`Gc4>p_m<%Jvilc@RaXB{naHb|CtB#5#n;QB^h7tem* zS7eNMk|j02)y3j{D14rLpFTZXSHsGOH;39Fk=i;O(#G|Jpc_ZtWo;w|f$;6?pMxMC(MoZPrNao||m>*`o$7-JTB9P&j z>RD?)Gx{drfONUd!veJx?~47O^NkgAzpIZ+y?ybNk1DbV z3^DwwN(q$hfoXw@OtB4km4m_E(kd!nT7_fX8ep_ici~Wp`{WN5CH1VYvjnn_)0{P| z7$5ZF!>TSp?%;J^5IZM*?^f_(AI2Tkog9=K$bDALM-_OS@)_%ri4`AL{}E`&PMUMg zhH-H`6CO5k31bNe^$&y+!SG<6a{9MCjg9)s56u5=GV(@#$cU}|I3w1ICE`PhxF>QR z5{V^LK19y<;`)ug!ZWF~Szt!RP6<_to^@kfcct!`T8iOEweUc_=VvG=tdu`9XsQ(m z5Igqxiq}%C*i9S`X4a!Q9_LL_ju@0EcYG7)b89JTITH6a?RG>`PW!EPWiA_J37uHf z;481B8puwJUI!;n_f*B8)B}8iGTv06xS$H_PtD@J(r5fg8iG3d+$~1Kzyh}8r ztHl&MmqbnAXeU}pV}*Rc8#O80vB0z!(^PJ@awfe4849L&uAVCBR^emCDw-5!1M)Le ziXSaDm>T@YMD_R>tOUCS^B^UJWD2$g*XOJz3pTPlnyaed6g}l!X1Ngv$z>{Xm7e92 zL_~D2UM|lDQ}oFrRd^@&y14jNeHyX{D(boiWAW^%S^%<%qjMz6S0GQl~P^SH|=UWk4#o<#qKO|_oF&h2Mx*>H0l+WC~a^ALs(g zfIA;hs~&1d{}U%^J9=IJll=_;uVOjN_JbA7Fed3oA`6UG5%7wmoRC}do;v5LIjg`^ z_W+iMW;@}nhNJSqU9hfjSY4)~M9+OL5{GqL;b;RqO_XiH2cJ-hFMx`9h70Z>LAE?s zka-LkYWvG+m_=j0Rh&L#Sa%xw!ju!8ARgI;D*DnqBY#54GCcDr9+FOoALr^^SaWOc-4`w@+weyKhNunv!B z_Jm$Lc~v06N71piE!c_kXOfe&@fr53oVr}D8t+MYh_~0}TNCW5GWwmd#^N2rnrQpi zDOq<}s3!hdpY@bEx(05Xue z5d2TD`ii_2E1tn=xC8mtziv(soNdh>rFV)i9WY8q=VXUO>}s>PbSs!h-Ay_?v!foq z7!ZLXUr9|}n=E{V6v;G-Loq_GB+)|_Z4ID20-+GPEiFseikBl+QTnzX>&37!V&RAI z&(O!=pG{;22%`O=3LoaW!$2K<+RF_>!{}z+chA?&?TfYx3VIY~$wNsH1#xn@StqM@ z@|7xtD5MU(R8mgsO?~dg!&M!=s*+-5eS#)tir7Bchd;@Ub`npCw=dPF6?@(}FDVZK zR#QGkNj@~svu7O7i{&e|O&~+FKwoC~Lj;JG{&8!jN{|q9;6rbexmpYEa+zta$TJ#L zrXpyD>D{SaD7%R);qnX6ndh4cK57no-ze5v^b$AvZX<$THq1z7w2CtVv zRJk$KE%yIjw-!(ico)}@ha6O(g{4@^DN|>F$vBS2J~%%}fw-p`r<8a2Een6?P#tr~ z&V*OUaBn8ru{n+_X#)4oDpN#f8!$)0+uhAbY*)P0qmnr7G)WtIsvwWYV*+u;ddNvv zBEfa?R$^N5!B4G8>u{G6(&2h7OX)|?!4p}J)Q}i8V3doO*BB$sen{d814fzrB|JXyg^hp%_!Fmn`SbQ1QVRIZb74m?O~-9{!06Cf8SXbIVR= zl|*-8fT! z@dP|))D&uVA(Q&f9USHmdR+itZ zi4_^?Af656uCNpaijQK6N0__Ld;k~cB>91P;A~76p0$ezNr=Z?!C#Nx0J_-<1|lio z^Qz2Ilx&V?fK_miP;@3As3i*wh5l1$^LH*qd?odwb;Otcub*38mEwwD>xD+!3ZcKD zSGuo-V$mCVQRYJzKKR>Ktb<>%3@2An%pOcHGky5G9m}-S#5o(R!eT1iIDR^?N10sZ zCp=Phy>CKY&hug`mhZ+Aa;e~|#5)|G*yWQ#Wx7b7|5+&Bo`s``W~J}ft@wk8tFYl! zeGbplDU+d!Y?t91+6P(0{^MM_b?xrqQU*wi02%--+Jmt+m7eTqU5j*vWi*>S7~ zd46o5jOLzhE)S5!!8V4=Sk@7jEFA_Lneh=1U8bKfFRO@^v7Pa8p2{ z>;gP|p}t!8^U$I-g?V}2q%bp`3Vu@0jt+`P{v9EaO$RL}HSS1}Xdg7jji$M9QMWjM ztT9m({hM!m2@S;(EDu41G75aH5iJ!65Rd;iUlE=Hs-iF~&PHtlJ~80SBYdP+QJqB( zd!!GHDv9tsM9R6bfXzb)*?!os`ZEw@p$e!dH1cGzUN}}I@^elVh~L)W?=;Y` zg@sd%2Vu*TocEvNn{KMVGBQIf8EK5$&TvvE{s<0oc<|Ktdpr7Ph=}HK0K(_}Q5-cZ zQr3xCa!J*nB{>Q2>hX^v9s`v;w8**#E_WaPghgcu&kisynGM@4!~J_ipv5@Dm1Sag+UxHl=|jq7^0w|B(==!(fY-+^KnY!%F&3&lcD7-5R;E1#j7e*%2@-C z?6Nb^J0(wzM8+`AtM)vu$#NWV)o9-s{1rx(WTd>ZbxmsQkz(`-W+w!sr5HmD z5Ds=FVfTR@+XHc#OdWC`38Y5#B0~rt(2lyuvI&|a7M8v{6K%Z>p2nOOT z`oy7*crXU@u8yc4W92K=>Tw>7J_5^l5}?MF&rc&=Yp_hR`U2DCe;EM*5>;n0$Tzj} zJ&3ufAd7tLhFebR(ddZ1Dc{8ON&9?jYE9TZapa4>iQ>9JpHDpVUEkOdoACD@5StN? PKIAJ;pZ~CLXy*R~=e(eA diff --git a/retroshare-gui/src/lang/retroshare_nl.ts b/retroshare-gui/src/lang/retroshare_nl.ts index 2fd87b55b..571cbfd0c 100644 --- a/retroshare-gui/src/lang/retroshare_nl.ts +++ b/retroshare-gui/src/lang/retroshare_nl.ts @@ -1,8 +1,8 @@ - + AWidget - + version Versie @@ -22,12 +22,17 @@ Over RetroShare - + About Over - + + Copy Info + + + + close Sluiten @@ -495,7 +500,7 @@ p, li { white-space: pre-wrap; }⏎ AppearancePage - + Language Taal @@ -535,24 +540,28 @@ p, li { white-space: pre-wrap; }⏎ Werkbalk - - + + On Tool Bar Op werkbalk - - + On List Item Op lijstitem - + Where do you want to have the buttons for menu? Waar wilt u de knoppen voor het menu hebben? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? Waar wilt u de knoppen voor de pagina hebben? @@ -588,24 +597,36 @@ p, li { white-space: pre-wrap; }⏎ - + Icon Size = 8x8 Pictogramgrootte = 8 x 8 - - + + Icon Size = 16x16 Pictogramgrootte = 16 x 16 - - + + Icon Size = 24x24 Pictogramgrootte = 24 x 24 - + + + Icon Size = 64x64 + Pictogramgroote = 64x64 + + + + + Icon Size = 128x128 + Pictogramgroote = 128x128 + + + Status Bar Status Bar @@ -635,8 +656,13 @@ p, li { white-space: pre-wrap; }⏎ Toon SysTray op statusbalk - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 Pictogramgrootte = 32 x 32 @@ -741,7 +767,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update AvatarWidget - + Click to change your avatar Klik om je avatar te veranderen @@ -749,7 +775,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update BWGraphSource - + KB/s KB/s @@ -757,7 +783,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update BWListDelegate - + N/A Onbekend @@ -765,13 +791,13 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update BandwidthGraph - + RetroShare Bandwidth Usage Bandbreedte gebruik door RetroShare - + Show Settings Instellingen weergeven @@ -826,7 +852,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Annuleren - + Since: Sinds @@ -836,6 +862,31 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Verberg instellingen + + BandwidthStatsWidget + + + + Sum + Som + + + + + All + Alle + + + + KB/s + KB/s + + + + Count + Aantal + + BwCtrlWindow @@ -899,7 +950,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Toegestaan Ontv. - + TOTALS TOTALEN @@ -914,6 +965,49 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Formulier + + BwStatsWidget + + + Form + Formulier + + + + Friend: + Vriend: + + + + Type: + Type + + + + Up + Omhoog + + + + Down + Omlaag + + + + Service: + Dienst: + + + + Unit: + Eenheid: + + + + Log scale + + + ChannelPage @@ -942,14 +1036,6 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Elk kanaal in een nieuw tabblad openen - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -963,17 +1049,32 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Verander gebruikersnaam - + Mute participant Demp deelnemer - + + Send Message + Verstuur bericht + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Nodig vrienden uit voor dit chat Portaal - + Leave this lobby (Unsubscribe) Verlaat dit portaal (Uitschrijven) @@ -988,7 +1089,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Kies vrienden om uit te nodigen: - + Welcome to lobby %1 Welkom bij dit Portaal %1 @@ -998,13 +1099,13 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Onderwerp: %1 - + Lobby chat Portaal chat - + Lobby management @@ -1036,7 +1137,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Wil je jezelf uitschrijven bij dit Portaal - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Klik met de rechtermuisknop om deelnemers dempen/inschakelen <br/> tweemaal klikken aan het adres van deze persoon <br/> @@ -1051,12 +1152,12 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update seconden - + Start private chat Prive-chat starten - + Decryption failed. Decodering is mislukt. @@ -1102,7 +1203,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update ChatLobbyUserNotify - + Chat Lobbies Chat Portaal @@ -1141,18 +1242,18 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update ChatLobbyWidget - + Chat lobbies Chat portaal - - + + Name Naam - + Count Count @@ -1173,23 +1274,23 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update - + Create chat lobby Maak een nieuw chat Portaal - + [No topic provided] [Geen onderwerp ingevoerd] - + Selected lobby info Gekozen portaal gegevens - + Private Prive @@ -1198,13 +1299,18 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Public Publiek + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. U bent niet ingeschreven voor dit portaal; dubbelklik om aan te melden. - + Remove Auto Subscribe Niet Automatisch Abonneren @@ -1214,27 +1320,37 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Automatisch Abonneren - + %1 invites you to chat lobby named %2 %1 heeft je uitgenodigd voor chatlobby genaamd %2 - + Search Chat lobbies Zoek Chat lobby 's - + Search Name Zoek Naam - + Subscribed Geabonneerd - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> ⇥ <p>Chat lobby's zijn gedistribueerde chat rooms, en werken zoals IRC. ⇥ Ze laten je toe om met veel mensen te praten zonder vriend te moeten worden.</p> ⇥ <p>Een chat lobby kan openbaar zijn (vrienden zien dit) of privé (vrienden zien dit niet, tenzij uitgenodigd <img src=":/images/add_24x24.png" width=%2/>). ⇥ Eens uitgenodigd tot een private lobby, zijn jouw vrienden zichtbaar wanneer ze ⇥er gebruik van maken.</p> ⇥ <p>The list at left shows ⇥ chat lobbies your friends are participating in. You can either ⇥⇥ <ul> ⇥⇥⇥ <li>Right click to create a new chat lobby</li> ⇥⇥ <li>Double click a chat lobby to enter, chat, and show it to your friends</li> ⇥ </ul> ⇥ Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock!⇥ </p> ⇥ + + + + Create a non anonymous identity and enter this lobby + + + + Columns Kolommen @@ -1249,7 +1365,7 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Nee - + Lobby Name: Lobby naam: @@ -1268,6 +1384,11 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update Type: Type + + + Security: + Beveiliging + Peers: @@ -1278,12 +1399,13 @@ Maar onthoudt: Elke data hier *ZAL* verloren gaan als de protocollen een update + TextLabel Tekst label - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1292,7 +1414,7 @@ Selecteer lobby's aan de linkerkant om details te tonen. Tweevoudig tikken lobby te betreden en chat. - + Private Subscribed Lobbies Privé geabonneerd lobby 's @@ -1301,23 +1423,18 @@ Tweevoudig tikken lobby te betreden en chat. Public Subscribed Lobbies Publiek geabonneerd lobby 's - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - <h1><img width="32" src=":/images/64px_help.png"> chat lobby's</h1> <p>Chat lobby's zijn gedistribueerde praatjeruimten, en vrij veel als IRC werken. Ze laten u anoniem praten met mensen zonder de noodzaak om vrienden te maken tonnen.</p> <p>A chat lobby kan worden (uw vrienden zien) overheids- of particuliere (uw vrienden niet zien, tenzij u uitnodigt mee < img src=":/images/add_24x24.png" breedte = 12 / >). Zodra u bent uitgenodigd naar een particuliere lobby, u zal zitten kundig voor zien wanneer uw vrienden zijn met behulp van it.</p> <p>De lijst aan de linkerzijde toont chat lobby's aan uw vrienden deelnemen. U kunt ofwel <ul><li>Klik met de rechtermuisknop om te maken een nieuwe chat-lobby</li> <li>Dubbelklik een chat lobby te betreden, chat, en Toon het aan uw vrienden</li></ul> Opmerking: voor de chat lobby's goed te laten werken, moet de computer worden op tijd. Dus check uw systeemklok! </p> - Chat Lobbies Chat Portaal - + Leave this lobby Verlaat deze lobby - + Enter this lobby Enter deze lobby @@ -1327,22 +1444,42 @@ Tweevoudig tikken lobby te betreden en chat. Enter deze lobby als... - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. U moet een identiteit maken om toe te treden tot de chat lobby's. - + Choose an identity for this lobby: Kies een identiteit voor deze lobby: - + Create an identity and enter this lobby Creëer een identiteit en enter deze lobby - + Show @@ -1395,7 +1532,7 @@ Tweevoudig tikken lobby te betreden en chat. Annuleren - + Quick Message Korte boodschap @@ -1404,12 +1541,37 @@ Tweevoudig tikken lobby te betreden en chat. ChatPage - + General Algemeen - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Chat instellingen @@ -1434,7 +1596,12 @@ Tweevoudig tikken lobby te betreden en chat. Activeer eigen lettertype maat - + + Minimum font size + + + + Enable bold Activeer "Vet" @@ -1548,7 +1715,7 @@ Tweevoudig tikken lobby te betreden en chat. Privé Chat - + Incoming Binnenkomend @@ -1592,6 +1759,16 @@ Tweevoudig tikken lobby te betreden en chat. System message Systeem bericht + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1683,7 +1860,7 @@ Tweevoudig tikken lobby te betreden en chat. - + Private chat invite from @@ -1706,7 +1883,7 @@ Tweevoudig tikken lobby te betreden en chat. ChatStyle - + Standard style for group chat Standaard stijl voor groeps chat @@ -1755,17 +1932,17 @@ Tweevoudig tikken lobby te betreden en chat. ChatWidget - + Close Sluiten - + Send Verstuur - + Bold Vet @@ -1780,12 +1957,12 @@ Tweevoudig tikken lobby te betreden en chat. Schuin - + Attach a Picture Koppel een plaatje - + Strike Strike @@ -1836,12 +2013,37 @@ Tweevoudig tikken lobby te betreden en chat. Reset lettertype naar standaard - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... typt.... - + Do you really want to physically delete the history? Wil je echt voorgoed de geschiedenis verwijderen? @@ -1866,7 +2068,7 @@ Tweevoudig tikken lobby te betreden en chat. Tekst bestand (*.txt );;Alle bestanden (*) - + appears to be Offline. lijkt Ofline te zijn @@ -1891,7 +2093,7 @@ Tweevoudig tikken lobby te betreden en chat. is bezig en kan mogelijk niet reageren - + Find Case Sensitively Zoek hoofdlettergevoelig @@ -1913,7 +2115,7 @@ Tweevoudig tikken lobby te betreden en chat. Niet stoppen met kleuren na X items gevonden (meer CPU nodig) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Zoek vorige</b> <br/><i>Ctrl + Shift + G</i> @@ -1928,12 +2130,12 @@ Tweevoudig tikken lobby te betreden en chat. <b>Vinden</b> <br/><i>Ctrl + F</i> - + (Status) (Status) - + Set text font & color Tekst instellen lettertype & kleur @@ -1943,7 +2145,7 @@ Tweevoudig tikken lobby te betreden en chat. Een bestand toevoegen - + WARNING: Could take a long time on big history. Waarschuwing: Kan lang duren bij een grote geschiedenis. @@ -1954,7 +2156,7 @@ Tweevoudig tikken lobby te betreden en chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Markeer deze geselecteerde tekst</b><br><i>Ctrl + M</i> @@ -1989,12 +2191,12 @@ Tweevoudig tikken lobby te betreden en chat. Zoekvak - + Type a message here Typ een bericht hier - + Don't stop to color after @@ -2004,7 +2206,7 @@ Tweevoudig tikken lobby te betreden en chat. - + Warning: @@ -2162,7 +2364,12 @@ Tweevoudig tikken lobby te betreden en chat. Gegevens - + + Node info + + + + Peer Address Verbindings adres @@ -2249,19 +2456,14 @@ Tweevoudig tikken lobby te betreden en chat. - - Location info - - - - + Node name : Status : - + Status: @@ -2290,6 +2492,11 @@ Tweevoudig tikken lobby te betreden en chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2345,7 +2552,7 @@ Tweevoudig tikken lobby te betreden en chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2378,17 +2585,7 @@ Tweevoudig tikken lobby te betreden en chat. Voeg een nieuwe vriend toe - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Deze Wizard zal je helpen om verbinding te maken met je vriend(en) in het RetroShare netwerk.<br>Dat kan op de volgende manieren: - - - - &Enter the certificate manually - &Enter het certificaat handmatig - - - + &You get a certificate file from your friend &U heeft een certificaat bestand gekregen van een vriend @@ -2398,19 +2595,7 @@ Tweevoudig tikken lobby te betreden en chat. &Maak een vriend met geselecteerde vrienden van mijn vrienden - - &Enter RetroShare ID manually - &Enter RetroShare ID handmatig - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Stuur een uitnodiging via Email⏎ -(Hij/Zij ontvangt een email met instructies hoe RetroShare gedownload moet worden) - - - + Text certificate Tekst certificaat @@ -2420,13 +2605,8 @@ Tweevoudig tikken lobby te betreden en chat. Gebruik tekst presentatie van de PGP certificaten - - The text below is your PGP certificate. You have to provide it to your friend - De tekst hieronder is uw PGP certificaat. U moet dit aan uw vriend sturen - - - - + + Include signatures Inclusief handtekeningen @@ -2447,11 +2627,16 @@ Tweevoudig tikken lobby te betreden en chat. - Please, paste your friends PGP certificate into the box below - Plaats uw vriends PGP certificaat in de box hieronder + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files Certificaat bestanden @@ -2532,6 +2717,46 @@ Tweevoudig tikken lobby te betreden en chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + GMail + + + + Yahoo + Yahoo + + + + Outlook + Outlook + + + + AOL + AOL + + + + Yandex + Yandex + + + + Email + + + + Invite Friends by Email Nodig vrienden uit via email @@ -2557,7 +2782,7 @@ Tweevoudig tikken lobby te betreden en chat. - + Friend request Vriend aanvraag @@ -2571,61 +2796,102 @@ Tweevoudig tikken lobby te betreden en chat. - + Peer details Verbindings details - - + + Name: Naam: - - + + Email: Email: - - + + Node: + Knooppunt + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: Woonplaats: - + - + Options Opties - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + Voeg het certificaat handmatig in + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: Voeg een vriend toe aan een groep: - - + + Authenticate friend (Sign PGP Key) Verifieer vriend (Teken PGP Sleutel) - - + + Add as friend to connect with Voeg toe als vriend om mee verbonden te worden - - + + To accept the Friend Request, click the Finish button. Om je vriend's verzoek te accepteren klik de Klaar knop - + Sorry, some error appeared Sorry, een error verscheen @@ -2645,7 +2911,7 @@ Tweevoudig tikken lobby te betreden en chat. Gegevens van uw vriend: - + Key validity: Sleutel deugdelijkheid: @@ -2701,12 +2967,12 @@ Tweevoudig tikken lobby te betreden en chat. - + Certificate Load Failed Certificaat fout - + Cannot get peer details of PGP key %1 Kan geen verbindings details krijgen van de PGP sleutel %1 @@ -2741,12 +3007,13 @@ Tweevoudig tikken lobby te betreden en chat. Verbindings ID - + + RetroShare Invitation RetroShare uitnodiging - + Ultimate Uiterst @@ -2772,7 +3039,7 @@ Tweevoudig tikken lobby te betreden en chat. - + You have a friend request from U heeft een aanvraag om vriend te worden @@ -2787,7 +3054,7 @@ Tweevoudig tikken lobby te betreden en chat. Deze verbinding %1 is niet beschikbaar in je netwerk - + Use new certificate format (safer, more robust) Gebruik nieuw certificaat format (veiliger) @@ -2885,13 +3152,22 @@ Tweevoudig tikken lobby te betreden en chat. *** Geen *** - + Use as direct source, when available Gebruiken als directe bron indien mogelijk - - + + IP-Addr: + IP-Adr: + + + + IP-Address + IP Adres: + + + Recommend many friends to each others Alle vrienden aan elke anderen aanbevelen @@ -2901,12 +3177,17 @@ Tweevoudig tikken lobby te betreden en chat. Vriend aanbevelingen - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: Bericht: - + Recommend friends Aanbevolen vrienden @@ -2926,17 +3207,12 @@ Tweevoudig tikken lobby te betreden en chat. Selecteer minstens één vriend als ontvanger. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Houd er rekening mee dat RetroShare grote hoeveelheden bandbreedte, geheugen en CPU vergt als u te veel vrienden toevoegt. U kunt toevoegen zoveel vrienden als u wilt, maar meer dan 40 zal waarschijnlijk problemen geeven. - - - + Add key to keyring Sleutel toevoegen aan keyring - + This key is already in your keyring Deze sleutel is al in uw keyring @@ -2949,20 +3225,20 @@ even if you don't make friends. Schakel dit selectievakje in om de sleutel toe te voegen aan uw sleutelverzameling. Dit kan handig zijn voor het verzenden van verre berichten naar deze verbinding, zelfs als u vrienden maakt. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Certificaat heeft verkeerde versienummer. Vergeet niet dat v0.6 en v0.5 netwerken niet compatibel zijn. Invalid node id. - + Ongeldig knooppunt ID - - + + Auto-download recommended files - + Aanbevolen bestanden automatisch downloaden @@ -2970,20 +3246,20 @@ even if you don't make friends. - - + + Require whitelist clearance to connect Add IP to whitelist - + IP toevoegen aan whitelist - + No IP in this certificate! - + Geen IP in dit certificaat @@ -2991,19 +3267,19 @@ even if you don't make friends. - + Added with certificate from %1 - + Toegevoegd met certificaat van %1 - + Paste Cert of your friend from Clipboard - + Certificaat van vriend plakken uit het klempbord - + Certificate Load Failed:can't read from file %1 - + Certificaat laden lukt niet: kan niet lezen van bestand %1 @@ -3866,7 +4142,7 @@ p, li { white-space: pre-wrap; }⏎ Post forum bericht - + Forum Forum @@ -3876,7 +4152,7 @@ p, li { white-space: pre-wrap; }⏎ Onderwerp - + Attach File Voeg bestand toe @@ -3906,12 +4182,12 @@ p, li { white-space: pre-wrap; }⏎ Start nieuw draadje - + No Forum Geen Forum - + In Reply to In antwoord op @@ -3949,12 +4225,12 @@ p, li { white-space: pre-wrap; }⏎ Wilt u echt %1 berichten genereren? - + Send Verstuur - + Forum Message Forum bericht @@ -3966,14 +4242,14 @@ Do you want to reject this message? Wilt u dit bericht negeren? - + Post as Congrats, you found a bug! - + Proficiat, u vond een bug @@ -4001,8 +4277,8 @@ Wilt u dit bericht negeren? - Security policy: - Veiligheids regels: + Visibility: + Zichtbaarheid @@ -4015,7 +4291,22 @@ Wilt u dit bericht negeren? Privé (Werkt alleen op uitnodiging) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + PGP-ondertekende identiteiten vereisen + + + + Security: + Beveiliging: + + + Select the Friends with which you want to group chat. Kies de vrienden met wie je een groeps chat wil @@ -4025,12 +4316,22 @@ Wilt u dit bericht negeren? Uitgenodigde vrienden - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: Contacts: - + Identity to use: @@ -4165,12 +4466,12 @@ Wilt u dit bericht negeren? Create new node... - + Maal nieuw knooppunt show statistics window - + toon statistieken scherm @@ -4189,7 +4490,12 @@ Wilt u dit bericht negeren? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT uit @@ -4211,8 +4517,8 @@ Wilt u dit bericht negeren? - DHT Error - DHT error + No peer found in DHT + @@ -4309,7 +4615,7 @@ Wilt u dit bericht negeren? DhtWindow - + Net Status Net Status @@ -4339,7 +4645,7 @@ Wilt u dit bericht negeren? Verbindings adres - + Name Naam @@ -4384,7 +4690,7 @@ Wilt u dit bericht negeren? RsId - + Bucket Emmer @@ -4410,17 +4716,17 @@ Wilt u dit bericht negeren? - + Last Sent Het laatst verstuurd - + Last Recv Het laatst ontvangen - + Relay Mode Relais Mode @@ -4455,7 +4761,22 @@ Wilt u dit bericht negeren? Bandbreedte - + + IP + IP + + + + Search IP + IP zoeken + + + + Copy %1 to clipboard + + + + Unknown NetState Onbekende NetState @@ -4660,7 +4981,7 @@ Wilt u dit bericht negeren? Onbekend - + RELAY END RELAY EINDE @@ -4694,19 +5015,24 @@ Wilt u dit bericht negeren? - + %1 secs ago %1 seconden geleden - + %1B/s %1b/s - + + Relays + + + + 0x%1 EX:0x%2 0 x %1 EX:0 x %2 @@ -4716,13 +5042,15 @@ Wilt u dit bericht negeren? nooit - + + + DHT DHT - + Net Status: Net Status: @@ -4792,12 +5120,33 @@ Wilt u dit bericht negeren? Relais - + + Filter: + Filter: + + + + Search Network + Netwerk doorzoeken + + + + + Peers + + + + + Relay + + + + DHT Graph DHT grafiek - + Proxy VIA @@ -4931,7 +5280,7 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e ExprParamElement - + to @@ -5036,7 +5385,7 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e FileTransferInfoWidget - + Chunk map "Brokjes" map @@ -5211,7 +5560,7 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e FlatStyle_RDM - + Friends Directories Vrienden directories @@ -5287,90 +5636,40 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e FriendList - - - Status - Status - - - - - + Last Contact Laatste contact - - - Avatar - Avatar - - - + Hide Offline Friends Verberg offline vrienden - - State - Staat + + export friendlist + exporteer vriendenlijst - Sort by State - Sorteer op staat + export your friendlist including groups + exporteer vriendenlijst inclusief groepen - - Hide State - Verberg staat - - - - - Sort Descending Order - Sorteer oplopend - - - - - Sort Ascending Order - Sorteer aflopend - - - - Show Avatar Column - Toon Avatar kolom - - - - Name - Naam + + import friendlist + importeer vriendenlijst - Sort by Name - Sorteer op naam - - - - Sort by last contact - Sorteer op laatste contact - - - - Show Last Contact Column - Toon laatste contact kolom - - - - Set root is Decorated - Start directorie is ingericht + import your friendlist including groups + importeer vriendenlijst, inclusief groepen + - Set Root Decorated - Start directorie ingericht + Show State + Status Tonen @@ -5379,7 +5678,7 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Toon groepen - + Group Groep @@ -5420,7 +5719,17 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Voeg toe aan groep - + + Search + Zoeken + + + + Sort by state + Sorteer per datum + + + Move to group Verplaats naar groep @@ -5450,40 +5759,103 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Alles sluiten - - + Available Beschikbaar - + Do you want to remove this Friend? Wil je deze vriend verwijderen= - - Columns - Kolommen + + + Done! + Klaar! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + Klaar - maar met fouten + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + Fout + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP IP - - Sort by IP - Sorteer op IP - - - - Show IP Column - Toon IP Kolom - - - + Attempt to connect Probeer te verbinden @@ -5493,7 +5865,7 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Maak een nieuwe groep - + Display Toon @@ -5503,12 +5875,7 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Certificaat koppeling plakken - - Sort by - Sorteer op - - - + Node Knooppunt @@ -5518,17 +5885,17 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5541,13 +5908,13 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Deny - + Weigeren Send message - + Verstuur bericht @@ -5576,30 +5943,35 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Zoeken: - - All - Alles + + Sort by state + Sorteer per datum - None - Geen - - - Name Naam - + Search Friends Zoek vrienden + + + Mark all + Selecteer alles + + + + Mark none + Selecteer geen + FriendsDialog - + Edit status message Bewerk berichten status @@ -5693,12 +6065,17 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Sleutelbos - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. Retroshare groepschat: berichten worden verstuurd naar alle verbonden vrienden. - + Network Netwerk @@ -5709,12 +6086,7 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Netwerk grafiek - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png"> netwerk</h1> <p>The Network tabblad toont uw vriend Retroshare knooppunten: de buurman Retroshare knooppunten waarmee u bent verbonden. </p> <p>Kunt u knooppunten samen aan het mogelijk maken een fijnere niveau van toegang tot informatie, bijvoorbeeld om alleen toestaan sommige knooppunten om te zien sommige van uw bestanden groeperen.</p> <p>Aan de rechterkant vindt u 3 nuttige tabbladen: <ul><li>uitzending stuurt berichten naar alle verbonden knooppunten tegelijk</li> <li>lokale netwerk grafiek toont het netwerk om je heen, gebaseerd op gegevens van de detectie</li> <li>Keyring bevat knooppunt sleutels u verzameld, meestal doorgestuurd naar u door uw vriend knooppunten</li></ul></p> - - - + Set your status message here. Stel hier uw statusbericht in. @@ -5727,7 +6099,7 @@ Dit kan handig zijn als je bijv. een externe HD deelt en wilt⏎ voorkomen dat e Maak een nieuw profiel - + Name Naam @@ -5781,7 +6153,7 @@ Om anoniem te blijven kun je een niet bestaand mail adres opgeven. Wachtwoord (controle) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/> <body><p align="justify"> voordat u verdergaat, beweeg uw muis rond om te helpen Retroshare verzamelen zo veel willekeur als mogelijk. Vullen van de progressbar tot 20% is nodig, 100% wordt geadviseerd.</p></body></html> @@ -5796,7 +6168,7 @@ Om anoniem te blijven kun je een niet bestaand mail adres opgeven. Wachtwoorden komen niet overeen - + Port Poort @@ -5815,13 +6187,13 @@ Om anoniem te blijven kun je een niet bestaand mail adres opgeven. Create new node - + Nieuw knooppunt aanmaken Generate new node - + Genereer een nieuw knooppunt @@ -5840,28 +6212,23 @@ Om anoniem te blijven kun je een niet bestaand mail adres opgeven. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5883,7 +6250,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5908,12 +6275,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5929,12 +6301,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5951,7 +6328,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6061,7 +6443,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6069,12 +6456,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6090,21 +6477,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6263,29 +6635,18 @@ p, li { white-space: pre-wrap; }⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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">⏎ -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:12pt;">Als een vriend u een uitnodiging stuurt klik om het "Vriend toevoegen" scherm te openen.</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: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-size:12pt;">Knip en plak uw vriends &quot;ID Certificaat&quot; in het scherm en voeg hem toe als vriend.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + - - Connect To Friends - Maak verbinding met vrienden - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6296,26 +6657,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-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-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-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">⏎ -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:12pt;">Ben je online op dezelfde tijd als een vriend dan zal Retroshare je automatisch verbinden!</span></p>⏎ -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-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-size:12pt;">Uw programma moet het RetroShare Netwerk vinden voordat er verbinding kan worden gemaakt.</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:12pt;">Dit duurt 5-30 minuten de eerste keer dat je RetroShare hebt gestart.</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: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-size:12pt;">De DHT indicator (in de Status Bar) wordt groen als het verbinding kan maken.</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: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-size:12pt;">Na een paar minuten zal de NAT indicator (ook in de Status Bar) groen of geel worden.</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:12pt;">Als het rood blijft dan zijn er problemen met je Firewall. RetroShare heeft moeite om er doorheen te komen.</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: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-size:12pt;">Kijk in de Help sectie voor meer informatie.</span></p></body></html> + - - Advanced: Open Firewall Port - Geavanceerd: Open een poort in je Firewall + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6323,71 +6682,37 @@ p, li { white-space: pre-wrap; }⏎ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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">⏎ -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:12pt;">U kunt de werking van Retroshare verbeteren door het openen van een externe poort. </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:12pt;">Dit zal de snelheid verhogen en meer verbindingen aan kunnen </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: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-size:12pt;">De makkelijkste manier om dit te doen is om in je router UPnP aan te zetten.</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:12pt;">Omdat iedere router anders is kijk naar het model en zoek met Google naar instructies.</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: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-size:12pt;">Maakt dit allemaal geen verschil, maak je geen zorgen. Retroshare werkt wel.</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: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-size:8pt;"></p></body></html> - - - - Further Help and Support - Meer Help en Ondersteuning - - - - <!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: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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-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-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-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">⏎ -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:12pt;">Problemen met het installeren van 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: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-size:12pt;">1) Kijk in de FAQ Wiki. Dit is gedateerd, we proberen dit snel up to date te brengen.</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: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-size:12pt;">2) controleer de Online Forums. Stel vragen en praat mee over 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-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-size:12pt;">3) probeer de interne 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-size:12pt;">⇥- Deze komen online zodra je met vrienden verbonden bent.</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: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-size:12pt;">4) blijf je met problemen zitten?. Email ons.</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: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-size:12pt;">Veel plezier met Retrosharing</span></p></body></html> + - + + Connect To Friends + Maak verbinding met vrienden + + + + Advanced: Open Firewall Port + Geavanceerd: Open een poort in je Firewall + + + + Further Help and Support + Meer Help en Ondersteuning + + + Open RS Website Open RetroShare Website @@ -6480,82 +6805,104 @@ p, li { white-space: pre-wrap; }⏎ Router Statistieken - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer Onbekenden verbinding + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - Pakketten in behandeling - - - + Managed keys Beheerde sleutels - + Routing matrix ( Routering matrix ( - - Id + + [Unknown identity] - - Destination - Doel - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - Verstuur - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Klik en sleep de knooppunten, zoom in met je muiswiel of de "+"en "-" toetsen - - GroupChatToaster @@ -6735,7 +7082,7 @@ p, li { white-space: pre-wrap; }⏎ GroupTreeWidget - + Title Titel @@ -6755,7 +7102,7 @@ p, li { white-space: pre-wrap; }⏎ Zoek beschrijving - + Sort by Name Sorteer op naam @@ -6769,13 +7116,18 @@ p, li { white-space: pre-wrap; }⏎ Sort by Last Post Sorteer op laatste post + + + Sort by Posts + + Display Toon - + You have admin rights @@ -6788,7 +7140,7 @@ p, li { white-space: pre-wrap; }⏎ GuiExprElement - + and en @@ -6886,7 +7238,7 @@ p, li { white-space: pre-wrap; }⏎ GxsChannelDialog - + Channels Kanalen @@ -6897,17 +7249,22 @@ p, li { white-space: pre-wrap; }⏎ Maak een nieuw kanaal - + Enable Auto-Download Activeer automatisch downloaden - + My Channels Mijn Kanalen - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels Geabonneerde kanalen @@ -6922,13 +7279,29 @@ p, li { white-space: pre-wrap; }⏎ Andere kanalen - + + Select channel download directory + + + + Disable Auto-Download Automatisch downloaden uitschakelen - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7269,7 +7642,7 @@ p, li { white-space: pre-wrap; }⏎ Geen kanaal geselecteerd - + Disable Auto-Download Automatisch downloaden uitschakelen @@ -7289,7 +7662,7 @@ p, li { white-space: pre-wrap; }⏎ Bestanden weergeven - + Feeds Feeds @@ -7299,7 +7672,7 @@ p, li { white-space: pre-wrap; }⏎ Bestanden - + Subscribers @@ -7462,7 +7835,7 @@ voor je een opmerking kan doen GxsForumGroupDialog - + Create New Forum Maak een nieuw Forum @@ -7594,12 +7967,12 @@ voor je een opmerking kan doen Formulier - + Start new Thread for Selected Forum Start een nieuw draadje in het geselecteerde forum - + Search forums Zoek forums @@ -7620,7 +7993,7 @@ voor je een opmerking kan doen - + Title Titel @@ -7633,13 +8006,18 @@ voor je een opmerking kan doen - + Author Auteur - - + + Save image + + + + + Loading Laden @@ -7669,7 +8047,7 @@ voor je een opmerking kan doen Volgende ongelezen - + Search Title Zoek Titel @@ -7694,17 +8072,27 @@ voor je een opmerking kan doen Zoek Inhoud - + No name Geen naam - + Reply Antwoord + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread Start nieuw draadje @@ -7742,7 +8130,7 @@ voor je een opmerking kan doen Kopieer RetroShare Link - + Hide Verberg @@ -7752,7 +8140,38 @@ voor je een opmerking kan doen Uitbreiden - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous Anoniem @@ -7772,29 +8191,55 @@ voor je een opmerking kan doen [ ... Bericht ontbreekt ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Geen forum geselecteerd! - + + + You cant reply to a non-existant Message U kunt niet antwoorden op een niet bestaand bericht + You cant reply to an Anonymous Author U kunt niet antwoorden aan een Anonieme Auteur - + Original Message Origineel bericht @@ -7819,7 +8264,7 @@ voor je een opmerking kan doen Op %1, %2 schreef: - + Forum name @@ -7834,7 +8279,7 @@ voor je een opmerking kan doen - + Description Beschrijving @@ -7844,12 +8289,12 @@ voor je een opmerking kan doen - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7865,7 +8310,12 @@ voor je een opmerking kan doen GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums Forums @@ -7895,11 +8345,6 @@ voor je een opmerking kan doen Other Forums Andere forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7922,13 +8367,13 @@ voor je een opmerking kan doen GxsGroupDialog - - + + Name Naam - + Add Icon Ikoon toevoegen @@ -7943,7 +8388,7 @@ voor je een opmerking kan doen Deel Publieke Sleutel - + check peers you would like to share private publish key with Controleer welke verbinding je wilt delen met een openbare Privé Sleutel @@ -7953,36 +8398,36 @@ voor je een opmerking kan doen Deel sleutel met - - + + Description Beschrijving - + Message Distribution Berichten Distributie - + Public Publiek - - + + Restricted to Group Beperkt tot groep - - + + Only For Your Friends Alleen voor uw vrienden - + Publish Signatures Publiceer handtekeningen @@ -8012,7 +8457,7 @@ voor je een opmerking kan doen Persoonlijke handtekeningen - + PGP Required PGP benodigd @@ -8028,12 +8473,12 @@ voor je een opmerking kan doen - + Comments Opmerkingen - + Allow Comments Opmerkingen toegestaan @@ -8043,33 +8488,73 @@ voor je een opmerking kan doen Geen opmerkingen - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Contacts: - + Please add a Name Voeg een naam toe - + Load Group Logo Laad groep logo - + Submit Group Changes Groep wijzigingen verzenden - + Failed to Prepare Group MetaData - please Review Mislukt te bereiden groep metagegevens - Lees - + Will be used to send feedback Zal worden gebruikt voor het verzenden van feedback @@ -8079,12 +8564,12 @@ voor je een opmerking kan doen Eigenaar: - + Set a descriptive description here - + Info @@ -8157,7 +8642,7 @@ voor je een opmerking kan doen PrintVoorbeeld - + Unsubscribe Uitschrijven @@ -8167,12 +8652,12 @@ voor je een opmerking kan doen Registreren - + Open in new tab Open in een nieuw tab - + Show Details Details weergeven @@ -8197,12 +8682,12 @@ voor je een opmerking kan doen Merk alles als ongelezen - + AUTHD AUTHD - + Share admin permissions @@ -8210,7 +8695,7 @@ voor je een opmerking kan doen GxsIdChooser - + No Signature Geen handtekening @@ -8223,7 +8708,7 @@ voor je een opmerking kan doen GxsIdDetails - + Loading Laden @@ -8238,8 +8723,15 @@ voor je een opmerking kan doen Geen handtekening - + + + + [Banned] + + + + Authentication Verificatie @@ -8254,7 +8746,7 @@ voor je een opmerking kan doen anoniem - + Identity&nbsp;name @@ -8269,7 +8761,7 @@ voor je een opmerking kan doen - + [Unknown] @@ -8287,6 +8779,49 @@ voor je een opmerking kan doen Geen naam + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8482,44 +9017,7 @@ voor je een opmerking kan doen Over - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare is een 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-weight:600;">privé en beveiligd gedecentraliseerde commmunicatie 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-weight:600;">Het laat je beveiligd delen met je vrienden,</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-weight:600;">gebruikmakend van een 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-weight:600;">RetroShare levert bestanden delen, chat, berichten en kanalen</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-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; font-weight:600;">Interessante externe links naar meer informatie:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpagina</span></a></li>⏎ -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li>⏎ -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li>⏎ -<li style=" font-size:12pt; 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">Retroshare Project Pagina</a></li>⏎ -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li>⏎ -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare ontwikkelaars Twiter</a></li></ul></body></html> - - - + Authors Auteurs @@ -8575,7 +9073,28 @@ 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;"> Nederlands:</span> <span style="font-size:8pt;"> Arthur</span> <span style="font-size:8pt; font-weight:600;"></span> <span style="font-size:8pt;"> Krijgsman</span> &lt; <span style="font-size:8pt;"> webmaster@zrhaaglanden.nl</span> &gt;</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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8617,7 +9136,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8652,78 +9171,88 @@ p, li { white-space: pre-wrap; } Identiteit ID: - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation Reputatie - - Overall - Algemene + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + - - Implicit - Impliciete - - - - Opinion - Mening - - - - Peers - Verbindingen - - - - Edit Reputation - Bewerk Reputatie - - - - Tweak Opinion - Tweak advies - - - - Accept (+100) - Accepteren (+ 100) + + Your opinion: + - Positive (+10) - Positieve (+ 10) + Neighbor nodes: + - Negative (-10) - Negatief (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> + - - Ban (-100) - Verbod (-100) + + Negative + - Custom - Custom + Neutral + - - Modify - Wijzigen + + Positive + - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name Onbekende echte naam @@ -8762,37 +9291,58 @@ p, li { white-space: pre-wrap; } Anonymous identity Anonieme identiteit + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID Nieuwe ID - + + All Alles - + + Reputation Reputatie - - - Todo - Nog te doen - - Search Zoek - + Unknown real name Onbekende echte naam @@ -8802,72 +9352,29 @@ p, li { white-space: pre-wrap; } Anoniem Id - + Create new Identity Maak een nieuwe identiteit - - Overall - Algemene - - - - Implicit - Impliciete - - - - Opinion - Mening - - - - Peers - Verbindingen - - - - Edit reputation + + Persons - - Tweak Opinion - Tweak advies + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + - - Accept (+100) - Accepteren (+ 100) - - - - Positive (+10) - Positieve (+ 10) - - - - Negative (-10) - Negatief (-10) - - - - Ban (-100) - Verbod (-100) - - - - Custom - Custom - - - - Modify - Wijzigen - - - + Edit identity @@ -8888,42 +9395,42 @@ p, li { white-space: pre-wrap; } Start een chat met deze verbinding - - Identity name - Identiteitsnaam - - - + Owner node ID : Eigenaar knooppunt-ID: - + Identity name : Identiteitsnaam: - + + () + + + + Identity ID - + Send message - + Verstuur bericht - + Identity info - + Identity ID : Identiteit ID: - + Owner node name : Knooppuntnaam van de eigenaar: @@ -8933,7 +9440,57 @@ p, li { white-space: pre-wrap; } Type - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you Eigendom van u @@ -8943,12 +9500,17 @@ p, li { white-space: pre-wrap; } Anoniem - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - <h1><img width="32" src=":/images/64px_help.png"> identiteiten</h1> <p>In dit tabblad u kunt maken/bewerken pseudo-anonieme identiteiten. </p> <p>-Identiteiten worden gebruikt om uw gegevens veilig te identificeren: forum en kanaal posten, ondertekenen en krijgen feedback met Retroshare ingebouwde e-mailsysteem, commentaar na kanaal berichten, enz.</p> <p>Identiteiten kunnen optioneel worden ondertekend door uw Retroshare knooppunt certificaat. Ondertekende identiteiten zijn gemakkelijker te vertrouwen maar gemakkelijk zijn gekoppeld aan het knooppunt IP-adres. </p> <p>Anonieme identiteiten kunnen u anoniem communiceren met andere gebruikers. Ze kunnen niet worden vervalst, maar niemand kan aantonen wie echt de eigenaar van een bepaalde identiteit. </p> + + ID + - + + Search ID + + + + This identity is owned by you Deze identiteit is eigendom van u @@ -8964,7 +9526,7 @@ p, li { white-space: pre-wrap; } Onbekende sleutel ID - + Identity owned by you, linked to your Retroshare node Identiteit eigendom van u, gekoppeld aan uw Retroshare knoop @@ -8979,7 +9541,42 @@ p, li { white-space: pre-wrap; } Anonieme identiteit - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work Verre chat werkt niet @@ -8989,15 +9586,35 @@ p, li { white-space: pre-wrap; } Foutcode - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People Mensen - + Your Avatar Click here to change your avatar @@ -9018,7 +9635,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -9033,7 +9655,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -9043,17 +9665,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - Kolommen - - - + Distant chat refused with this person. @@ -9063,7 +9675,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -9078,29 +9690,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -9110,7 +9710,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9153,8 +9753,8 @@ p, li { white-space: pre-wrap; } Nieuwe identiteit - - + + To be generated Te genereren @@ -9162,7 +9762,7 @@ p, li { white-space: pre-wrap; } - + @@ -9172,13 +9772,13 @@ p, li { white-space: pre-wrap; } Onbekend - + Edit identity Identiteit aanpassen - + Error getting key! Fout bij ophalen sleutel! @@ -9198,7 +9798,7 @@ p, li { white-space: pre-wrap; } Onbekende echte naam - + Create New Identity Maak een nieuwe identiteit @@ -9253,7 +9853,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9321,7 +9921,7 @@ p, li { white-space: pre-wrap; } - + Copy Kopieer @@ -9351,16 +9951,35 @@ p, li { white-space: pre-wrap; } Verstuur + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Open bestand - + Open Folder Open map @@ -9370,7 +9989,7 @@ p, li { white-space: pre-wrap; } Bewerk gedeelde toestemmingen - + Checking... Controleren... @@ -9419,7 +10038,7 @@ p, li { white-space: pre-wrap; } - + Options Opties @@ -9453,12 +10072,12 @@ p, li { white-space: pre-wrap; } Snel start Wizard - + RetroShare %1 a secure decentralized communication platform RetroShare %1 is een beveiligd gedecentraliseerde communicatie platform - + Unfinished Niet afgemaakt @@ -9495,7 +10114,12 @@ Maak meer ruimte vrij en klik Ok. Notify - + + Open Messenger + + + + Open Messages Open berichten @@ -9545,7 +10169,7 @@ Maak meer ruimte vrij en klik Ok. %1 nieuwe berichten - + Down: %1 (kB/s) Down: %1 (kB/s) @@ -9615,7 +10239,7 @@ Maak meer ruimte vrij en klik Ok. Service toestemming matrix - + Add Toevoegen @@ -9640,7 +10264,7 @@ Maak meer ruimte vrij en klik Ok. - + Really quit ? @@ -9649,38 +10273,17 @@ Maak meer ruimte vrij en klik Ok. MessageComposer - + Compose Opstellen - - + Contacts Contacten - - >> To - >> Naar - - - - >> Cc - >> Cc - - - - >> Bcc - >> Bcc - - - - >> Recommend - >> Aanbevolen - - - + Paragraph Paragraph @@ -9761,7 +10364,7 @@ Maak meer ruimte vrij en klik Ok. Onderlijnd - + Subject: Onderwerp: @@ -9772,12 +10375,22 @@ Maak meer ruimte vrij en klik Ok. - + Tags Labels - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9787,7 +10400,7 @@ Maak meer ruimte vrij en klik Ok. - + Recommended Files Aanbevolen bestanden @@ -9857,7 +10470,7 @@ Maak meer ruimte vrij en klik Ok. Voeg een citaat blok toe - + Send To: Verstuur naar: @@ -9882,47 +10495,22 @@ Maak meer ruimte vrij en klik Ok. &Justify - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hallo,<br>ik wil een goede vriend van mij aanraden; als je mij vertrouwd kun je hem ook vertrouwen. <br> @@ -9948,12 +10536,12 @@ Maak meer ruimte vrij en klik Ok. - + Save Message Bewaar bericht - + Message has not been Sent. Do you want to save message to draft box? Bericht is niet verzonden.⏎ @@ -9965,7 +10553,7 @@ Wil je het bericht bewaren in de concepten map? PLak RetroShare Link - + Add to "To" Voeg toe aan "Aan" @@ -9985,12 +10573,7 @@ Wil je het bericht bewaren in de concepten map? Voeg toe als "Aanbevolen" - - Friend Details - Vriend gegevens - - - + Original Message Origineel bericht @@ -10000,19 +10583,21 @@ Wil je het bericht bewaren in de concepten map? Van - + + To Naar - + + Cc Cc - + Sent Zenden @@ -10054,12 +10639,13 @@ Wil je het bericht bewaren in de concepten map? Voeg minstens één ontvanger toe. - + + Bcc Bcc - + Unknown Onbekend @@ -10169,7 +10755,12 @@ Wil je het bericht bewaren in de concepten map? &Format - + + Details + + + + Open File... Open bestand... @@ -10217,12 +10808,7 @@ Wil je het bericht bewaren? Voeg extra bestand toe - - Show: - Toon: - - - + Close Sluiten @@ -10232,32 +10818,57 @@ Wil je het bericht bewaren? Van: - - All - Alles - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10280,7 +10891,27 @@ Wil je het bericht bewaren? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Lezen @@ -10295,7 +10926,7 @@ Wil je het bericht bewaren? Open berichten in - + Tags Labels @@ -10335,7 +10966,7 @@ Wil je het bericht bewaren? Een nieuw scherm - + Edit Tag Bewerk Label @@ -10345,22 +10976,12 @@ Wil je het bericht bewaren? Bericht - + Distant messages: Afstands berichten: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">De link hieronder zorgt er voor dat mensen in het netwerk je versleutelde berichten naar je kan sturen door middel van tunnels. Om dat te doen moeten ze je publieke PGP sleutel hebben. Deze krijgen ze via het Retroshare ontdekkingssysteem.</p></body></html> - - - - Accept encrypted distant messages from everyone - Accepteer versleutelde afstandsberichten van iedereen - - - + Load embedded images Ingesloten afbeeldingen laden @@ -10641,7 +11262,7 @@ Wil je het bericht bewaren? MessagesDialog - + New Message Nieuw bericht @@ -10708,24 +11329,24 @@ Wil je het bericht bewaren? - + Tags Labels - - - + + + Inbox Inbox - - + + Outbox Outbox @@ -10737,14 +11358,14 @@ Wil je het bericht bewaren? - + Sent Zenden - + Trash Asbak @@ -10813,7 +11434,7 @@ Wil je het bericht bewaren? - + Reply to All Antwoord op alles @@ -10831,12 +11452,12 @@ Wil je het bericht bewaren? - + From Van - + Date Datum @@ -10864,12 +11485,12 @@ Wil je het bericht bewaren? - + Click to sort by from Klik om op "Afzender" te sorteren - + Click to sort by date Klik om op "Datum" te sorteren @@ -10924,7 +11545,12 @@ Wil je het bericht bewaren? Zoek Bijlagen - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred Starred @@ -10989,14 +11615,14 @@ Wil je het bericht bewaren? Leeg Asbak - - + + Drafts Concepten - + 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 gray star beside any message. Geen "Sterren" berichten aanwezig. Sterren geven je bericht een speciale status zodat je de berichten makkelijker kan vinden. Om een bericht een ster te geven klik je op een lichte grijze ster naast een bericht. @@ -11016,7 +11642,12 @@ Wil je het bericht bewaren? Klik om te sorteren op - + + This message goes to a distant person. + + + + @@ -11025,18 +11656,18 @@ Wil je het bericht bewaren? Totaal: - + Messages Berichten - + Click to sort by signature Klik om te sorteren op tekening - + This message was signed and the signature checks Dit bericht heeft een valide handtekening @@ -11046,15 +11677,10 @@ Wil je het bericht bewaren? Dit bericht heeft een ongeldige handtekening - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -11077,7 +11703,22 @@ Wil je het bericht bewaren? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link PLak RetroShare Link @@ -11111,7 +11752,7 @@ Wil je het bericht bewaren? - + Expand Uitbreiden @@ -11154,7 +11795,7 @@ Wil je het bericht bewaren? <strong>NAT:</strong> - + Network Status Unknown Netwerk status ombekend @@ -11198,26 +11839,6 @@ Wil je het bericht bewaren? Forwarded Port Doorgestuurde poort - - - OK | RetroShare Server - OK | RetroShare Server - - - - Internet connection - Internet verbinding - - - - No internet connection - Geen internet verbinding - - - - No local network - Geen lokaal netwerk - NetworkDialog @@ -11331,7 +11952,7 @@ Wil je het bericht bewaren? Verbindings ID - + Deny friend Weiger vriend @@ -11396,7 +12017,7 @@ Voor de veiligheid is je sleutelbos gebackupped. Er kon geen backup worden gemaakt. Controleer de bestandspermissies in de pgp map, schijfruimte e.d. - + Personal signature Persoonlijke handtekening @@ -11463,7 +12084,7 @@ Rechts klik en selecteer "maak vriend" om verbinding te kunnen maken.< uzelf - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Datainconsistentie in de sleutelbos. Dit is hoogstwaarschijnlijk een bug. Neem contact op met de ontwikkelaars. @@ -11478,7 +12099,7 @@ Rechts klik en selecteer "maak vriend" om verbinding te kunnen maken.< - + Trust level @@ -11498,12 +12119,12 @@ Rechts klik en selecteer "maak vriend" om verbinding te kunnen maken.< - + Make friend... - + Did peer authenticate you @@ -11533,7 +12154,7 @@ Rechts klik en selecteer "maak vriend" om verbinding te kunnen maken.< - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11602,7 +12223,7 @@ Reported error: NewsFeed - + News Feed News Feed @@ -11621,18 +12242,13 @@ Reported error: This is a test. Dit is een test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png"> nieuwsfeed</h1> <p>The News Feed wordt weergegeven van de laatste gebeurtenissen op uw netwerk, gesorteerd op tegen de tijd dat u ze ontvangen hebt. Dit geeft u een samenvatting van de activiteit van uw vrienden. U kunt configureren welke gebeurtenissen u wilt weergeven door op <b>Opties</b> te drukken. </p> <p>De verschillende gebeurtenissen weergegeven zijn: <ul><li>verbindingspogingen (nuttig om vrienden te maken met nieuwe mensen en controle die probeert om u te bereiken)</li> <li>kanaal en Forum berichten</li> <li>New kanalen en Forums kunt u zich abonneren op</li> <li>prive-berichten van je vrienden</li></ul></p> - News feed News Feed - + Newest on top @@ -11641,6 +12257,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11784,7 +12405,12 @@ Reported error: Knipper - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left Boven Links @@ -11808,11 +12434,6 @@ Reported error: Notify Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - <h1><img width="24" src=":/images/64px_help.png"> waarschuwen</h1> <p>Retroshare zal informeren u over wat er in uw netwerk gebeurt. Afhankelijk van uw gebruik, kan u wilt in- of uitschakelen enkele van de kennisgevingen. Deze pagina is ontworpen voor die!</p> - Disable All Toasters @@ -11862,7 +12483,7 @@ Reported error: NotifyQt - + PGP key passphrase PGP Sleutel wachtwoord zin @@ -11902,7 +12523,7 @@ Reported error: Bestands index opslaan... - + Test Test @@ -11917,13 +12538,13 @@ Reported error: Onbekende titel - - + + Encrypted message Versleutelde berichten - + Please enter your PGP password for key Voer uw PGP paswoord in om sleutel te krijgen @@ -11975,24 +12596,6 @@ Gaming Mode: 25% standaard verkeer en TODO: verminderde popups⏎ Laag verkeer: 10% standaard verkeerd en TODO: pauseerd alle bestands overdrachten - - OutQueueStatisticsWidget - - - Outqueue statistics - Outqueue statistieken - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -12016,12 +12619,22 @@ Laag verkeer: 10% standaard verkeerd en TODO: pauseerd alle bestands overdrachte - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -12056,39 +12669,51 @@ Laag verkeer: 10% standaard verkeerd en TODO: pauseerd alle bestands overdrachte - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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">⏎ -<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>⏎ -<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> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Onderteken PGP Sleutel + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -12099,6 +12724,11 @@ p, li { white-space: pre-wrap; }⏎ + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Inclusief handtekeningen @@ -12154,7 +12784,7 @@ p, li { white-space: pre-wrap; }⏎ Uw heeft geen vertrouwen in deze verbinding. - + This key has signed your own PGP key @@ -12328,12 +12958,12 @@ p, li { white-space: pre-wrap; }⏎ PeerStatus - + Friends: 0/0 Vrienden: 0/0 - + Online Friends/Total Friends Online vrienden/Totaal vrienden @@ -12702,7 +13332,7 @@ p, li { white-space: pre-wrap; }⏎ Standaard map %1 bestaat niet , default laden mislukt - + Error: instance '%1'can't create a widget Fout: aanleg '%1' maken van een widget lukt niet @@ -12763,19 +13393,19 @@ p, li { white-space: pre-wrap; }⏎ Authoriseer alle plugins - - Loaded plugins - Geladen plugins - - - + Plugin look-up directories Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. - Index afgewezen. Stel het handmatig in start eventueel opnieuw op. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] + @@ -12783,27 +13413,36 @@ p, li { white-space: pre-wrap; }⏎ Geen API nummer gevonden. Lees de plugin ontwerp handleiding. - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. Geen SVN nummer gevonden. Lees de plugin ontwerp handleiding. - + Loading error. Laad error. - + Missing symbol. Wrong version? Er mist een symbool. Verkeerde versie? - + No plugin object Geen plugin object - + Plugins is loaded. Plugin is geladen @@ -12813,22 +13452,7 @@ p, li { white-space: pre-wrap; }⏎ Onbekende status - - Title unavailable - Titel niet beschikbaar - - - - Description unavailable - Beschrijving niet beschikbaar - - - - Unknown version - Onbekende versie - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12836,15 +13460,16 @@ malicious behavior of crafted plugins. Controleer dit voor plugin ontwikkeling. Zij worden niet gecontroleerd voor de index. Echter, gewoonlijk zal het controleren van de index je beschermen tegen verdacht gebruik van de plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins Plugins - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - <h1><img width="24" src=":/images/64px_help.png"> Plugins</h1> <p>Plugins worden geladen vanuit de mappen die zijn opgenomen in de lijst onder.</p> <p>Om veiligheidsredenen, aanvaard plugins laden automatisch tot de belangrijkste Retroshare uitvoerbare bestand of de plugin bibliotheek wijzigingen. In een dergelijk geval moet de gebruiker om te bevestigen hen opnieuw. Nadat het programma is gestart, kunt u een plugin handmatig inschakelen door op de "Enable" knop te klikken en vervolgens herstarten Retroshare.</p> <p>Als u uw eigen plugins ontwikkelen wilt, neem dan contact op met het team van de ontwikkelaars ze zullen gelukkig zijn om u te helpen!</p> - PopularityDefs @@ -12912,12 +13537,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. De andere persoon heeft de chat-tunnel verwijderd. Je kan het chatvenster sluiten. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Het sluiten van dit venster zal het gesprek beëindigen en de chat-tunnel verwijderen. @@ -12927,12 +13557,7 @@ malicious behavior of crafted plugins. Verwijder de tunnel? - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -13013,7 +13638,12 @@ malicious behavior of crafted plugins. Gepost - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic Thema aanmaken @@ -13037,11 +13667,6 @@ malicious behavior of crafted plugins. Other Topics Andere Onderwerpen - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13296,7 +13921,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview RetroShare Bericht - Print Voorbeeld @@ -13644,7 +14269,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Bevestiging @@ -13654,7 +14280,7 @@ p, li { white-space: pre-wrap; } Wilt u deze link door uw systeem laten behandelen? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13683,7 +14309,12 @@ en open de "Maak een vriend wizzard"⏎ Wil je verder gaan met %1 link? - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. %1 van %2 RetroShare link verwerkt @@ -13850,7 +14481,7 @@ Karakters <b>",|,/,\,&lt;,&gt;,*,?</b> worden vervangen Fout tijdens voortgang verzamel bestand - + Deny friend Weiger vriend @@ -13870,7 +14501,7 @@ Karakters <b>",|,/,\,&lt;,&gt;,*,?</b> worden vervangen Bestands aanvraag gestopt - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Deze versie van RetroShare maakt gebruik van OpenPGP-SDK. Als bijeffect gebruikt het niet de gedeelde PGP sleutelring maar heeft zijn eigen sleutelring die gebruikt wordt door alle RetroShare gevallen.<br><br> @@ -13901,7 +14532,7 @@ Karakters <b>",|,/,\,&lt;,&gt;,*,?</b> worden vervangen Een onverwachte error verscheen. Stuur een report 'RsInit::InitRetroShare onverwachte return code %1'. - + Multiple instances Meerdere gevallen @@ -13939,11 +14570,6 @@ Lock file:⏎ Tunnel is pending... Tunnel wordt opgezet... - - - Secured tunnel established. Waiting for ACK... - Versleutelde tunnel gemaakt. Wachten op reactie... - Secured tunnel is working. You can talk! @@ -13959,7 +14585,7 @@ Reported error is: De error is: %2 - + Click to send a private message to %1 (%2). Klik om een prive-bericht te verzenden naar %1 (%2). @@ -14009,7 +14635,7 @@ De error is: %2 Gegevens doorsturen - + You appear to have nodes associated to DSA keys: @@ -14019,7 +14645,7 @@ De error is: %2 - + enabled @@ -14029,12 +14655,12 @@ De error is: %2 - + Join chat lobby - + Move IP %1 to whitelist @@ -14049,42 +14675,49 @@ De error is: %2 - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago %1 dag geleden - + Subject: @@ -14103,6 +14736,12 @@ De error is: %2 Id: + + + +Security: no anonymous IDs + + @@ -14114,6 +14753,16 @@ De error is: %2 The following has not been added to your download list, because you already have it: + + + Error + Fout + + + + unable to parse XML file! + + QuickStartWizard @@ -14123,7 +14772,7 @@ De error is: %2 Snel start Wizard - + <!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; } @@ -14161,21 +14810,23 @@ p, li { white-space: pre-wrap; }⏎ - - + + + Next > Volgende> - - - - + + + + + Exit Sluiten - + For best performance, RetroShare needs to know a little about your connection to the internet. Voor optimaal gebruik wil RetroShare iets van je internet verbinding weten. @@ -14242,13 +14893,14 @@ p, li { white-space: pre-wrap; }⏎ - - + + + < Back <Terug - + <!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; } @@ -14273,7 +14925,7 @@ p, li { white-space: pre-wrap; }⏎ - + Network Wide Netwerk breed @@ -14298,7 +14950,27 @@ p, li { white-space: pre-wrap; }⏎ Deel automatisch uw opslag directory (Aanbevolen) - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14410,7 +15082,7 @@ p, li { white-space: pre-wrap; }⏎ RSGraphWidget - + %1 KB %1 KB @@ -14446,7 +15118,7 @@ p, li { white-space: pre-wrap; }⏎ RSPermissionMatrixWidget - + Allowed by default @@ -14477,7 +15149,7 @@ p, li { white-space: pre-wrap; }⏎ - Switched Off + Globally switched Off @@ -14499,7 +15171,7 @@ p, li { white-space: pre-wrap; }⏎ RSettingsWin - + Error Saving Configuration on page @@ -14608,8 +15280,8 @@ p, li { white-space: pre-wrap; }⏎ - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> - <h1><img width="24" src=":/images/64px_help.png"> Relais</h1> <p>door het activeren van Relais, u toestaan uw Retroshare knooppunt om op te treden als een brug tussen Retroshare gebruikers die geen verbinding kan direct, bijvoorbeeld maken omdat ze bent firewalled.</p> <p>Kan u ervoor kiezen om te fungeren als een relais door te controleren <i>inschakelen relay-verbindingen</i>, of gewoon profiteren van andere peers fungeert als relay, door het controleren van <i>relay servers gebruiken</i>. Voor de voormalige, u kunt de bandbreedte toegewezen als fungeert als een relais voor vrienden van u, voor vrienden van je vrienden, of iemand in het netwerk Retroshare.</p> <p>In ieder geval een Retroshare knooppunt fungeert als een relais niet zien het indirecte verkeer, aangezien het is gecodeerd en geverifieerd door de twee indirecte knooppunten.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + @@ -14633,7 +15305,7 @@ p, li { white-space: pre-wrap; }⏎ RetroshareDirModel - + NEW NIEUW @@ -14671,7 +15343,7 @@ p, li { white-space: pre-wrap; }⏎ Add IP to whitelist - + IP toevoegen aan whitelist @@ -14973,7 +15645,7 @@ Als u denkt dat het is juist dat, de bijbehorende regel uit het bestand verwijde RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? Het plaatje is te groot om overgezonden te worden.⏎ @@ -14991,7 +15663,7 @@ Maak het plaatje kleiner tot %1x%2 pixels Rshare - + Resets ALL stored RetroShare settings. Resets ALLE opgslagen RetroShare instellingen @@ -15036,17 +15708,17 @@ Maak het plaatje kleiner tot %1x%2 pixels Het is niet mogelijk om het log bestand '%1': %2 te openen - + built-in ingebouwd - + Could not create data directory: %1 Kan geen gegevensmap maken: %1 - + Revision @@ -15074,33 +15746,10 @@ Maak het plaatje kleiner tot %1x%2 pixels RTT Statistieken - - SFListDelegate - - - B - B - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Plaats een sleutelwoord hier (minstens 3 karakters) @@ -15282,12 +15931,12 @@ Maak het plaatje kleiner tot %1x%2 pixels Download geselecteerd - + File Name Bestandsnaam - + Download Download @@ -15356,7 +16005,7 @@ Maak het plaatje kleiner tot %1x%2 pixels Open map - + Create Collection... Collectie maken... @@ -15376,7 +16025,7 @@ Maak het plaatje kleiner tot %1x%2 pixels Download van collectief bestand... - + Collection Collectie @@ -15619,12 +16268,22 @@ Maak het plaatje kleiner tot %1x%2 pixels ServerPage - + Network Configuration Netwerk Configuratie - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) Automatisch (UPnP) @@ -15639,7 +16298,7 @@ Maak het plaatje kleiner tot %1x%2 pixels Handmatig doorgestuurde poort - + Public: DHT & Discovery Openbaar: DHT & Discovery @@ -15659,13 +16318,13 @@ Maak het plaatje kleiner tot %1x%2 pixels Dark Net: Geen - - + + Local Address Lokaal adres - + External Address Extern adres @@ -15675,28 +16334,28 @@ Maak het plaatje kleiner tot %1x%2 pixels Dynamisch DNS - + Port: Poort: - + Local network Lokaal Netwerk - + External ip address finder Extern ip adres vinder - + UPnP UPnP - + Known / Previous IPs: Bekende / Eerdere IP's: @@ -15722,13 +16381,13 @@ je ook als ja achter een Firewall of VPN zit. Sta RetroShare toe om mijn ip-adres te vragen aan de volgende websites: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Aanvaardbare poorten variëren van 10 tot 65535. Normaal zijn poorten onder 1024 gereserveerd door uw systeem. @@ -15738,23 +16397,12 @@ je ook als ja achter een Firewall of VPN zit. Aanvaardbare poorten variëren van 10 tot 65535. Normaal zijn poorten onder 1024 gereserveerd door uw systeem. - + Onion Address UI adres - - Expected torrc Port Configuration: - Verwachte torrc poortconfiguratie: - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - HiddenServiceDir </your/path/to/hidden/directory/service> HiddenServicePort 9191 127.0.0.1:9191 - - - + Discovery On (recommended) Discovery ingeschakeld (aanbevolen) @@ -15764,17 +16412,65 @@ HiddenServicePort 9191 127.0.0.1:9191 Ontdekking uit - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. Proxy lijkt te werken. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15784,90 +16480,95 @@ HiddenServicePort 9191 127.0.0.1:9191 Leeg - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test Test - + Network Netwerk - + IP Filters - + IP blacklist - + IP range - - - + + + Status Status - - + + Origin - - + + Reason - - + + Comment Opmerking - + IPs - + IP whitelist - + Manual input @@ -15892,12 +16593,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15920,32 +16727,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15975,99 +16783,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -16089,7 +16818,7 @@ Check your ports! Auto-download recommended files - + Aanbevolen bestanden automatisch downloaden @@ -16100,7 +16829,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions ServicePermissions @@ -16115,13 +16844,13 @@ Check your ports! Toestemmingen - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16386,7 +17115,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Download - + Copy retroshare Links to Clipboard Kopieer Retroshare link naar het klembord @@ -16411,7 +17140,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Voeg links toe aan de Cloud - + RetroShare Link RetroShare link @@ -16427,7 +17156,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Voeg delen toe - + Create Collection... Collectie maken... @@ -16450,7 +17179,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. SoundManager - + Friend @@ -16476,11 +17205,12 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. + Message arrived - + Download @@ -16489,6 +17219,11 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. Download complete + + + Lobby + + SoundPage @@ -16549,7 +17284,7 @@ Selecteer de vrienden waarmee u uw kanaal wilt delen. SplashScreen - + Load profile Laad profiel @@ -16793,12 +17528,12 @@ This choice can be reverted in settings. - + Connected Verbonden - + Unreachable Onbereikbaar @@ -16814,18 +17549,18 @@ This choice can be reverted in settings. - + Trying TCP Probeer TCP - - + + Trying UDP Probeer UDP - + Connected: TCP Verbonden: TCP @@ -16836,6 +17571,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown Verbonden: Onbekend @@ -16845,7 +17585,7 @@ This choice can be reverted in settings. DHT: Contact - + TCP-in @@ -16855,7 +17595,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16865,7 +17605,7 @@ This choice can be reverted in settings. - + UDP @@ -16879,13 +17619,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -17102,7 +17852,7 @@ p, li { white-space: pre-wrap; }⏎ TBoard - + Pause Pauze @@ -17151,7 +17901,7 @@ p, li { white-space: pre-wrap; }⏎ ToasterDisable - + All Toasters are disabled Alle Toasters zijn uitgeschakeld @@ -17292,16 +18042,18 @@ p, li { white-space: pre-wrap; }⏎ TransfersDialog + Downloads Downloads + Uploads Uploads - + Name i.e: file name @@ -17497,25 +18249,25 @@ p, li { white-space: pre-wrap; }⏎ - + Slower Langzamer - - + + Average Gemiddelde - - + + Faster Sneller - + Random Willekeurig @@ -17540,7 +18292,12 @@ p, li { white-space: pre-wrap; }⏎ Specificeer... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... Verplaats in Rij... @@ -17566,39 +18323,39 @@ p, li { white-space: pre-wrap; }⏎ - + Failed Mislukt - - + + Okay Oke - - + + Waiting Wachten - + Downloading Downloading - + Complete Kompleet - + Queued In Wachtrij @@ -17639,7 +18396,7 @@ Deze vergelijken op juistheid en eventueel het opnieuw proberen.⏎ Even geduld a.u.b.! - + Transferring Bezig met overbrengen @@ -17649,7 +18406,7 @@ Even geduld a.u.b.! Uploading - + Are you sure that you want to cancel and delete these files? Weet u zeker dat u wilt stoppen en deze bestanden wissen? @@ -17707,7 +18464,7 @@ Even geduld a.u.b.! Vul een nieuwe -en geldige- bestandsnaam in - + Last Time Seen i.e: Last Time Receiced Data Laatst Gezien Op @@ -17813,7 +18570,7 @@ Even geduld a.u.b.! Toon Laatst Gezien Op Kolom - + Columns Kolommen @@ -17823,7 +18580,7 @@ Even geduld a.u.b.! Bestandsoverdrachten - + Path i.e: Where file is saved Pad @@ -17839,12 +18596,7 @@ Even geduld a.u.b.! Pad kolom weergeven - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - <h1><img width="32" src=":/images/64px_help.png"> file Transfer</h1> <p>Retroshare heeft twee manieren voor het overzetten van bestanden: rechtstreekse overdracht van uw vrienden en verre anonieme getunnelde bestandsoverdracht. Bovendien, bestandsoverdracht is multi bron en kunt zwermen (u kan ook een bron tijdens het downloaden)</p> <p>kunt u het delen van bestanden met behulp van de < img src=":/images/directoryadd_24x24_shadow.png" breedte = 16 / > pictogram aan de linkerkant bar. Deze bestanden zullen worden weergegeven op het tabblad mijn bestanden. U kunt bepalen voor elke vriendengroep of ze kunnen of niet zie deze bestanden in hun vrienden bestanden tabblad</p> <p>het tabblad Zoeken rapporten van uw vrienden bestand lijsten, en verre bestanden dat kunnen worden bereikt anoniem met behulp van de multi hop tunneling systeem.</p> - - - + Could not delete preview file Kan geen gegevens verwijderen voorvertoningsbestand @@ -17854,7 +18606,7 @@ Even geduld a.u.b.! Probeer het opnieuw? - + Create Collection... Collectie maken.. @@ -17869,7 +18621,7 @@ Even geduld a.u.b.! Bekijk collectie.. - + Collection Collectie @@ -17879,17 +18631,17 @@ Even geduld a.u.b.! Bestand delen - + Anonymous tunnel 0x Anonieme tunnel 0x - + Show file list transfers - + version: @@ -17925,7 +18677,7 @@ Even geduld a.u.b.! DIR - + Friends Directories Vrienden directories @@ -17968,7 +18720,7 @@ Even geduld a.u.b.! TurtleRouterDialog - + Search requests Zoek aanvragen @@ -18031,7 +18783,7 @@ Even geduld a.u.b.! Router Statistieken - + Age in seconds Leeftijd in seconden @@ -18046,7 +18798,17 @@ Even geduld a.u.b.! totaal - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Onbekenden verbinding @@ -18055,16 +18817,11 @@ Even geduld a.u.b.! Turtle Router Turtle router - - - Tunnel Requests - Tunnel aanvragen - TurtleRouterStatisticsWidget - + Search requests repartition Zoek aanvragen repartitie @@ -18263,10 +19020,20 @@ Even geduld a.u.b.! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18277,11 +19044,6 @@ Even geduld a.u.b.! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18471,7 +19233,7 @@ Even geduld a.u.b.! Zoeken - + My Groups Mijn Groepen @@ -18491,7 +19253,7 @@ Even geduld a.u.b.! Andere Groepen - + Subscribe to Group Registreer bij deze Groep diff --git a/retroshare-gui/src/lang/retroshare_pl.qm b/retroshare-gui/src/lang/retroshare_pl.qm index f35ef0084c0464abe46f133e0ccbf2a349bce57d..37a8f0f62babaecb1c86bef4cd0b609e9df8ab0e 100644 GIT binary patch delta 11045 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 delta 12491 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 diff --git a/retroshare-gui/src/lang/retroshare_pl.ts b/retroshare-gui/src/lang/retroshare_pl.ts index 19ade948d..ec4cfdd7e 100644 --- a/retroshare-gui/src/lang/retroshare_pl.ts +++ b/retroshare-gui/src/lang/retroshare_pl.ts @@ -1,8 +1,8 @@ - + AWidget - + version @@ -21,12 +21,17 @@ O programie RetroShare - + About O programie - + + Copy Info + + + + close Zamknij @@ -487,7 +492,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Język @@ -527,24 +532,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -580,24 +589,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 Rozmiar ikon = 8x8 - - + + Icon Size = 16x16 Rozmiar ikon = 16x16 - - + + Icon Size = 24x24 Rozmiar ikon = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -627,8 +648,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -732,7 +758,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar Kliknij, aby zmienić swój awatar @@ -740,7 +766,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -748,7 +774,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -756,13 +782,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage Zużycie łącza przez RetroShare - + Show Settings Pokaż ustawienia @@ -817,7 +843,7 @@ p, li { white-space: pre-wrap; } Anuluj - + Since: Od: @@ -827,6 +853,31 @@ p, li { white-space: pre-wrap; } Ukryj ustawienia + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -890,7 +941,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -905,6 +956,49 @@ p, li { white-space: pre-wrap; } Formularz + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -933,14 +1027,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -954,17 +1040,32 @@ p, li { white-space: pre-wrap; } Zmień pseudonim - + Mute participant Wycisz uczestnika - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Zaproś przyjaciół do tego lobby - + Leave this lobby (Unsubscribe) Opuść to lobby (wypisz się) @@ -979,7 +1080,7 @@ p, li { white-space: pre-wrap; } Wybierz przyjaciół do zaproszenia: - + Welcome to lobby %1 Witamy w lobby %1 @@ -989,13 +1090,13 @@ p, li { white-space: pre-wrap; } Temat: %1 - + Lobby chat - + Lobby management @@ -1027,7 +1128,7 @@ p, li { white-space: pre-wrap; } Czy chcesz wypisać się z tego lobby rozmów? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Kliknij prawym przyciskiem myszy aby wyciszyć/przywrócić uczestników<br/>Zwróć się do osoby podwójnym kliknięciem<br/> @@ -1042,12 +1143,12 @@ p, li { white-space: pre-wrap; } sekundy - + Start private chat - + Decryption failed. @@ -1093,7 +1194,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1132,18 +1233,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies Lobby rozmów - - + + Name Nazwa - + Count Liczba @@ -1164,23 +1265,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby Stwórz lobby rozmów - + [No topic provided] [Nie podano tematu] - + Selected lobby info Informacje o zaznaczonym lobby - + Private Prywatny @@ -1189,13 +1290,18 @@ p, li { white-space: pre-wrap; } Public Publiczne + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe Wyłącz autosubskrypcję @@ -1205,27 +1311,37 @@ p, li { white-space: pre-wrap; } Dodaj autosubskrypcję - + %1 invites you to chat lobby named %2 %1 zaprasza cię do lobby rozmów o nazwie %2 - + Search Chat lobbies Wyszukaj lobby rozmów - + Search Name - + Subscribed Subskrybowane - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns Kolumny @@ -1240,7 +1356,7 @@ p, li { white-space: pre-wrap; } Nie - + Lobby Name: @@ -1259,6 +1375,11 @@ p, li { white-space: pre-wrap; } Type: Typ: + + + Security: + + Peers: @@ -1269,19 +1390,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1290,23 +1412,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1316,22 +1433,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1384,7 +1521,7 @@ Double click lobbies to enter and chat. Anuluj - + Quick Message Szybka wiadomość @@ -1393,12 +1530,37 @@ Double click lobbies to enter and chat. ChatPage - + General Ogólne - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Ustawienia rozmów @@ -1423,7 +1585,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1537,7 +1704,7 @@ Double click lobbies to enter and chat. Chat prywatny - + Incoming Przychodzące @@ -1581,6 +1748,16 @@ Double click lobbies to enter and chat. System message Wiadomość systemowa + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1672,7 +1849,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1695,7 +1872,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat Styl standardowy dla chatu grupowego @@ -1744,17 +1921,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close Zamknij - + Send Wyślij - + Bold Pogrubienie @@ -1769,12 +1946,12 @@ Double click lobbies to enter and chat. Pochylenie - + Attach a Picture Dołącz Zdjęcie - + Strike @@ -1825,12 +2002,37 @@ Double click lobbies to enter and chat. Zresetuj czcionkę do domyślnej - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... pisze... - + Do you really want to physically delete the history? Czy naprawdę chcesz fizycznie usunąć historię? @@ -1855,7 +2057,7 @@ Double click lobbies to enter and chat. Plik Tekstowy (*.txt );;Wszystkie Pliki (*) - + appears to be Offline. zdaje się być Offline. @@ -1880,7 +2082,7 @@ Double click lobbies to enter and chat. jest Zajęty i może nie odpowiedzieć - + Find Case Sensitively @@ -1902,7 +2104,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1917,12 +2119,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1932,7 +2134,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1943,7 +2145,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1978,12 +2180,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1993,7 +2195,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2151,7 +2353,12 @@ Double click lobbies to enter and chat. Szczegóły - + + Node info + + + + Peer Address Adres Peera @@ -2238,12 +2445,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2279,6 +2481,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2334,7 +2541,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2367,17 +2574,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2387,19 +2584,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Wyślij Zaproszenie przez Email -(Ona/On otrzyma email z instrukcjami jak pobrać RetroShare) - - - + Text certificate @@ -2409,13 +2594,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures Załącz podpisy @@ -2436,11 +2616,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2521,6 +2706,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email Zaproś Przyjaciół przez Email @@ -2546,7 +2771,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2560,61 +2785,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: Nazwa: - - + + Email: Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: Miejsce: - + - + Options Opcje - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: Dodaj przyjaciela do grupy: - - + + Authenticate friend (Sign PGP Key) Uwierzytelnij znajomego (Podpisz Klucz PGP) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2634,7 +2900,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2690,12 +2956,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed Ładowanie certyfikatu nie powiodło się - + Cannot get peer details of PGP key %1 @@ -2730,12 +2996,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation Zaproszenie RetroShare - + Ultimate @@ -2761,7 +3028,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2776,7 +3043,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2874,13 +3141,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2890,12 +3166,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: Wiadomość: - + Recommend friends @@ -2915,17 +3196,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2938,7 +3214,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2948,8 +3224,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2959,8 +3235,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2970,7 +3246,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2980,17 +3256,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3847,7 +4123,7 @@ p, li { white-space: pre-wrap; } - + Forum Forum @@ -3857,7 +4133,7 @@ p, li { white-space: pre-wrap; } Temat - + Attach File Załącz Plik @@ -3887,12 +4163,12 @@ p, li { white-space: pre-wrap; } Rozpocznij Nowy Wątek - + No Forum - + In Reply to W Odpowiedzi do @@ -3930,12 +4206,12 @@ p, li { white-space: pre-wrap; } - + Send Wyślij - + Forum Message @@ -3946,7 +4222,7 @@ Do you want to reject this message? - + Post as @@ -3981,7 +4257,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3995,7 +4271,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -4005,12 +4296,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: Kontakty: - + Identity to use: @@ -4169,7 +4470,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4191,7 +4497,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4289,7 +4595,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4319,7 +4625,7 @@ Do you want to reject this message? Adres Peera - + Name Nazwa @@ -4364,7 +4670,7 @@ Do you want to reject this message? - + Bucket @@ -4390,17 +4696,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4435,7 +4741,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4640,7 +4961,7 @@ Do you want to reject this message? Nieznane - + RELAY END @@ -4674,19 +4995,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4696,13 +5022,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4772,12 +5100,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4913,7 +5262,7 @@ plików gdy go podłączysz. ExprParamElement - + to @@ -5018,7 +5367,7 @@ plików gdy go podłączysz. FileTransferInfoWidget - + Chunk map @@ -5193,7 +5542,7 @@ plików gdy go podłączysz. FlatStyle_RDM - + Friends Directories Katalogi Przyjaciół @@ -5269,89 +5618,39 @@ plików gdy go podłączysz. FriendList - - - Status - Stan - - - - - + Last Contact Ostatni kontakt - - - Avatar - Awatar - - - + Hide Offline Friends Ukryj niepodłączonych Przyjaciół - - State - Stan - - - - Sort by State - Sortuj według Stanu - - - - Hide State - Ukryj Stan - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name - Nazwa - - - - Sort by Name - Sortuj według Nazwy - - - - Sort by last contact - Sortuj według ostatniego kontaktu - - - - Show Last Contact Column - - - - - Set root is Decorated + + export friendlist - Set Root Decorated + export your friendlist including groups + + + + + import friendlist + + + + + import your friendlist including groups + + + + + + Show State @@ -5361,7 +5660,7 @@ plików gdy go podłączysz. Pokaż Grupy - + Group Grupa @@ -5402,7 +5701,17 @@ plików gdy go podłączysz. Dodaj do grupy - + + Search + + + + + Sort by state + + + + Move to group Przenieś do grupy @@ -5432,40 +5741,103 @@ plików gdy go podłączysz. Zwiń wszystkie - - + Available Dostępne - + Do you want to remove this Friend? Czy chcesz usunąć tego Przyjaciela? - - Columns - Kolumny + + + Done! + - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5475,7 +5847,7 @@ plików gdy go podłączysz. - + Display Wyświetl @@ -5485,12 +5857,7 @@ plików gdy go podłączysz. - - Sort by - Sortuj według - - - + Node @@ -5500,17 +5867,17 @@ plików gdy go podłączysz. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5558,30 +5925,35 @@ plików gdy go podłączysz. - - All - Wszyscy + + Sort by state + - None - Brak - - - Name Imię - + Search Friends Szukaj Przyjaciół + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5675,12 +6047,17 @@ plików gdy go podłączysz. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5691,12 +6068,7 @@ plików gdy go podłączysz. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5709,7 +6081,7 @@ plików gdy go podłączysz. Utwórz nowy Profil - + Name Nazwa @@ -5761,7 +6133,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5776,7 +6148,7 @@ anonymous, you can use a fake email. - + Port Port @@ -5820,28 +6192,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5863,7 +6230,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5888,12 +6255,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5909,12 +6281,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5931,7 +6308,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6041,7 +6423,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6049,12 +6436,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6070,21 +6457,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6234,23 +6606,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6264,9 +6631,21 @@ p, li { white-space: pre-wrap; } - - Advanced: Open Firewall Port - Zaawansowane: Otwórz Port Firewalla + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6274,35 +6653,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and Support - Dalsza Pomoc i Wsparcie - - - - <!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: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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6311,7 +6668,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + Zaawansowane: Otwórz Port Firewalla + + + + Further Help and Support + Dalsza Pomoc i Wsparcie + + + Open RS Website Otwórz stronę RS @@ -6404,82 +6776,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - Cel - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - Wyślij - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6659,7 +7053,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Tytuł @@ -6679,7 +7073,7 @@ p, li { white-space: pre-wrap; } Szukaj Opisu - + Sort by Name Sortuj według Nazwy @@ -6693,13 +7087,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post Sortuj według Ostatniego Postu + + + Sort by Posts + + Display Wyświetl - + You have admin rights @@ -6712,7 +7111,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and i @@ -6810,7 +7209,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanały @@ -6821,17 +7220,22 @@ p, li { white-space: pre-wrap; } Stwórz kanał - + Enable Auto-Download Włącz auto-pobieranie - + My Channels Moje Kanały - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels Subskrybowane kanały @@ -6846,13 +7250,29 @@ p, li { white-space: pre-wrap; } Inne kanały - + + Select channel download directory + + + + Disable Auto-Download Wyłącz auto-pobieranie - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7193,7 +7613,7 @@ p, li { white-space: pre-wrap; } Nie wybrano kanału - + Disable Auto-Download Wyłącz auto-pobieranie @@ -7213,7 +7633,7 @@ p, li { white-space: pre-wrap; } - + Feeds @@ -7223,7 +7643,7 @@ p, li { white-space: pre-wrap; } Pliki - + Subscribers @@ -7384,7 +7804,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum Utwórz Nowe Forum @@ -7516,12 +7936,12 @@ before you can comment Formularz - + Start new Thread for Selected Forum Rozpocznij nowy Wątek dla Wybranego Forum - + Search forums Przeszukaj fora @@ -7542,7 +7962,7 @@ before you can comment - + Title Tytuł @@ -7555,13 +7975,18 @@ before you can comment - + Author Autor - - + + Save image + + + + + Loading Wczytywanie @@ -7591,7 +8016,7 @@ before you can comment Następne nieprzeczytane - + Search Title Szukaj Tytuł @@ -7616,17 +8041,27 @@ before you can comment Szukaj Zawartości - + No name Bez nazwy - + Reply Odpowiedz + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread Rozpocznij Nowy Wątek @@ -7664,7 +8099,7 @@ before you can comment Skopiuj Link RetroShare - + Hide Ukryj @@ -7674,7 +8109,38 @@ before you can comment Rozwiń - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous Anonimowy @@ -7694,29 +8160,55 @@ before you can comment [ ... Brakująca Wiadomość ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Nie zaznaczono Forum! - + + + You cant reply to a non-existant Message Nie możesz odpowiedzieć na nieistniejącą Wiadomość + You cant reply to an Anonymous Author Nie możesz odpowiedzieć Anonimowemu Autorowi - + Original Message Oryginalna Wiadomość @@ -7741,7 +8233,7 @@ before you can comment - + Forum name @@ -7756,7 +8248,7 @@ before you can comment - + Description Opis @@ -7766,12 +8258,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7787,7 +8279,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums Fora @@ -7817,11 +8314,6 @@ before you can comment Other Forums Inne Fora - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7844,13 +8336,13 @@ before you can comment GxsGroupDialog - - + + Name Nazwa - + Add Icon Dodaj Ikonę @@ -7865,7 +8357,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7875,36 +8367,36 @@ before you can comment - - + + Description Opis - + Message Distribution Dystrybucja Wiadomości - + Public Publiczne - - + + Restricted to Group Zarezerwowane dla Grupy - - + + Only For Your Friends Tylko Dla Twoich Przyjaciół - + Publish Signatures Publiczne Podpisy @@ -7934,7 +8426,7 @@ before you can comment Osobiste Podpisy - + PGP Required PGP Wymagane @@ -7950,12 +8442,12 @@ before you can comment - + Comments Komentarze - + Allow Comments Pozwól Komentować @@ -7965,33 +8457,73 @@ before you can comment Bez Komentarzy - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Kontakty: - + Please add a Name Proszę, dodaj Nazwę - + Load Group Logo Załaduj Logo Grupy - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -8001,12 +8533,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8079,7 +8611,7 @@ before you can comment Podgląd wydruku - + Unsubscribe Wypisz się @@ -8089,12 +8621,12 @@ before you can comment Zapisz się - + Open in new tab Otwórz w nowej karcie - + Show Details @@ -8119,12 +8651,12 @@ before you can comment Oznacz wszystkie jako nieprzeczytane - + AUTHD - + Share admin permissions @@ -8132,7 +8664,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8145,7 +8677,7 @@ before you can comment GxsIdDetails - + Loading Wczytywanie @@ -8160,8 +8692,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8176,7 +8715,7 @@ before you can comment - + Identity&nbsp;name @@ -8191,7 +8730,7 @@ before you can comment - + [Unknown] @@ -8209,6 +8748,49 @@ before you can comment Bez nazwy + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8404,28 +8986,7 @@ before you can comment O programie - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors Autorzy @@ -8476,7 +9037,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8518,7 +9100,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8553,78 +9135,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation Reputacja - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - Edytuj Reputację - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8663,37 +9255,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All Wszyscy - + + Reputation Reputacja - - - Todo - - - Search Szukaj - + Unknown real name @@ -8703,72 +9316,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity Stwórz nową Tożsamość - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8789,42 +9359,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8834,7 +9404,57 @@ p, li { white-space: pre-wrap; } Typ: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8844,12 +9464,17 @@ p, li { white-space: pre-wrap; } Anonim - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8865,7 +9490,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8880,7 +9505,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8890,15 +9550,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8919,7 +9599,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8934,7 +9619,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8944,17 +9629,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - Kolumny - - - + Distant chat refused with this person. @@ -8964,7 +9639,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8979,29 +9654,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -9011,7 +9674,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9054,8 +9717,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9063,7 +9726,7 @@ p, li { white-space: pre-wrap; } - + @@ -9073,13 +9736,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9099,7 +9762,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9154,7 +9817,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9222,7 +9885,7 @@ p, li { white-space: pre-wrap; } - + Copy Skopiuj @@ -9252,16 +9915,35 @@ p, li { white-space: pre-wrap; } Wyślij + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Otwórz Plik - + Open Folder Otwórz folder @@ -9271,7 +9953,7 @@ p, li { white-space: pre-wrap; } - + Checking... Sprawdzanie... @@ -9320,7 +10002,7 @@ p, li { white-space: pre-wrap; } - + Options Opcje @@ -9354,12 +10036,12 @@ p, li { white-space: pre-wrap; } Kreator szybkiego startu - + RetroShare %1 a secure decentralized communication platform RetroShare %1 bezpieczna, zdecentralizowana platforma komunikacji - + Unfinished Niedokończone @@ -9393,7 +10075,12 @@ p, li { white-space: pre-wrap; } Powiadom - + + Open Messenger + + + + Open Messages @@ -9443,7 +10130,7 @@ p, li { white-space: pre-wrap; } %1 nowych wiadomości - + Down: %1 (kB/s) @@ -9513,7 +10200,7 @@ p, li { white-space: pre-wrap; } - + Add Dodaj @@ -9538,7 +10225,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9547,38 +10234,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts Kontakty - - >> To - >> Do - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - >> Poleć - - - + Paragraph Paragraf @@ -9659,7 +10325,7 @@ p, li { white-space: pre-wrap; } Podkreślenie - + Subject: Temat: @@ -9670,12 +10336,22 @@ p, li { white-space: pre-wrap; } - + Tags Tagi - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9685,7 +10361,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files Polecane pliki @@ -9755,7 +10431,7 @@ p, li { white-space: pre-wrap; } - + Send To: Wyślij do: @@ -9780,47 +10456,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9846,12 +10497,12 @@ p, li { white-space: pre-wrap; } - + Save Message Zapisz wiadomość - + Message has not been Sent. Do you want to save message to draft box? Wiadomość nie została wysłana. @@ -9863,7 +10514,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Wklej Link RetroShare - + Add to "To" Dodaj do "Do" @@ -9883,12 +10534,7 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Dodaj jako Polecane - - Friend Details - Szczegóły Przyjaciela - - - + Original Message Oryginalna Wiadomość @@ -9898,19 +10544,21 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Od - + + To Do - + + Cc - + Sent Wysłane @@ -9952,12 +10600,13 @@ Czy chcesz zapisać wiadomość do wersji roboczych? Proszę dodaj przynajmniej jednego odbiorcę. - + + Bcc - + Unknown Nieznane @@ -10067,7 +10716,12 @@ Czy chcesz zapisać wiadomość do wersji roboczych? - + + Details + + + + Open File... Otwórz Plik... @@ -10115,12 +10769,7 @@ Czy chcesz zapisać wiadomość ? Dodaj dodatkowy plik - - Show: - - - - + Close Zamknij @@ -10130,32 +10779,57 @@ Czy chcesz zapisać wiadomość ? Od klatki: - - All - Wszyscy - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10178,7 +10852,27 @@ Czy chcesz zapisać wiadomość ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10193,7 +10887,7 @@ Czy chcesz zapisać wiadomość ? - + Tags Tagi @@ -10233,7 +10927,7 @@ Czy chcesz zapisać wiadomość ? Nowe okno - + Edit Tag Edytuj Tag @@ -10243,22 +10937,12 @@ Czy chcesz zapisać wiadomość ? Wiadomość - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10539,7 +11223,7 @@ Czy chcesz zapisać wiadomość ? MessagesDialog - + New Message Nowa Wiadmość @@ -10606,24 +11290,24 @@ Czy chcesz zapisać wiadomość ? - + Tags Tagi - - - + + + Inbox Przychodzące - - + + Outbox Wychodzące @@ -10635,14 +11319,14 @@ Czy chcesz zapisać wiadomość ? - + Sent Wysłane - + Trash Kosz @@ -10711,7 +11395,7 @@ Czy chcesz zapisać wiadomość ? - + Reply to All @@ -10729,12 +11413,12 @@ Czy chcesz zapisać wiadomość ? - + From Od - + Date Data @@ -10762,12 +11446,12 @@ Czy chcesz zapisać wiadomość ? - + Click to sort by from - + Click to sort by date @@ -10822,7 +11506,12 @@ Czy chcesz zapisać wiadomość ? Szukaj Załączników - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10887,14 +11576,14 @@ Czy chcesz zapisać wiadomość ? - - + + Drafts - + 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 gray star beside any message. @@ -10914,7 +11603,12 @@ Czy chcesz zapisać wiadomość ? - + + This message goes to a distant person. + + + + @@ -10923,18 +11617,18 @@ Czy chcesz zapisać wiadomość ? - + Messages Wiadomości - + Click to sort by signature - + This message was signed and the signature checks @@ -10944,15 +11638,10 @@ Czy chcesz zapisać wiadomość ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10975,7 +11664,22 @@ Czy chcesz zapisać wiadomość ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link Wklej Link RetroShare @@ -11009,7 +11713,7 @@ Czy chcesz zapisać wiadomość ? - + Expand Rozwiń @@ -11052,7 +11756,7 @@ Czy chcesz zapisać wiadomość ? - + Network Status Unknown @@ -11096,26 +11800,6 @@ Czy chcesz zapisać wiadomość ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11229,7 +11913,7 @@ Czy chcesz zapisać wiadomość ? - + Deny friend @@ -11287,7 +11971,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11353,7 +12037,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11368,7 +12052,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11388,12 +12072,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11423,7 +12107,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11492,7 +12176,7 @@ Reported error: NewsFeed - + News Feed @@ -11511,18 +12195,13 @@ Reported error: This is a test. To jest test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11531,6 +12210,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11674,7 +12358,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11698,11 +12387,6 @@ Reported error: Notify Powiadom - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11752,7 +12436,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11792,7 +12476,7 @@ Reported error: - + Test Test @@ -11807,13 +12491,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11862,24 +12546,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11903,12 +12569,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11943,33 +12619,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Podpisz klucz PGP + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11980,6 +12674,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Załącz podpisy @@ -12034,7 +12733,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12208,12 +12907,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12577,7 +13276,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12638,19 +13337,19 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. - Hash odrzucony. Odblokuj manualnie i zrestartuj jeśli potrzebujesz. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] + @@ -12658,27 +13357,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12688,22 +13396,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - Nieznana wersja - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12711,15 +13404,16 @@ malicious behavior of crafted plugins. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins Wtyczki - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - PopularityDefs @@ -12787,12 +13481,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12802,12 +13501,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12888,7 +13582,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12912,11 +13611,6 @@ malicious behavior of crafted plugins. Other Topics Inne Tematy - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13171,7 +13865,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13515,7 +14209,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13525,7 +14220,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13552,7 +14247,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13719,7 +14419,7 @@ Symbole <b>",|,/,\,&lt;,&gt;,*,?</b> zostaną zastąpio - + Deny friend @@ -13739,7 +14439,7 @@ Symbole <b>",|,/,\,&lt;,&gt;,*,?</b> zostaną zastąpio - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13770,7 +14470,7 @@ Symbole <b>",|,/,\,&lt;,&gt;,*,?</b> zostaną zastąpio - + Multiple instances @@ -13804,11 +14504,6 @@ Symbole <b>",|,/,\,&lt;,&gt;,*,?</b> zostaną zastąpio Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13823,7 +14518,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13873,7 +14568,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13883,7 +14578,7 @@ Reported error is: - + enabled @@ -13893,12 +14588,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13913,42 +14608,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13967,6 +14669,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13978,6 +14686,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13987,7 +14705,7 @@ Reported error is: Kreator szybkiego startu - + <!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; } @@ -14009,21 +14727,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14090,13 +14810,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14119,7 +14840,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14144,7 +14865,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14243,7 +14984,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 KB @@ -14279,7 +15020,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14310,7 +15051,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14332,7 +15073,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14441,7 +15182,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14466,7 +15207,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14804,7 +15545,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14821,7 +15562,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14866,17 +15607,17 @@ Reducing image to %1x%2 pixels? - + built-in wbudowane - + Could not create data directory: %1 - + Revision @@ -14904,33 +15645,10 @@ Reducing image to %1x%2 pixels? Statystyki RTT - - SFListDelegate - - - B - B - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15111,12 +15829,12 @@ Reducing image to %1x%2 pixels? - + File Name Nazwa pliku - + Download Pobierz @@ -15185,7 +15903,7 @@ Reducing image to %1x%2 pixels? Otwórz folder - + Create Collection... @@ -15205,7 +15923,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15448,12 +16166,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) Automatyczne (UPnP) @@ -15468,7 +16196,7 @@ Reducing image to %1x%2 pixels? Ręcznie Przekierowany Port - + Public: DHT & Discovery @@ -15488,13 +16216,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address Adres Lokalny - + External Address @@ -15504,28 +16232,28 @@ Reducing image to %1x%2 pixels? - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15548,13 +16276,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15564,23 +16292,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15590,17 +16307,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15610,90 +16375,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test Test - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status Stan - - + + Origin - - + + Reason - - + + Comment Skomentuj - + IPs - + IP whitelist - + Manual input @@ -15718,12 +16488,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15746,32 +16622,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15801,99 +16678,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15926,7 +16724,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15941,13 +16739,13 @@ Check your ports! Pozwolenia - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16211,7 +17009,7 @@ Select the Friends with which you want to Share your Channel. Pobierz - + Copy retroshare Links to Clipboard @@ -16236,7 +17034,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16252,7 +17050,7 @@ Select the Friends with which you want to Share your Channel. Dodaj udział - + Create Collection... @@ -16275,7 +17073,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16301,11 +17099,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16314,6 +17113,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16374,7 +17178,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile Załaduj profil @@ -16616,12 +17420,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16637,18 +17441,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16659,6 +17463,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16668,7 +17477,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16678,7 +17487,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16688,7 +17497,7 @@ This choice can be reverted in settings. - + UDP @@ -16702,13 +17511,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16921,7 +17740,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Pauza @@ -16970,7 +17789,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17103,16 +17922,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Pobierania + Uploads - + Name i.e: file name @@ -17308,25 +18129,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster Szybciej - + Random Losowe @@ -17351,7 +18172,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17377,39 +18203,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay Ok - - + + Waiting Oczekiwanie - + Downloading Pobieranie - + Complete - + Queued @@ -17443,7 +18269,7 @@ Try to be patient! - + Transferring @@ -17453,7 +18279,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? Czy jesteś pewien, że chcesz anulować i usunąć te pliki? @@ -17511,7 +18337,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data Ostatnio widziano @@ -17617,7 +18443,7 @@ Try to be patient! - + Columns Kolumny @@ -17627,7 +18453,7 @@ Try to be patient! Transfery plików - + Path i.e: Where file is saved Ścieżka @@ -17643,12 +18469,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17658,7 +18479,7 @@ Try to be patient! - + Create Collection... @@ -17673,7 +18494,7 @@ Try to be patient! - + Collection @@ -17683,17 +18504,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17729,7 +18550,7 @@ Try to be patient! - + Friends Directories Katalogi Przyjaciół @@ -17772,7 +18593,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17835,7 +18656,7 @@ Try to be patient! - + Age in seconds @@ -17850,7 +18671,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17859,16 +18690,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18067,10 +18893,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18081,11 +18917,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18275,7 +19106,7 @@ Try to be patient! Szukaj - + My Groups @@ -18295,7 +19126,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_pt.qm b/retroshare-gui/src/lang/retroshare_pt.qm index 14679f49180fc2921fb75e067555c349c23df4e2..48c74189c80af9c48798c0f9f2e68063810d2bdd 100644 GIT binary patch delta 413 zcmXZYPbfrD6bA6`-FNSO_gy0?noL%Mjiji_Mp;NUh6PDYEJps7@uzI2SJplqT6rSy-~Layjp8e&^KJw>bNe$F_r(>3Rrd0P6i&4e2^53 zbmF8c0f}xvJb<640lNk;&F6hCjbd&LeHL0yKp3eL7lsvnE(2#mnj!n+aRf delta 481 zcmXZXPbkA-7zgn0@6Y@D^Ul&@WEW*P;6g4+t;D4KInb!x*w40NYg%eaJ2)tn>q}eQ2XGM-Vu3iqDA`R8oxPX;N zZP+%VR#QEI?q$;nuZS5U`Lh<3+yKvOTbd%?>!eg5)eBO)BaL&?+}1NsdBDMqhaZpV zi}75cdr$;T@#{=d{4~*2{ItZtThfr6?O%0KSR|FPsOa`*zs;^nO`4OlBaY5Cw|^sQ Y#X|GenzfRQ#$$`oP}oXVdeyS=2L-%qQ2+n{ diff --git a/retroshare-gui/src/lang/retroshare_pt.ts b/retroshare-gui/src/lang/retroshare_pt.ts index eed8d46a8..e9776f8d3 100644 --- a/retroshare-gui/src/lang/retroshare_pt.ts +++ b/retroshare-gui/src/lang/retroshare_pt.ts @@ -1,8 +1,8 @@ - + AWidget - + version @@ -21,12 +21,17 @@ - + About - + + Copy Info + + + + close @@ -478,7 +483,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language @@ -518,24 +523,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -571,24 +580,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -618,8 +639,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -723,7 +749,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar @@ -731,7 +757,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -739,7 +765,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -747,13 +773,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage - + Show Settings Opções @@ -808,7 +834,7 @@ p, li { white-space: pre-wrap; } - + Since: @@ -818,6 +844,31 @@ p, li { white-space: pre-wrap; } + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -881,7 +932,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -896,6 +947,49 @@ p, li { white-space: pre-wrap; } + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -924,14 +1018,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -945,17 +1031,32 @@ p, li { white-space: pre-wrap; } - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -970,7 +1071,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 @@ -980,13 +1081,13 @@ p, li { white-space: pre-wrap; } - + Lobby chat - + Lobby management @@ -1018,7 +1119,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1033,12 +1134,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1084,7 +1185,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1123,18 +1224,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name - + Count @@ -1155,23 +1256,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private @@ -1180,13 +1281,18 @@ p, li { white-space: pre-wrap; } Public + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1196,27 +1302,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1231,7 +1347,7 @@ p, li { white-space: pre-wrap; } - + Lobby Name: @@ -1250,6 +1366,11 @@ p, li { white-space: pre-wrap; } Type: + + + Security: + + Peers: @@ -1260,19 +1381,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1281,23 +1403,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1307,22 +1424,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1375,7 +1512,7 @@ Double click lobbies to enter and chat. - + Quick Message @@ -1384,12 +1521,37 @@ Double click lobbies to enter and chat. ChatPage - + General - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings @@ -1414,7 +1576,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1528,7 +1695,7 @@ Double click lobbies to enter and chat. - + Incoming @@ -1572,6 +1739,16 @@ Double click lobbies to enter and chat. System message + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1663,7 +1840,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1686,7 +1863,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat @@ -1735,17 +1912,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close - + Send - + Bold @@ -1760,12 +1937,12 @@ Double click lobbies to enter and chat. - + Attach a Picture - + Strike @@ -1816,12 +1993,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - + Do you really want to physically delete the history? @@ -1846,7 +2048,7 @@ Double click lobbies to enter and chat. - + appears to be Offline. @@ -1871,7 +2073,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -1893,7 +2095,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1908,12 +2110,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1923,7 +2125,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1934,7 +2136,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1969,12 +2171,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1984,7 +2186,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2142,7 +2344,12 @@ Double click lobbies to enter and chat. - + + Node info + + + + Peer Address @@ -2229,12 +2436,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2270,6 +2472,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2325,7 +2532,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2358,17 +2565,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2378,18 +2575,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2399,13 +2585,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2426,11 +2607,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2511,6 +2697,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2536,7 +2762,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2550,61 +2776,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: Nome: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: - + - + Options Opções - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2624,7 +2891,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2680,12 +2947,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed - + Cannot get peer details of PGP key %1 @@ -2720,12 +2987,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation - + Ultimate @@ -2751,7 +3019,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2766,7 +3034,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2864,13 +3132,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2880,12 +3157,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2905,17 +3187,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2928,7 +3205,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2938,8 +3215,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2949,8 +3226,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2960,7 +3237,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2970,17 +3247,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3837,7 +4114,7 @@ p, li { white-space: pre-wrap; } - + Forum @@ -3847,7 +4124,7 @@ p, li { white-space: pre-wrap; } - + Attach File @@ -3877,12 +4154,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3920,12 +4197,12 @@ p, li { white-space: pre-wrap; } - + Send - + Forum Message @@ -3936,7 +4213,7 @@ Do you want to reject this message? - + Post as @@ -3971,7 +4248,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3985,7 +4262,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3995,12 +4287,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4159,7 +4461,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4181,7 +4488,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4279,7 +4586,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4309,7 +4616,7 @@ Do you want to reject this message? - + Name @@ -4354,7 +4661,7 @@ Do you want to reject this message? - + Bucket @@ -4380,17 +4687,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4425,7 +4732,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4630,7 +4952,7 @@ Do you want to reject this message? - + RELAY END @@ -4664,19 +4986,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4686,13 +5013,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4762,12 +5091,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4900,7 +5250,7 @@ you plug it in. ExprParamElement - + to @@ -5005,7 +5355,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5180,7 +5530,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5256,89 +5606,39 @@ you plug it in. FriendList - - - Status - - - - - - + Last Contact - - - Avatar - - - - + Hide Offline Friends - - State + + export friendlist - Sort by State + export your friendlist including groups - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name + + import friendlist - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + import your friendlist including groups + - Set Root Decorated + Show State @@ -5348,7 +5648,7 @@ you plug it in. - + Group @@ -5389,7 +5689,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5419,40 +5729,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5462,7 +5835,7 @@ you plug it in. - + Display @@ -5472,12 +5845,7 @@ you plug it in. - - Sort by - - - - + Node @@ -5487,17 +5855,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5545,30 +5913,35 @@ you plug it in. - - All + + Sort by state - None - Nenhum - - - Name - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5662,12 +6035,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5678,12 +6056,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5696,7 +6069,7 @@ you plug it in. - + Name @@ -5748,7 +6121,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5763,7 +6136,7 @@ anonymous, you can use a fake email. - + Port @@ -5807,28 +6180,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5850,7 +6218,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5875,12 +6243,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5896,12 +6269,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5918,7 +6296,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6028,7 +6411,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6036,12 +6424,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6057,21 +6445,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6221,23 +6594,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6251,8 +6619,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6261,35 +6641,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6298,7 +6656,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6391,82 +6764,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6646,7 +7041,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -6666,7 +7061,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6680,13 +7075,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6699,7 +7099,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6797,7 +7197,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6808,17 +7208,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels @@ -6833,13 +7238,29 @@ p, li { white-space: pre-wrap; } - + + Select channel download directory + + + + Disable Auto-Download - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7180,7 +7601,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download @@ -7200,7 +7621,7 @@ p, li { white-space: pre-wrap; } - + Feeds @@ -7210,7 +7631,7 @@ p, li { white-space: pre-wrap; } - + Subscribers @@ -7368,7 +7789,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7500,12 +7921,12 @@ before you can comment - + Start new Thread for Selected Forum - + Search forums @@ -7526,7 +7947,7 @@ before you can comment - + Title @@ -7539,13 +7960,18 @@ before you can comment - + Author - - + + Save image + + + + + Loading @@ -7575,7 +8001,7 @@ before you can comment - + Search Title @@ -7600,17 +8026,27 @@ before you can comment - + No name - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7648,7 +8084,7 @@ before you can comment - + Hide @@ -7658,7 +8094,38 @@ before you can comment - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7678,29 +8145,55 @@ before you can comment - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare - + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7725,7 +8218,7 @@ before you can comment - + Forum name @@ -7740,7 +8233,7 @@ before you can comment - + Description @@ -7750,12 +8243,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7771,7 +8264,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums @@ -7801,11 +8299,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7828,13 +8321,13 @@ before you can comment GxsGroupDialog - - + + Name - + Add Icon @@ -7849,7 +8342,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7859,36 +8352,36 @@ before you can comment - - + + Description - + Message Distribution - + Public - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7918,7 +8411,7 @@ before you can comment - + PGP Required @@ -7934,12 +8427,12 @@ before you can comment - + Comments - + Allow Comments @@ -7949,33 +8442,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7985,12 +8518,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8063,7 +8596,7 @@ before you can comment - + Unsubscribe @@ -8073,12 +8606,12 @@ before you can comment - + Open in new tab - + Show Details @@ -8103,12 +8636,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8116,7 +8649,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8129,7 +8662,7 @@ before you can comment GxsIdDetails - + Loading @@ -8144,8 +8677,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8160,7 +8700,7 @@ before you can comment - + Identity&nbsp;name @@ -8175,7 +8715,7 @@ before you can comment - + [Unknown] @@ -8193,6 +8733,49 @@ before you can comment + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8388,28 +8971,7 @@ before you can comment - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8456,7 +9018,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8498,7 +9081,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8533,78 +9116,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8643,37 +9236,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search - + Unknown real name @@ -8683,72 +9297,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8769,42 +9340,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8814,7 +9385,57 @@ p, li { white-space: pre-wrap; } - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8824,12 +9445,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8845,7 +9471,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8860,7 +9486,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8870,15 +9531,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8899,7 +9580,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8914,7 +9600,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8924,17 +9610,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8944,7 +9620,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8959,29 +9635,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8991,7 +9655,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9034,8 +9698,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9043,7 +9707,7 @@ p, li { white-space: pre-wrap; } - + @@ -9053,13 +9717,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9079,7 +9743,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9134,7 +9798,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9202,7 +9866,7 @@ p, li { white-space: pre-wrap; } - + Copy Copiar @@ -9232,16 +9896,35 @@ p, li { white-space: pre-wrap; } + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9251,7 +9934,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9300,7 +9983,7 @@ p, li { white-space: pre-wrap; } - + Options Opções @@ -9334,12 +10017,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9373,7 +10056,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9423,7 +10111,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9493,7 +10181,7 @@ p, li { white-space: pre-wrap; } - + Add Adicionar @@ -9518,7 +10206,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9527,38 +10215,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9639,7 +10306,7 @@ p, li { white-space: pre-wrap; } - + Subject: @@ -9650,12 +10317,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9665,7 +10342,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9735,7 +10412,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9760,47 +10437,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9826,12 +10478,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9842,7 +10494,7 @@ Do you want to save message to draft box? - + Add to "To" @@ -9862,12 +10514,7 @@ Do you want to save message to draft box? - - Friend Details - - - - + Original Message @@ -9877,19 +10524,21 @@ Do you want to save message to draft box? - + + To - + + Cc - + Sent @@ -9931,12 +10580,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown @@ -10046,7 +10696,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... @@ -10093,12 +10748,7 @@ Do you want to save message ? - - Show: - - - - + Close @@ -10108,32 +10758,57 @@ Do you want to save message ? De: - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10156,7 +10831,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10171,7 +10866,7 @@ Do you want to save message ? - + Tags @@ -10211,7 +10906,7 @@ Do you want to save message ? - + Edit Tag @@ -10221,22 +10916,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10517,7 +11202,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10584,24 +11269,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10613,14 +11298,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10689,7 +11374,7 @@ Do you want to save message ? - + Reply to All @@ -10707,12 +11392,12 @@ Do you want to save message ? - + From - + Date @@ -10740,12 +11425,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10800,7 +11485,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10865,14 +11555,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10892,7 +11582,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10901,18 +11596,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10922,15 +11617,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10953,7 +11643,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link @@ -10987,7 +11692,7 @@ Do you want to save message ? - + Expand @@ -11030,7 +11735,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11074,26 +11779,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11207,7 +11892,7 @@ Do you want to save message ? - + Deny friend @@ -11265,7 +11950,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11331,7 +12016,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11346,7 +12031,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11366,12 +12051,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11401,7 +12086,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11470,7 +12155,7 @@ Reported error: NewsFeed - + News Feed @@ -11489,18 +12174,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11509,6 +12189,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11652,7 +12337,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11676,11 +12366,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11730,7 +12415,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11770,7 +12455,7 @@ Reported error: - + Test @@ -11785,13 +12470,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11840,24 +12525,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11881,12 +12548,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11921,33 +12598,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11958,6 +12653,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -12012,7 +12712,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12186,12 +12886,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12543,7 +13243,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12604,18 +13304,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12624,27 +13324,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12654,22 +13363,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12677,13 +13371,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12753,12 +13448,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12768,12 +13468,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12854,7 +13549,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12878,11 +13578,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13137,7 +13832,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13481,7 +14176,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13491,7 +14187,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13518,7 +14214,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13684,7 +14385,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13704,7 +14405,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13735,7 +14436,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13769,11 +14470,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13788,7 +14484,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13838,7 +14534,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13848,7 +14544,7 @@ Reported error is: - + enabled @@ -13858,12 +14554,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13878,42 +14574,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13932,6 +14635,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13943,6 +14652,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13952,7 +14671,7 @@ Reported error is: - + <!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; } @@ -13974,21 +14693,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14055,13 +14776,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14079,7 +14801,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14104,7 +14826,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14203,7 +14945,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14239,7 +14981,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14270,7 +15012,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14292,7 +15034,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14401,7 +15143,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14426,7 +15168,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14762,7 +15504,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14779,7 +15521,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14824,17 +15566,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14862,33 +15604,10 @@ Reducing image to %1x%2 pixels? - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15069,12 +15788,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download @@ -15143,7 +15862,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15163,7 +15882,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15406,12 +16125,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15426,7 +16155,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15446,13 +16175,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address - + External Address @@ -15462,28 +16191,28 @@ Reducing image to %1x%2 pixels? - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15506,13 +16235,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15522,23 +16251,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15548,17 +16266,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15568,90 +16334,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status - - + + Origin - - + + Reason - - + + Comment - + IPs - + IP whitelist - + Manual input @@ -15676,12 +16447,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15704,32 +16581,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15759,99 +16637,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15884,7 +16683,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15899,13 +16698,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16169,7 +16968,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -16194,7 +16993,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16210,7 +17009,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16233,7 +17032,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16259,11 +17058,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16272,6 +17072,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16332,7 +17137,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16574,12 +17379,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16595,18 +17400,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16617,6 +17422,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16626,7 +17436,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16636,7 +17446,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16646,7 +17456,7 @@ This choice can be reverted in settings. - + UDP @@ -16660,13 +17470,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16875,7 +17695,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16924,7 +17744,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17057,16 +17877,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17262,25 +18084,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17305,7 +18127,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17331,39 +18158,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay - - + + Waiting - + Downloading - + Complete - + Queued @@ -17397,7 +18224,7 @@ Try to be patient! - + Transferring @@ -17407,7 +18234,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17465,7 +18292,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17571,7 +18398,7 @@ Try to be patient! - + Columns @@ -17581,7 +18408,7 @@ Try to be patient! - + Path i.e: Where file is saved Caminho @@ -17597,12 +18424,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17612,7 +18434,7 @@ Try to be patient! - + Create Collection... @@ -17627,7 +18449,7 @@ Try to be patient! - + Collection @@ -17637,17 +18459,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17683,7 +18505,7 @@ Try to be patient! - + Friends Directories @@ -17726,7 +18548,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17789,7 +18611,7 @@ Try to be patient! - + Age in seconds @@ -17804,7 +18626,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17813,16 +18645,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18021,10 +18848,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18035,11 +18872,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18229,7 +19061,7 @@ Try to be patient! - + My Groups @@ -18249,7 +19081,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_ru.qm b/retroshare-gui/src/lang/retroshare_ru.qm index 557e0677f8043cb3f9ef1a1179436b16043cc246..cba101be1f2c3541a498f766c298f8e647b69a7d 100644 GIT binary patch delta 77468 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%0DtMX8@MVLHQT&;D@9aud- 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

P#F2b9gmwCcBbKv`b#rPC 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ⅆ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 diff --git a/retroshare-gui/src/lang/retroshare_ru.ts b/retroshare-gui/src/lang/retroshare_ru.ts index f01db92e7..0181e0e8e 100644 --- a/retroshare-gui/src/lang/retroshare_ru.ts +++ b/retroshare-gui/src/lang/retroshare_ru.ts @@ -1,15 +1,15 @@ - + AWidget - + version версия RetroShare version - Версия RetroShare + Версия Retroshare: @@ -21,12 +21,17 @@ О RetroShare - + About О программе - + + Copy Info + Скопировать информацию + + + close Закрыть @@ -228,7 +233,7 @@ Share Options - Разделить установки + Настройки общего доступа @@ -495,7 +500,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Язык @@ -535,24 +540,28 @@ p, li { white-space: pre-wrap; } Панель инструментов - - + + On Tool Bar На панели инструментов - - + On List Item На позиции в списке - + Where do you want to have the buttons for menu? Где вы хотите расположить кнопки меню? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? Где вы хотите расположить кнопки для страницы? @@ -588,24 +597,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 Размер значка = 8x8 - - + + Icon Size = 16x16 Размер значка = 16x16 - - + + Icon Size = 24x24 Размер значка = 24x24 - + + + Icon Size = 64x64 + Размер значка = 64x64 + + + + + Icon Size = 128x128 + Размер значка = 128x128 + + + Status Bar Строка состояния @@ -635,8 +656,13 @@ p, li { white-space: pre-wrap; } Отображать в строке состояния - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 Размер значка = 32x32 @@ -741,7 +767,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar Нажать для изменения аватара @@ -749,7 +775,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s кБ/с @@ -757,7 +783,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A Недоступен @@ -765,13 +791,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage Загруженность канала передачи данных - + Show Settings Показать настройки @@ -826,7 +852,7 @@ p, li { white-space: pre-wrap; } Отмена - + Since: С: @@ -836,6 +862,31 @@ p, li { white-space: pre-wrap; } Скрыть настройки + + BandwidthStatsWidget + + + + Sum + Сумма + + + + + All + Все + + + + KB/s + КБ/с + + + + Count + ИТОГ + + BwCtrlWindow @@ -899,7 +950,7 @@ p, li { white-space: pre-wrap; } Разрешено получать - + TOTALS ВСЕГО @@ -914,6 +965,49 @@ p, li { white-space: pre-wrap; } Форма + + BwStatsWidget + + + Form + Форма + + + + Friend: + Друг: + + + + Type: + Тип: + + + + Up + Отдача + + + + Down + Получение + + + + Service: + Служба: + + + + Unit: + Единица измерения: + + + + Log scale + + + ChannelPage @@ -942,14 +1036,6 @@ p, li { white-space: pre-wrap; } Открывать каждый канал в новой вкладке - - ChatDialog - - - Talking to - Поговорить с - - ChatLobbyDialog @@ -963,17 +1049,32 @@ p, li { white-space: pre-wrap; } Изменить никнейм - + Mute participant Игнорировать участника - + + Send Message + Отправить сообщение + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Пригласить друзей в эту комнату - + Leave this lobby (Unsubscribe) Выйти из этой комнаты (Отписаться) @@ -988,7 +1089,7 @@ p, li { white-space: pre-wrap; } Выберите друзей для приглашения: - + Welcome to lobby %1 Добро пожаловать в Комнату %1 @@ -998,13 +1099,13 @@ p, li { white-space: pre-wrap; } Тема: %1 - + Lobby chat Чат - + Lobby management @@ -1036,7 +1137,7 @@ p, li { white-space: pre-wrap; } Вы хотите отменить подписку на эту Комнату чата? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Правая кнопка мыши – игнорировать участника. Двойной щелчок – обратиться к участнику, вставив ник в чат @@ -1052,12 +1153,12 @@ p, li { white-space: pre-wrap; } секунды - + Start private chat Начать приватную беседу - + Decryption failed. Сбой расшифровки. @@ -1103,7 +1204,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies Чаты @@ -1142,18 +1243,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies Чаты - - + + Name Имя - + Count Человек @@ -1174,23 +1275,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby Создать Комнату - + [No topic provided] [без темы] - + Selected lobby info Информация о выбранной комнате - + Private Частный @@ -1199,13 +1300,18 @@ p, li { white-space: pre-wrap; } Public Публичный + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. Вы не подписаны на эту комнату. Двойной щелчок для входа и общения. - + Remove Auto Subscribe Удалить Автоподписку @@ -1215,27 +1321,37 @@ p, li { white-space: pre-wrap; } Автоподписка - + %1 invites you to chat lobby named %2 %1 пригласил вас в комнату %2 - + Search Chat lobbies Поиск чатов - + Search Name Поиск имени - + Subscribed Подписка - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + <h1><img width="%1" src=":/icons/help_64.png">Чат Лобби</h1> <p>Чат лобби это распределенные комнаты для общения, которые работают довольно похоже на IRC. Они позволяют говорить анонимно со множеством людей без необходимости добавлять их в друзья.</p> <p>Чат лобби может быть публичным (ваши друзья видят его) или приватным (ваши друзья не видят его, до тех пор пока вы не пригласите их< img src=":/images/add_24x24.png «width=%2/ >). После того, как вы были приглашены в приватный лобби, вы сможете увидеть его, когда ваши друзья используют его.</p> <p>Список слева показывает чат лобби, в котором принимают участие ваши друзья. Вы можете либо <ul><li>щёлкнуть правой кнопкой мыши для создания новых чат лобби</li>, <li>дважды щёлкнуть чат лобби, чтобы войти, общаться и показать его своим друзьям</li></ul> Примечание: Для правильной работы чат лобби, время вашего компьютера должно быть синхронизировано. Поэтому проверьте ваши системные часы! </p> + + + + Create a non anonymous identity and enter this lobby + Создать неанонимную личность и войти в эту комнату + + + Columns Столбцы @@ -1250,7 +1366,7 @@ p, li { white-space: pre-wrap; } Нет - + Lobby Name: Название комнаты: @@ -1269,6 +1385,11 @@ p, li { white-space: pre-wrap; } Type: Тип: + + + Security: + Безопасность + Peers: @@ -1279,12 +1400,13 @@ p, li { white-space: pre-wrap; } + TextLabel Текстовая метка - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1293,7 +1415,7 @@ Double click lobbies to enter and chat. Двойной щелчок мыши для входа в комнату и общения. - + Private Subscribed Lobbies Подписанные приватные комнаты @@ -1302,23 +1424,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies Подписанные публичные комнаты - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Чаты</h1><p>Чаты RetroShare являются децентрализованными и функционируют почти так же, как и чаты IRC. Чаты дают возможность анонимно общаться со множеством людей без необходимости предварительного обмена сертификатами.</p><p>Чат-комната может быть публичной (ваше окружение видит её) или приватной (ваше окружение не видит её, если только вы не пригласите их <img src=":/images/add_24x24.png" width=12/>). После того, как вы были приглашены в приватную комнату, она появится в вашем списке чатов и вы увидите в ней ваших друзей.</p> <p>Список слева показывает чат-комнаты в которых находятся ваши друзья. Вы можете <ul><li>щёлкнуть правой кнопкой мыши, чтобы создать новую чат-комнату</li><li>дважды щёлкнуть на чат-комнате, чтобы войти, общаться или пригласить в неё других своих друзей</li></ul>Примечание: Чтобы комнаты чата работали правильно, время вашего компьютера должно быть синхронизировано. Поэтому проверьте ваши системные часы!</p> - Chat Lobbies Чаты - + Leave this lobby Выйти из этой комнаты - + Enter this lobby Войти в эту комнату @@ -1328,22 +1445,42 @@ Double click lobbies to enter and chat. Войти в эту комнату как ... - + + Default identity is anonymous + Личность по-умолчанию — anonymous + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + Вы не можете присоединиться к этой комнате со своей личностью по-умолчанию, так как она анонимна, что запрещено в данной комнате. + + + + No anonymous IDs + Нет анонимных личностей + + + + You will need to create a non anonymous identity in order to join this chat lobby. + Вам потребуется создать анонимную личность, чтобы присоединиться к этой комнате + + + You will need to create an identity in order to join chat lobbies. Вам нужно создать личность, чтобы присоединиться к чату комнаты. - + Choose an identity for this lobby: Выберите личность для этой комнаты: - + Create an identity and enter this lobby Создайте личность и войдите в эту комнату - + Show @@ -1396,7 +1533,7 @@ Double click lobbies to enter and chat. Отмена - + Quick Message Быстрое сообщение @@ -1405,12 +1542,37 @@ Double click lobbies to enter and chat. ChatPage - + General Главное - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Настройки чата @@ -1435,7 +1597,12 @@ Double click lobbies to enter and chat. Разрешить нестандартный размер шрифта - + + Minimum font size + Минимальный размер шрифта + + + Enable bold Полужирный шрифт @@ -1549,7 +1716,7 @@ Double click lobbies to enter and chat. Приватный чат - + Incoming Входящие @@ -1593,6 +1760,16 @@ Double click lobbies to enter and chat. System message Системное сообщение + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1684,7 +1861,7 @@ Double click lobbies to enter and chat. Показывать панель по умолчанию - + Private chat invite from Приглашение в приватный чат от @@ -1707,7 +1884,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat Стандартный стиль для группового чата @@ -1756,17 +1933,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close Закрыть - + Send - Послать + Отправить - + Bold Жирный @@ -1781,12 +1958,12 @@ Double click lobbies to enter and chat. Курсив - + Attach a Picture Прикрепить изображения - + Strike Удар @@ -1837,12 +2014,37 @@ Double click lobbies to enter and chat. Сбросить настройки шрифта - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... печатает... - + Do you really want to physically delete the history? Вы действительно хотите удалить историю сообщений с диска? @@ -1867,7 +2069,7 @@ Double click lobbies to enter and chat. Текстовый файл (*.txt );;Все файлы (*) - + appears to be Offline. по-видимому, не в сети. @@ -1892,7 +2094,7 @@ Double click lobbies to enter and chat. сейчас занят и не может вам ответить - + Find Case Sensitively Найти с учётом регистра @@ -1914,7 +2116,7 @@ Double click lobbies to enter and chat. Не оставляйте цвет после найденных X пунктов (требуется больше ресурсов процессора) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Найти предыдущее </b><br/><i>Ctrl+Shift+G</i> @@ -1929,12 +2131,12 @@ Double click lobbies to enter and chat. <b>Найти</b><br/><i>Ctrl+F</i> - + (Status) (состояние) - + Set text font & color Указать тип шрифта и цвет текста @@ -1944,7 +2146,7 @@ Double click lobbies to enter and chat. Прикрепить файл - + WARNING: Could take a long time on big history. ВНИМАНИЕ! Может потребовать много времени в случае большой истории @@ -1955,7 +2157,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Отметить этот выделенный текст</b><br><i>Ctrl + M</i> @@ -1990,12 +2192,12 @@ Double click lobbies to enter and chat. Окно поиска - + Type a message here Печатайте ваши сообщения здесь - + Don't stop to color after Не оставляйте цвет после @@ -2005,7 +2207,7 @@ Double click lobbies to enter and chat. найденные пункты (требуется больше ресурсов процессора) - + Warning: Предупреждение: @@ -2163,7 +2365,12 @@ Double click lobbies to enter and chat. Подробности - + + Node info + Сведения об узле сети + + + Peer Address Адрес узла @@ -2250,12 +2457,7 @@ Double click lobbies to enter and chat. Сведения об узле Retroshare - - Location info - Информация о месте - - - + Node name : Имя узла: @@ -2291,6 +2493,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node Авто-загрузка рекомендованных файлов с этого узла @@ -2346,7 +2553,7 @@ Double click lobbies to enter and chat. Требуется разрешение белого списка - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> <html><head/> <body><p>Это ID узла <span style="font-weight:600;"> OpenSSL</span> сертификат, которого подписан <span style="font-weight:600;"> PGP</span> ключём выше.</p></body></html> @@ -2379,17 +2586,7 @@ Double click lobbies to enter and chat. Добавить нового друга - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Этот мастер поможет вам соединиться с друзьями в сети (RetroShare).<br>Для этого доступны следующие способы: - - - - &Enter the certificate manually - &Ввести сертификат вручную - - - + &You get a certificate file from your friend У вас есть файл сертификата друга @@ -2399,19 +2596,7 @@ Double click lobbies to enter and chat. &Сделать другом выбранных друзей моих друзей - - &Enter RetroShare ID manually - &Ввести RetroShare ID вручную - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Отправить приглашение по Email -(Она/Он получает письмо с инструкциями, как загрузить RetroShare) - - - + Text certificate Текст сертификата @@ -2421,13 +2606,8 @@ Double click lobbies to enter and chat. Использовать текстовое представление PGP сертификатов. - - The text below is your PGP certificate. You have to provide it to your friend - Текст ниже - ваш PGP сертификат. Его вы должны предоставить вашему другу - - - - + + Include signatures Вставить подписи @@ -2448,11 +2628,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below - Введите сертификат друга в окне ниже + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files Файлы сертификатов @@ -2533,6 +2718,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + RetroShare лучше с друзьями + + + + Invite your Friends from other Networks to RetroShare. + Пригласите сових друзей из других сетей в RetroShare + + + + GMail + GMail + + + + Yahoo + Yahoo + + + + Outlook + Outlook + + + + AOL + AOL + + + + Yandex + Yandex + + + + Email + + + + Invite Friends by Email Пригласить друзей по эл. почте @@ -2558,7 +2783,7 @@ Double click lobbies to enter and chat. - + Friend request Запросы на дружбу @@ -2572,61 +2797,103 @@ Double click lobbies to enter and chat. - + Peer details Сведения об участнике - - + + Name: Имя: - - + + Email: Эл. почта - - + + Node: + Узел сети: + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + Вы можете добавлять так много друзей как хотите, но для числа более 40 вероятно потребуется много ресурсов CPU, памяти и пропускной способности сети. + + + Location: Расположение: - + - + Options Параметры - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + Этот мастер поможет вам соединиться с друзьями в сети (RetroShare).<br>Для этого доступны следующие способы: + + + + Enter the certificate manually + Ввести сертификат вручную + + + + Enter RetroShare ID manually + Ввести личность RetroShare вручную + + + + &Send an Invitation by Web Mail Providers + &Отправить приглашение через провайдеров Web-почты. + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + &Отправить приглашение по Email +(Ваш друг получит письмо с инструкциями, как загрузить RetroShare) + + + + Recommend many friends to each other + Рекомендовать нескольких друзей друг другу + + + + Add friend to group: Добавить друга в группу: - - + + Authenticate friend (Sign PGP Key) Аутентификация друга (Введите ключ PGP) - - + + Add as friend to connect with Добавить как друга, для соединения с - - + + To accept the Friend Request, click the Finish button. Чтобы принять Предложение Дружбы, нажмите кнопку Готово. - + Sorry, some error appeared К сожалению, появились некоторые ошибки @@ -2646,7 +2913,7 @@ Double click lobbies to enter and chat. Подробная информация о вашем друге: - + Key validity: Срока действия ключа: @@ -2702,12 +2969,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed Ошибка загрузки сертификата - + Cannot get peer details of PGP key %1 Не удается получить подробности ключа PGP пира % 1 @@ -2742,12 +3009,13 @@ Double click lobbies to enter and chat. ID пира - + + RetroShare Invitation Приглашение из RetroShare - + Ultimate Окончательный @@ -2773,7 +3041,7 @@ Double click lobbies to enter and chat. - + You have a friend request from У вас есть запрос на дружбу от @@ -2788,7 +3056,7 @@ Double click lobbies to enter and chat. Этот peer %1 не доступен в вашей сети - + Use new certificate format (safer, more robust) Использовать новый формат сертификата (безопаснее) @@ -2886,13 +3154,22 @@ Double click lobbies to enter and chat. *** Никого *** - + Use as direct source, when available Используйте в качестве прямого источника, если доступно - - + + IP-Addr: + IP адрес: + + + + IP-Address + IP адрес: + + + Recommend many friends to each others Рекомендовать нескольких друзей друг другу @@ -2902,12 +3179,17 @@ Double click lobbies to enter and chat. Рекомендации друзей - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: Сообщение: - + Recommend friends Рекомендованные друзья @@ -2927,17 +3209,12 @@ Double click lobbies to enter and chat. Выберите не менее одного друга получателем - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Вы можете добавлять так много друзей как хотите, но для числа более 40 вероятно потребуется много ресурсов CPU, памяти и пропускной способности сети. - - - + Add key to keyring Добавить ключ в связку ключей - + This key is already in your keyring Это ключ уже в Вашей связке @@ -2953,7 +3230,7 @@ even if you don't make friends. даже если вы не являетесь доверенными. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Сертификат имеет неправильный номер версии. Помните, что сети v0.6 и v0.5 несовместимы. @@ -2963,8 +3240,8 @@ even if you don't make friends. Недопустимый идентификатор узла. - - + + Auto-download recommended files Авто загрузка рекомендованных файлов @@ -2974,8 +3251,8 @@ even if you don't make friends. Может использоваться в качестве непосредственного источника - - + + Require whitelist clearance to connect Для подключения требуется разрешение белого списка @@ -2985,7 +3262,7 @@ even if you don't make friends. Добавить IP в белый список - + No IP in this certificate! Нет IP в этом сертификате! @@ -2995,17 +3272,17 @@ even if you don't make friends. <p>Этот сертификат не имеет IP. Вам нужно рассчитывать на обнаружение и DHT, чтобы найти его. Поскольку вам требуется разрешение белого списка, пир вызовет предупреждение системы безопасности в закладке Новостей. Там, вы можете добавить его IP в белый список.</p> - + Added with certificate from %1 Добавлено с сертификатом от %1 - + Paste Cert of your friend from Clipboard Вставить сертификат вашего друга из буфера обмена - + Certificate Load Failed:can't read from file %1 Ошибка загрузки сертификата: не удается прочитать файл %1 @@ -3876,7 +4153,7 @@ p, li { white-space: pre-wrap; } Создать сообщение на форуме - + Forum Форум @@ -3886,7 +4163,7 @@ p, li { white-space: pre-wrap; } Тема - + Attach File Присоединить файл @@ -3916,12 +4193,12 @@ p, li { white-space: pre-wrap; } Новая тема - + No Forum Нет Форума - + In Reply to В ответ на @@ -3959,12 +4236,12 @@ p, li { white-space: pre-wrap; } Вы действительно хотите создать %1 сообщений? - + Send Отправить - + Forum Message Сообщение в форуме @@ -3976,7 +4253,7 @@ Do you want to reject this message? Отменить отправку? - + Post as Отправить как @@ -4011,8 +4288,8 @@ Do you want to reject this message? - Security policy: - Политика безопасности: + Visibility: + Видимость @@ -4025,7 +4302,22 @@ Do you want to reject this message? Приватная (только по приглашениям) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + <html><head/><body><p>Если вы отметите это, только подписанные личности смогут общаться в этой комнате. Это ограничение предохраняет от анонимного спама и делает возможным для некоторых участников определить положение ноды спамера</p></body></html> + + + + require PGP-signed identities + требовать PGP-подписи личностей + + + + Security: + Безопасность: + + + Select the Friends with which you want to group chat. Отметьте друзей с которыми хотите начать чат @@ -4035,12 +4327,22 @@ Do you want to reject this message? Пригласить друзей - + + Put a sensible lobby name here + Введите имя Команты + + + + Set a descriptive topic here + Задайте осмысленную тему + + + Contacts: Контакты: - + Identity to use: Личность для использования: @@ -4199,7 +4501,12 @@ Do you want to reject this message? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT отключена @@ -4221,8 +4528,8 @@ Do you want to reject this message? - DHT Error - Ошибка DHT + No peer found in DHT + @@ -4319,7 +4626,7 @@ Do you want to reject this message? DhtWindow - + Net Status Сетевой статус @@ -4349,7 +4656,7 @@ Do you want to reject this message? Адрес узла - + Name Имя @@ -4394,7 +4701,7 @@ Do you want to reject this message? RetroShare-идентификатор - + Bucket Корзина @@ -4420,17 +4727,17 @@ Do you want to reject this message? - + Last Sent Последнее полученное - + Last Recv Последнее принятое - + Relay Mode Режим трансляции @@ -4465,7 +4772,22 @@ Do you want to reject this message? Ширина канала - + + IP + IP + + + + Search IP + Поиск IP + + + + Copy %1 to clipboard + + + + Unknown NetState Неизвестное сетевое состояние @@ -4670,7 +4992,7 @@ Do you want to reject this message? Неизвестно - + RELAY END КОНЕЦ ТРАНСЛЯЦИИ @@ -4704,19 +5026,24 @@ Do you want to reject this message? - + %1 secs ago %1 сек назад - + %1B/s %1Б/с - + + Relays + + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4726,13 +5053,15 @@ Do you want to reject this message? никогда - + + + DHT DHT - + Net Status: Состояние сети: @@ -4802,12 +5131,33 @@ Do you want to reject this message? Транслятор: - + + Filter: + Фильтр: + + + + Search Network + Поиск в сети + + + + + Peers + Участники + + + + Relay + Транслятор + + + DHT Graph Визуализация DHT - + Proxy VIA Прокси через @@ -4943,7 +5293,7 @@ you plug it in. ExprParamElement - + to @@ -5048,7 +5398,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map Карта частей @@ -5223,7 +5573,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories Папки друзей @@ -5299,90 +5649,40 @@ you plug it in. FriendList - - - Status - Статус - - - - - + Last Contact Посл. контакт - - - Avatar - Аватар - - - + Hide Offline Friends Скрыть друзей не в сети - - State - Состояние + + export friendlist + экспорт списка друзей - Sort by State - Сортировать по состоянию + export your friendlist including groups + экспорт списка друзей включая группы - - Hide State - Спрятать состояние - - - - - Sort Descending Order - Сортировать по убыванию - - - - - Sort Ascending Order - Сортировать по возрастанию - - - - Show Avatar Column - Показать аватар - - - - Name - Имя + + import friendlist + импорт списка друзей - Sort by Name - Сортировать по имени - - - - Sort by last contact - Сортировать по последнему контакту - - - - Show Last Contact Column - Показать последний контакт - - - - Set root is Decorated - Установка root Произведена + import your friendlist including groups + импорт списка друзей включая группы + - Set Root Decorated - Установка root Произведена + Show State + Показать состояние @@ -5391,7 +5691,7 @@ you plug it in. Показать группы - + Group Группа @@ -5432,7 +5732,17 @@ you plug it in. добавить в группу - + + Search + Поиск + + + + Sort by state + Сортировать по состоянию + + + Move to group Переместить в группу @@ -5462,40 +5772,110 @@ you plug it in. Свернуть всё - - + Available Доступен - + Do you want to remove this Friend? Вы хотите удалить этого друга? - - Columns - Столбцы + + + Done! + Готово - - - + + Your friendlist is stored at: + + Ваш список друзей сохранён в: + + + + + +(keep in mind that the file is unencrypted!) + +(помните, что файл не зашифрован!) + + + + + Your friendlist was imported from: + + Ваш список друзей импортирован из: + + + + + Done - but errors happened! + Выполнено, но с ошибками! + + + + +at least one peer was not added + +как минимум один пир не добавлен + + + + +at least one peer was not added to a group + +как минимум один пир не добавлен в группу + + + + Select file for importing yoour friendlist from + Выберите файл для импорта вашего списка друзей + + + + Select a file for exporting your friendlist to + Выберите файл для экспорта вашего списка друзей + + + + XML File (*.xml);;All Files (*) + XML-файлы(*.xml);;Все файлы (*) + + + + + + Error + Ошибка + + + + Failed to get a file! + Не удалось получить файл! + + + + File is not writeable! + + Нет прав на запись файла! + + + + + File is not readable! + + Нет прав на чтение файла! + + + + IP IP - - Sort by IP - Сортировать по IP - - - - Show IP Column - Показать столбец IP - - - + Attempt to connect Соединиться @@ -5505,7 +5885,7 @@ you plug it in. Создать новую группу - + Display Показать @@ -5515,12 +5895,7 @@ you plug it in. Вставить ссылку на сертификат - - Sort by - Сортировать по - - - + Node Узел сети @@ -5530,17 +5905,17 @@ you plug it in. Удалить доверенный узел - + Do you want to remove this node? Вы хотите удалить этот узел? - + Friend nodes Узлы друга - + Send message to whole group Отправить сообщение для всей группы @@ -5588,30 +5963,35 @@ you plug it in. Поиск: - - All - Все + + Sort by state + Сортировать по состоянию - None - Никакой - - - Name Имя - + Search Friends Поиск друзей + + + Mark all + Отметить все + + + + Mark none + Снять отметки + FriendsDialog - + Edit status message Изменить ваш статус @@ -5705,12 +6085,17 @@ you plug it in. Массив ключей - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png"> Сеть</h1> <p>Вкладка сеть показывает узлы вашего друга Retroshare: соседние узлы Retroshare, подключённые к вам. </p> <p>Можно группировать узлы вместе, чтобы позволить более детализированный уровень доступа к информации, например, разрешить только некоторым узлам видеть некоторые из ваших файлов.</p> <p>Справа, вы найдете 3 полезные вкладки: <ul><li>Трансляция отправляет сообщения сразу на все подключенные узлы </li> <li>График локальной сети показывает сеть вокруг вас, основываясь на полученной информации</li> <li>Ключи включают узлы ключей, собранных вами, в основном направленные вам узлами вашего друга</li></ul></p> + + + Retroshare broadcast chat: messages are sent to all connected friends. Широковещательный чат RetroShare: сообщения будут рассылаться всем подключённым узлам. - + Network Сеть @@ -5721,12 +6106,7 @@ you plug it in. Визуализация сети - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>Вкладка «Сеть» содержит информацию о состоянии Ваших доверенных узлов: показаны узлы, которые в настоящее время соединены с Вами. </p> <p>Вы имеете возможность объединять узлы в группы для реализации тонкой политики файлообмена. Например, разным группам Вы можете раздавать разные папки.</p> <p>Справа Вы видите 3 полезные вкладки: <ul> <li>широковещательный чат позволяет отправлять сообщения всем подключённым в данный момент узлам</li> <li>Карта сети на основе информации из сервиса обнаружения отображает топологию Вашего окружения</li> <li>массив ключей содержит публичные ключи Вашего ближнего окружения</li> </ul> </p> - - - + Set your status message here. Установить сообщение о своём статусе @@ -5739,7 +6119,7 @@ you plug it in. Создать новый профиль - + Name Имя @@ -5791,7 +6171,7 @@ anonymous, you can use a fake email. Пароль (еще раз) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> Прежде чем продолжить, подвигайте мышью чтобы собрать некоторые случайные данные. Необходимо набрать 20%, желательно до 100% @@ -5806,7 +6186,7 @@ anonymous, you can use a fake email. Пароли не совпадают - + Port Порт @@ -5850,29 +6230,24 @@ anonymous, you can use a fake email. Недопустимый скрытый узел - - Please enter a valid address of the form: 31769173498.onion:7800 - Пожалуйста, введите допустимый адрес наподобие: de77jgyfphhblf45.onion:7800 - - - + Node field is required with a minimum of 3 characters Поле для местоположения должно быть длиной минимум 3 символа - + Failed to generate your new certificate, maybe PGP password is wrong! Не удалось создать ваш новый сертификат. Может быть, введён неправильный пароль PGP! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" Вы можете создать новый профиль в этой форме. В качестве альтернативы можно использовать существующий профиль. Просто снимите флажок «Создать новый профиль» - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. Вы можете создать и запустить узлы Retroshare на разных компьютерах, используя тот же профиль. Так что просто экспортируйте выбранный профиль, импортируйте его на другом компьютере и создайте новый узел с ним. @@ -5894,7 +6269,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile Создать новый профиль @@ -5919,12 +6294,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Создать скрытый узел сети. - + Use profile Использовать профиль - + + hidden address + Скрытый адрес + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. Ваш профиль связан с парой ключей PGP. В настоящее время RetroShare игнорирует DSA ключи. @@ -5940,12 +6320,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p <html><head/> <body><p>Это ваш порт подключения</p> <p>Любое значение от 1024 до 65535</p> <p>допустимо. Вы можете изменить его позже.</p></body></html> - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + <html><head/> <body><p>Это Tor Onion адрес вида: xa76giaf6ifda7ri63i263.onion<br/> или адрес I2P в форме: [52символа].b32.i2p</p> <p>Для того, чтобы получить его, вам необходимо настроить Tor для создания новой скрытой службы. Если вы ещё не настроили его, вы можете сделать это позднее в настройках Retroshare -> Сервер -> Панель настройки Tor.</p></body></html> + + + PGP key length Длина ключа PGP - + Create new profile @@ -5962,7 +6347,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p Нажмите, чтобы создать узел и/или профиль - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + [Требуется] Адрес Tor/I2P — например: xa76giaf6ifda7ri63i263.onion (полученный вами от Tor) + + + [Required] This password protects your private PGP key. [Требуется] Данный пароль защищает ваш личный ключ PGP. @@ -6079,7 +6469,12 @@ and use the import button to load it Ваш профиль был импортирован успешно: - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + Пожалуйста, введите допустимый адрес наподобие: 31769173498.onion:7800 или [52 символа].b32.i2p + + + PGP key pair generation failure @@ -6087,12 +6482,12 @@ and use the import button to load it - + Profile generation failure Ошибка генерации профиля - + Missing PGP certificate Отсутствует сертификат PGP @@ -6110,21 +6505,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. В этой форме вы можете создать новый профиль. - - - Tor address - Адрес Tor - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - <html><head/> <body><p>Это Tor Onion адрес вида: xa76giaf6ifda7ri63i263.onion</p> <p>Для того, чтобы получить его, вам необходимо настроить Tor для создания новой скрытой службы. Если вы ещё не настроили его, вы можете пойти и сделать это позднее в настройках Retroshare -&gt; Сервер -&gt; Панель настройки Tor.</p></body></html> - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - [Требуется] Примеры: xa76giaf6ifda7ri63i263.onion (полученные вами от Tor) - GeneralPage @@ -6283,29 +6663,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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"> -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:12pt;">Когда ваши друзья отправляют вам свои приглашения, Нажмите, чтобы открыть окно Добавить друзей.</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: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-size:12pt;">Вырежте и Вставьте ID Сертификата вашего друга в окно и добавьте его в список друзей.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + - - Connect To Friends - Соединиться с друзьями - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6316,26 +6685,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-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-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-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"> -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:12pt;">Будьте в сети одновременно с вашим доверенным узлом и 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: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-size:12pt;">Вашему клиенту необходимо найти сеть RetroShare для того, чтобы иметь возможность устанавливать соединения с другими участниками.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">При первом запуске RetroShare на это уходит от 5 до 30 минут времени.</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: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-size:12pt;">Когда клиент способен устанавливать соединения, индикатор DHT в строке состояния становится зелёного цвета.</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: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-size:12pt;">Через пару минут индикатор NAT, также находящийся в строке состояния, переходит в жёлтое или зелёное состояние.</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:12pt;">Если же индикатор NAT остаётся красным, это означает, что ваш сетевой маршрутизатор непрозрачен и 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: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-size:12pt;">Для получения дальнейшей информации посмотрите Справку RetroShare или обратитесь к более опытным пользователям.</span></p></body></html> + - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6343,71 +6710,37 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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"> -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:12pt;">Вы можете улучшить вашу производительность RetroShare открыв внешний порт. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Это ускорит соединение и позволит большему количеству людей соединиться с вами</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: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-size:12pt;">Самый простой способ сделать это, разрешить UPnP на Wireless Box или маршрутизаторе.</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:12pt;">Поскольку маршрутизаторы различны, вы должны выяснить, модель маршрутизатора и найти инструкции в Google.</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: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-size:12pt;">Если ничего из этого не получается, не волнуйтесь об этом 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: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-size:8pt;"></p></body></html> - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-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-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-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"> -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:12pt;">Возникли проблемы начала работы с 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: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-size:12pt;">1) посмотрите FAQ на Wiki. Он немного старый, но мы пытаемся привести его в актуальное состояние.</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: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-size:12pt;">2) проверьте интернет-форумы. Задавайте вопросы и обсуждайте особенности.</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: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-size:12pt;">3) попробуйте Внутренние Форумы RetroShare</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;"> - Они появляются в сети, как только вы на связи с друзьями.</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: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-size:12pt;">4) Если вы все еще в затруднении. Пишите нам.</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: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-size:12pt;">Наслаждайтесь Retrosharing</span></p></body></html> + - + + Connect To Friends + Соединиться с друзьями + + + + Advanced: Open Firewall Port + Продвинутая опция: открыть порт файрвола. + + + + Further Help and Support + Дополнительная помощь и поддержка + + + Open RS Website Открыть официальный сайт RetroShare @@ -6500,82 +6833,104 @@ p, li { white-space: pre-wrap; } Статистика роутера - + + GroupBox + Группы + + + + ID + Личность + + + + Identity Name + + + + + Destinaton + Назначение + + + + Data status + Состояние данных + + + + Tunnel status + Состояние туннелей + + + + Data size + Размер данных + + + + Data hash + Хэш данных + + + + Received + Полученные + + + + Send + Отправить + + + + Branching factor + + + + + Details + + + + Unknown Peer Неизвестный пир + + + Pending packets + Отложенные пакеты + + + + Unknown + Неизвестно + GlobalRouterStatisticsWidget - - Pending packets - Отложенные пакеты - - - + Managed keys Управляемые ключи - + Routing matrix ( Матрица маршрутизации ( - - Id - Id + + [Unknown identity] + - - Destination - Назначение - - - - Data status - Состояние данных - - - - Tunnel status - Состояние туннелей - - - - Data size - Размер данных - - - - Data hash - Хэш данных - - - - Received - Полученные - - - - Send - Отправить - - - + : Service ID = : ID Службы = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Щёлкните левой кнопкой мыши для перемещения узла; увеличивайте или уменьшайте масштаб карты колесом мыши или кнопками «+» / «–». - - GroupChatToaster @@ -6749,13 +7104,13 @@ p, li { white-space: pre-wrap; } You can allow your friends to publish in your channel and to modify the description. Or you can send the admin permissions to another Retroshare instance. Select the friends which you want to be allowed to publish in this channel. Note: it is not possible to revoke channel admin permissions. - + Вы можете разрешить вашим друзьям публикации в вашем канале и редактирование описания. Или вы можете отправить полномочия администратора в другой экземпляр Retroshare. Выберите друзей, которым вы хотите разрешить публикации в этом канале. Примечание: невозможно аннулировать полномочия администратора канала. GroupTreeWidget - + Title Название @@ -6775,7 +7130,7 @@ p, li { white-space: pre-wrap; } Поиск по описанию - + Sort by Name Сортировать по имени @@ -6789,13 +7144,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post Сортировать по последнему сообщению + + + Sort by Posts + + Display Показать - + You have admin rights У вас есть права администратора @@ -6808,7 +7168,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and и @@ -6906,7 +7266,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Каналы @@ -6917,17 +7277,22 @@ p, li { white-space: pre-wrap; } Создать канал - + Enable Auto-Download Включить автоматическое скачивание - + My Channels Мои каналы - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Каналы</h1> <p>Каналы дают возможность публикации контента (например, кино или музыки), который подлежит раздаче пользователям сети.</p> <p>В списке каналов содержатся каналы, на которые подписано Ваше доверенное окружение, равно как и Ваш узел автоматически отсылает окружению информацию о подписанных Вами каналах. Такой механизм позволяет распространять по сети информацию о хороших каналах и блокировать неудачные.</p> <p>Оставлять сообщения в канале может только его создатель. Остальные участники могут лишь читать его содержимое и только в том случае, если канал не является приватным. Тем не менее Вы можете ⇥ права на чтение или модификацию канала пользователям из доверенного окружения.</p>⇥ <p>Каналы могут быть анонимными или псевдонимными, когда к ним прикреплён идентификатор пользователя. ⇥ Включите режим «Разрешить комментарии», если Вы хотите дать пользователям возможность комментировать сообщения.</p> <p>Сообщения канала удаляются через %1 месяца.</p> + + + Subscribed Channels Подписка на каналы @@ -6942,14 +7307,30 @@ p, li { white-space: pre-wrap; } Другие каналы - + + Select channel download directory + Выберите каталог канала для загрузки + + + Disable Auto-Download Отменить автоматическое скачивание - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> - + + Set download directory + Выберите каталог загрузки + + + + + [Default directory] + [Каталог по умолчанию] + + + + Specify... + Выбрать... @@ -7289,7 +7670,7 @@ p, li { white-space: pre-wrap; } Не выбраны каналы - + Disable Auto-Download Отменить автоматическое скачивание @@ -7309,7 +7690,7 @@ p, li { white-space: pre-wrap; } Показать файлы - + Feeds Каналы @@ -7319,7 +7700,7 @@ p, li { white-space: pre-wrap; } Файлы - + Subscribers Подписчики @@ -7482,7 +7863,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum Создать Новый Форум @@ -7614,12 +7995,12 @@ before you can comment Форма - + Start new Thread for Selected Forum Начать новую тему в выбранном форуме - + Search forums Поиск по форумам @@ -7640,7 +8021,7 @@ before you can comment - + Title Название @@ -7653,13 +8034,18 @@ before you can comment - + Author Автор - - + + Save image + + + + + Loading Загрузка @@ -7689,7 +8075,7 @@ before you can comment Следующее непрочитанное - + Search Title Поиск названия @@ -7714,17 +8100,27 @@ before you can comment Поиск контента - + No name Без названия - + Reply Ответ + Ban this author + Заблокировать автора + + + + This will block/hide messages from this person, and notify neighbor nodes. + Это заблокирует/спрячет сообщения от данного человека, и уведомит соседние узлы. + + + Start New Thread Новая тема @@ -7762,7 +8158,7 @@ before you can comment Скопировать ссылку RetroShare - + Hide Скрыть @@ -7772,7 +8168,38 @@ before you can comment Раскрыть - + + This message was obtained from %1 + + + + + [Banned] + [Заблокировано] + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + [ ... Отредактированное сообщение ... ] + + + Anonymous Аноним @@ -7792,29 +8219,55 @@ before you can comment [ ... Пропущенное сообщение ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + <p><font color="#ff0000"><b>Автор этого сообщения ( личность %1) заблокирован.</b> + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + <UL><li><b><font color="#ff0000">Сообщения данного автора не распространяются. </font></b></li> + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + <li><b><font color="#ff0000">Сообщения данного автора замещаются этим текстом. </font></b></li></ul> + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + <p><b><font color="#ff0000">Вы можете принудительно включить видимость и отправку сообщений, выбрав другое отношение в этой личности на вкладке "Люди".</font></b></p> + + + + + + + RetroShare RetroShare - + No Forum Selected! Не выбрано ни одного форума! - + + + You cant reply to a non-existant Message Вы не можете ответить на не существующее Сообщение + You cant reply to an Anonymous Author Вы не можете ответить Анонимному Автору - + Original Message Оригинал сообщения @@ -7839,7 +8292,7 @@ before you can comment На %1 %2 написал - + Forum name Название форума @@ -7854,7 +8307,7 @@ before you can comment Сообщений (соседние узлы) - + Description Описание @@ -7864,12 +8317,12 @@ before you can comment По - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + <p>Подписка на форуме будет собирать имеющиеся сообщения от ваших подписанных друзей и делать форум видимым для всех других друзей.</p> <p>Потом, вы сможете отписаться из контекстного меню списка форума слева.</p> - + Reply with private message Ответить личным сообщением @@ -7885,7 +8338,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Форумы</h1> ⇥⇥⇥<p>Форумы в RetroShare выглядят схоже и преследуют те же цели, что и интернет-форумы. Ключевым отличием является их децентрализованность.</p> ⇥⇥⇥<p>В списке доступных форумов значатся форумы, на которые подписано Ваше доверенное окружение. В свою очередь, Вы отдаёте окружению информацию о том,⇥⇥⇥на какие форумы подписаны Вы. Такой механизм распространения продвигает по сети хорошие форумы и блокирует неудачные.</p> <р> Сообщения Форума удаляются через %1 месяца. </p> + + + Forums Форумы @@ -7915,11 +8373,6 @@ before you can comment Other Forums Другие форумы - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7942,13 +8395,13 @@ before you can comment GxsGroupDialog - - + + Name Имя - + Add Icon Добавить иконку @@ -7963,7 +8416,7 @@ before you can comment Общедоступный Публичный Ключ - + check peers you would like to share private publish key with проверить пиры с которыми вы хотите поделиться приватным ключом @@ -7973,36 +8426,36 @@ before you can comment Поделиться ключом с - - + + Description Описание - + Message Distribution Распределение Сообщений - + Public Публичный - - + + Restricted to Group Только для Группы - - + + Only For Your Friends Только для Ваших Друзей - + Publish Signatures Публичные подписи @@ -8032,7 +8485,7 @@ before you can comment Личные подписи - + PGP Required Требуется PGP @@ -8048,12 +8501,12 @@ before you can comment - + Comments Комментарии - + Allow Comments Комментарии Разрешены @@ -8063,33 +8516,73 @@ before you can comment Комментариев нет - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Контакты: - + Please add a Name Добавьте имя - + Load Group Logo Загрузить Логотип Группы - + Submit Group Changes Отправить Изменения Группы - + Failed to Prepare Group MetaData - please Review Не удалось Подготовить Метаданные Группы - пожалуйста Проверьте - + Will be used to send feedback Будет использовано для обратной связи @@ -8099,12 +8592,12 @@ before you can comment Владелец: - + Set a descriptive description here Укажите здесь осмысленное описание - + Info Сведения @@ -8177,7 +8670,7 @@ before you can comment Предварительный просмотр - + Unsubscribe Отменить подписку @@ -8187,12 +8680,12 @@ before you can comment Подписаться - + Open in new tab Открыть в новой вкладке - + Show Details Показать Подробности @@ -8217,12 +8710,12 @@ before you can comment Отметить все как непрочитанные - + AUTHD Требуется подпись - + Share admin permissions Разрешения администратора @@ -8230,7 +8723,7 @@ before you can comment GxsIdChooser - + No Signature Без подписи @@ -8243,7 +8736,7 @@ before you can comment GxsIdDetails - + Loading Загрузка @@ -8258,8 +8751,15 @@ before you can comment Без подписи - + + + + [Banned] + [Заблокировано] + + + Authentication Аутентификация @@ -8274,7 +8774,7 @@ before you can comment анонимный - + Identity&nbsp;name Имя&nbsp;личности @@ -8289,7 +8789,7 @@ before you can comment Подписано - + [Unknown] [Неизвестный] @@ -8307,6 +8807,49 @@ before you can comment Без названия + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8502,44 +9045,7 @@ before you can comment О программе - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare – это кроссплатформенное приложение на основе открытого ПО, </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-weight:600;">персональная защищённая децентрализованная коммуникационная система.⇥</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-weight:600;">Она позволяет осуществлять безопасный файлообмен совместно с доверенными участниками, </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-weight:600;">использует сеть доверия для установления подлинности участников и OpenSSL для шифрования всей передаваемой информации. </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-weight:600;">RetroShare предоставляет сервисы файлообмена, чатов, электронной почты и каналов</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-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; font-weight:600;">Следующие полезные ссылки дают больше сведений:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Вебсайт Retroshare</span></a></li> -<li style=" font-size:12pt; 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">Вики-страница Retroshare</a></li> -<li style=" font-size:12pt; 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">Форум RetroShare</a></li> -<li style=" font-size:12pt; 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">Страница проекта Retroshare</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Блог команды RetroShare</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Твиттер разработчиков RetroShare</a></li></ul></body></html> - - - + Authors Авторы @@ -8603,7 +9109,44 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Polish: </span>Maciej Mrug</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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</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 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-weight:600;">RetroShare – это кроссплатформенное приложение на основе открытого ПО, </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-weight:600;">персональная защищённая децентрализованная коммуникационная система.⇥</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-weight:600;">Она позволяет осуществлять безопасный файлообмен совместно с доверенными участниками, </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-weight:600;">использует сеть доверия для установления подлинности участников и OpenSSL для шифрования всей передаваемой информации. </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-weight:600;">RetroShare предоставляет сервисы файлообмена, чатов, электронной почты и каналов</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-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; font-weight:600;">Следующие полезные ссылки дают больше сведений:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Вебсайт Retroshare</span></a></li> +<li style=" font-size:12pt; 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">Вики-страница Retroshare</a></li> +<li style=" font-size:12pt; 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">Форум RetroShare</a></li> +<li style=" font-size:12pt; 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">Страница проекта Retroshare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Блог команды RetroShare</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">Твиттер разработчиков RetroShare</a></li></ul></body></html> + + + Libraries Библиотеки @@ -8645,7 +9188,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details Сведения о личности @@ -8680,78 +9223,108 @@ p, li { white-space: pre-wrap; } ID личности - + + Last used: + Последний использованный: + + + Your Avatar Click here to change your avatar Ваш аватар - + Reputation Репутация - - Overall - Общая + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + <html><head/><body><p>Среднее мнение об этой личности с соседних узлов. Отрицательное — плохо</p><p>Положительное — хорошо. Ноль нейтрален. <p></body></html> - - Implicit - Неявные - - - - Opinion - Мнение - - - - Peers - Пиры - - - - Edit Reputation - Редактировать репутацию - - - - Tweak Opinion - Мнение о настройке - - - - Accept (+100) - Подтвердить (+100) + + Your opinion: + Ваше мнение: - Positive (+10) - Положительный (+10) + Neighbor nodes: + Соседние узлы: - Negative (-10) - Отрицательный (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></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:'Sans'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ваше собственное мнение о личности управляет видимостью этой личности для вас лично,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">и передаётся вашим друзьям. Конечное значение вычисляется на основе формулы, считающей ваше мнение и мнение ваших друзей:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = ваше_мнение * a + мнение_друзей * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Фактор 'a' зависит от типа личности. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- анонимные личности: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- личности, подписанные неизвестными PGP-ключами: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Итоговое значение используется в комнатах чатов, форумах и каналах для принятия решения по данной личности:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Сообщения не сохраняются и не распространяются </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Сообщения скрыты, но всё ещё распространяются</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Итоговый рейтинг вычисляется с таким расчётом, чтоб сделать невозможным для одного человека изменение статуса другого на соседних узлах.</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;"><br /></p></body></html> - - Ban (-100) - Бан (-100) + + Negative + Отрицательно - Custom - Пользовательские + Neutral + Нейтрально - - Modify - Изменить + + Positive + Положительно - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + <html><head/><body><p>Средняя репутация, основанная на вашем мнении и мнении ваших друзей.</p><p>Отрицательное значение — плохая репутация, положительное — хорошая, ноль — нейтральная. Если значение слишком низкое,</p><p>личность будет помечена как плохая и отфильтрована в форумах, чатах</p><p>каналах, etc.</p></body></html> + + + + Overall: + Общая + + + Unknown real name Неизвестное имя @@ -8790,37 +9363,58 @@ p, li { white-space: pre-wrap; } Anonymous identity Анонимная личность + + + +50 Known PGP + +50 известных PGP + + + + +10 UnKnown PGP + +10 неизвестных PGP + + + + +5 Anon Id + +5 Анонимных Id + + + + OK + OK + + + + Banned + Заблокировано + IdDialog - + New ID Новый идентификатор - + + All Все - + + Reputation Репутация - - - Todo - На выполнение - - Search Поиск - + Unknown real name Неизвестное имя @@ -8830,72 +9424,29 @@ p, li { white-space: pre-wrap; } Анонимный идентификатор - + Create new Identity Создать новую личность - - Overall - Общая + + Persons + - - Implicit - Неявные + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> + - - Opinion - Мнение - - - - Peers - Пиры - - - - Edit reputation - Редактировать репутацию - - - - Tweak Opinion - Мнение о настройке - - - - Accept (+100) - Подтвердить (+100) - - - - Positive (+10) - Положительный (+10) - - - - Negative (-10) - Отрицательный (-10) - - - - Ban (-100) - Бан (-100) - - - - Custom - Пользовательские - - - - Modify - Изменить - - - + Edit identity Редактировать личность @@ -8916,42 +9467,42 @@ p, li { white-space: pre-wrap; } Запустить удаленный чат с этим пиром - - Identity name - Псевдоним - - - + Owner node ID : ID владельца узла - + Identity name : Псевдоним - + + () + + + + Identity ID ID Личности - + Send message Отправить сообщение - + Identity info Информация о личности - + Identity ID : ID личности - + Owner node name : Имя владельца узла @@ -8961,7 +9512,57 @@ p, li { white-space: pre-wrap; } Тип: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + <html><head/><body><p>Среднее мнение об этой личности с соседних нод. Отрицательное — плохо</p><p>Положительное — хорошо. Ноль нейтрален. <p></body></html> + + + + Your opinion: + Ваше мнение: + + + + Neighbor nodes: + Соседние узлы: + + + + Negative + Отрицательно + + + + Neutral + Нейтрально + + + + Positive + Положительно + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + <html><head/><body><p>Средняя репутация, основанная на вашем мнении и мнении ваших друзей.</p><p>Отрицательное значение — плохая репутация, положительное — хорошая, ноль — нейтральная. Если значение слишком низкое,</p><p>личность будет помечена как плохая и отфильтрована в форумах, чатах</p><p>каналах, etc.</p></body></html> + + + + Overall: + Общая + + + + Contacts + + + + Owned by you Владеете Вы @@ -8971,12 +9572,17 @@ p, li { white-space: pre-wrap; } Аноним - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Личности</h1> ⇥⇥⇥<p>В этой вкладке Вы можете создавать и редактировать псевдонимные и анонимные личности. ⇥⇥⇥</p> ⇥⇥⇥<p>Личности используются для безопасной идентификации Ваших данных и Вашей деятельности в сети: подписывать сообщения в каналах и форумах сети⇥⇥⇥⇥и получать отклики через встроенный почтовый сервис RetroShare, оставлять комментарии ⇥⇥⇥⇥в каналах и т.п.</p> ⇥⇥⇥<p> ⇥⇥⇥Личности могут подписываться Вашим сертификатом. ⇥⇥⇥Подписанным личностям легче доверять, но при этом облегчается возможность получения IP-адреса Вашего узла. ⇥⇥⇥</p> ⇥⇥⇥<p> ⇥⇥⇥Анонимные личности позволяют Вам анонимно взаимодействовать с другими пользователями. При этом они ⇥⇥⇥не могут быть подменены и никто не может указать, кто в действительности скрывается за личностью. ⇥⇥⇥</p> ⇥⇥⇥ + + ID + - + + Search ID + + + + This identity is owned by you Эта личность закреплена за Вами @@ -8992,7 +9598,7 @@ p, li { white-space: pre-wrap; } Неизвестный ID ключа - + Identity owned by you, linked to your Retroshare node Личность закреплена за Вами и привязана к Вашему узлу RetroShare @@ -9007,7 +9613,42 @@ p, li { white-space: pre-wrap; } Анонимная личность - + + OK + OK + + + + Banned + Заблокировано + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work Удалённый чат не может работать @@ -9017,15 +9658,35 @@ p, li { white-space: pre-wrap; } Код ошибки - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People Участники - + Your Avatar Click here to change your avatar Ваш аватар @@ -9046,7 +9707,12 @@ p, li { white-space: pre-wrap; } Привязан к удалённому узлу - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Личности</h1> ⇥⇥⇥<p>В этой вкладке Вы можете создавать и редактировать псевдонимные и анонимные личности. ⇥⇥⇥</p> ⇥⇥⇥<p>Личности используются для безопасной идентификации Ваших данных и Вашей деятельности в сети: подписывать сообщения в каналах и форумах сети⇥⇥⇥⇥и получать отклики через встроенный почтовый сервис RetroShare, оставлять комментарии ⇥⇥⇥⇥в каналах и т.п.</p> ⇥⇥⇥<p> ⇥⇥⇥Личности могут подписываться Вашим сертификатом. ⇥⇥⇥Подписанным личностям легче доверять, но при этом облегчается возможность получения IP-адреса Вашего узла. ⇥⇥⇥</p> ⇥⇥⇥<p> ⇥⇥⇥Анонимные личности позволяют Вам анонимно взаимодействовать с другими пользователями. При этом они ⇥⇥⇥не могут быть подменены и никто не может указать, кто в действительности скрывается за личностью. ⇥⇥⇥</p> ⇥⇥⇥ + + + Linked to a friend Retroshare node Привязан к вашему доверенному узлу @@ -9061,7 +9727,7 @@ p, li { white-space: pre-wrap; } Привязан к неизвестному узлу - + Chat with this person Начать чат @@ -9071,17 +9737,7 @@ p, li { white-space: pre-wrap; } Инициировать чат с этим человеком от имени... - - Send message to this person - Послать сообщение этому человеку - - - - Columns - Столбцы - - - + Distant chat refused with this person. В удалённом чате с этим человеком отказано @@ -9091,7 +9747,7 @@ p, li { white-space: pre-wrap; } Последний использованный: - + +50 Known PGP +50 известных PGP @@ -9106,29 +9762,17 @@ p, li { white-space: pre-wrap; } +5 Анонимных Id - + Do you really want to delete this identity? Вы действительно хотите удалить эту личность? - + Owned by Принадлежит ... - - - Show - Показать - - - - - column - столбец - - - + Node name: Имя узла: @@ -9138,7 +9782,7 @@ p, li { white-space: pre-wrap; } ID узла: - + Really delete? Действительно удалить? @@ -9181,8 +9825,8 @@ p, li { white-space: pre-wrap; } Новая личность - - + + To be generated Будет создан @@ -9190,7 +9834,7 @@ p, li { white-space: pre-wrap; } - + @@ -9200,13 +9844,13 @@ p, li { white-space: pre-wrap; } Недоступен - + Edit identity Редактировать личность - + Error getting key! Ошибка при получении ключа! @@ -9226,7 +9870,7 @@ p, li { white-space: pre-wrap; } Неизвестное имя - + Create New Identity Создать новую личность @@ -9278,10 +9922,10 @@ p, li { white-space: pre-wrap; } You can have one or more identities. They are used when you write in chat lobbies, forums and channel comments. They act as the destination for distant chat and the Retroshare distant mail system. - + Вы можете иметь один или несколько идентификаторов. Они используются, когда вы пишете в чате лобби, на форумах и канале комментариев. Они выступают в качестве получателя для удалённого чата и удалённой почтовой системы Retroshare. - + The nickname is too short. Please input at least %1 characters. Псевдоним является слишком коротким. Пожалуйста, введите по крайней мере %1 символов. @@ -9349,7 +9993,7 @@ p, li { white-space: pre-wrap; } - + Copy Копировать @@ -9379,16 +10023,35 @@ p, li { white-space: pre-wrap; } Отправить + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Открыть файл - + Open Folder Открыть папку @@ -9398,7 +10061,7 @@ p, li { white-space: pre-wrap; } Изменить разрешения для общего ресурса - + Checking... Проверка ... @@ -9447,7 +10110,7 @@ p, li { white-space: pre-wrap; } - + Options Параметры @@ -9481,12 +10144,12 @@ p, li { white-space: pre-wrap; } Помощник быстрого старта - + RetroShare %1 a secure decentralized communication platform RetroShare %1 безопасная децентрализованная коммуникационная платформа - + Unfinished Еще не готово @@ -9524,7 +10187,12 @@ RetroShare безопасно приостановит доступ диска Уведомить - + + Open Messenger + Открыть Мессенджер + + + Open Messages Открыть почту @@ -9574,7 +10242,7 @@ RetroShare безопасно приостановит доступ диска %1 новых сообщений - + Down: %1 (kB/s) Приём: %1 (кБ/с) @@ -9644,7 +10312,7 @@ RetroShare безопасно приостановит доступ диска Управление правами доступа - + Add Добавить @@ -9669,7 +10337,7 @@ RetroShare безопасно приостановит доступ диска не хватает места в данной папке (текущий лимит - + Really quit ? Хотите выйти? @@ -9678,38 +10346,17 @@ RetroShare безопасно приостановит доступ диска MessageComposer - + Compose Составить - - + Contacts Контакты - - >> To - >> Кому - - - - >> Cc - >> Копия - - - - >> Bcc - >> Невидимая копия - - - - >> Recommend - >> Рекомендовать - - - + Paragraph Абзац @@ -9790,7 +10437,7 @@ RetroShare безопасно приостановит доступ диска Подчеркнутый - + Subject: Тема: @@ -9801,12 +10448,22 @@ RetroShare безопасно приостановит доступ диска - + Tags Тэги - + + Address list: + + + + + Recommend this friend + + + + Set Text color Задать цвет текста @@ -9816,7 +10473,7 @@ RetroShare безопасно приостановит доступ диска Задать цвет фона текста - + Recommended Files Рекомендованные файлы @@ -9886,7 +10543,7 @@ RetroShare безопасно приостановит доступ диска Добавить цитату - + Send To: Отправить: @@ -9911,47 +10568,22 @@ RetroShare безопасно приостановит доступ диска По ширине - - Bullet List (Disc) - Маркированный список (диск) + + All addresses (mixed) + - Bullet List (Circle) - Маркированный список (круг) + All people + - - Bullet List (Square) - Маркированный список (квадрат) + + My contacts + - - Ordered List (Decimal) - Отсортированный список (в десятичной системе) - - - - Ordered List (Alpha lower) - Отсортированный список (альфа ниже) - - - - Ordered List (Alpha upper) - Отсортированный список (альфа выше) - - - - Ordered List (Roman lower - Отсортированный список (Римский нижний - - - - Ordered List (Roman upper) - Отсортированный список (Римский верхний) - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Здравствуйте, <br>Я рекомендую моего хорошего друга, вы можете доверять ему так, как вы доверяете мне. <br> @@ -9977,12 +10609,12 @@ RetroShare безопасно приостановит доступ диска - + Save Message Сохранить сообщение - + Message has not been Sent. Do you want to save message to draft box? Сообщение не отправлено. @@ -9994,7 +10626,7 @@ Do you want to save message to draft box? Вставить ссылку RetroShare - + Add to "To" Добавить к "Кому" @@ -10014,12 +10646,7 @@ Do you want to save message to draft box? Добавить как рекомендацию - - Friend Details - Подробности о друге - - - + Original Message Оригинал сообщения @@ -10029,19 +10656,21 @@ Do you want to save message to draft box? От - + + To Кому - + + Cc Копия - + Sent Отправлено @@ -10083,12 +10712,13 @@ Do you want to save message to draft box? Пожалуйста, укажите хотя бы одного получателя - + + Bcc Невидимая копия - + Unknown Неизвестно @@ -10198,7 +10828,12 @@ Do you want to save message to draft box? Форм&атирование - + + Details + Подробности + + + Open File... Открыть файл... @@ -10246,12 +10881,7 @@ Do you want to save message ? Добавить файл - - Show: - Показать: - - - + Close Закрыть @@ -10261,32 +10891,57 @@ Do you want to save message ? Из: - - All - Все - - - + Friend Nodes Узлы доверенного участника - - Person Details - Сведения о личности + + Bullet list (disc) + Маркированный список (диск) - - Distant peer identities - Идентификаторы удаленных участников + + Bullet list (circle) + Маркированный список (круг) - + + Bullet list (square) + Маркированный список (квадрат) + + + + Ordered list (decimal) + Отсортированный список (в десятичной системе) + + + + Ordered list (alpha lower) + Отсортированный список (альфа ниже) + + + + Ordered list (alpha upper) + Отсортированный список (альфа выше) + + + + Ordered list (roman lower) + Отсортированный список (Римский ниже) + + + + Ordered list (roman upper) + Отсортированный список (Римский выше) + + + Thanks, <br> Спасибо, <br> - + Distant identity: Удалённая личность: @@ -10309,7 +10964,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Чтение @@ -10324,7 +10999,7 @@ Do you want to save message ? Открывать сообщения в - + Tags Тэги @@ -10364,7 +11039,7 @@ Do you want to save message ? Новое окно - + Edit Tag Править Tag @@ -10374,22 +11049,12 @@ Do you want to save message ? Почтовая служба - + Distant messages: Дальние сообщения: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">Ссылка ниже даёт возможность участникам сети отсылать вам шифрованные сообщения, используя туннелирование. Чтобы осуществить это, им необходим ваш публичный PGP-ключ, который они получат через систему обнаружения RetroShare. </p></body></html> - - - - Accept encrypted distant messages from everyone - Принимать дальние шифрованные сообщения от любого участника сети. - - - + Load embedded images Загрузить внедренные изображения @@ -10670,7 +11335,7 @@ Do you want to save message ? MessagesDialog - + New Message Новое сообщение @@ -10737,24 +11402,24 @@ Do you want to save message ? - + Tags Тэги - - - + + + Inbox Входящие - - + + Outbox Исходящие @@ -10766,14 +11431,14 @@ Do you want to save message ? - + Sent Отправлено - + Trash Корзина @@ -10842,7 +11507,7 @@ Do you want to save message ? - + Reply to All Ответить всем @@ -10860,12 +11525,12 @@ Do you want to save message ? - + From От - + Date Дата @@ -10893,12 +11558,12 @@ Do you want to save message ? - + Click to sort by from Сортировка по полю "От" - + Click to sort by date Сортировка по дате @@ -10953,7 +11618,12 @@ Do you want to save message ? Поиск вложений - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Сообщения</h1> <p>RetroShare имеют собственный почтовый сервис. Вы можете отправлять/получать письма в пределах доверенного окружения.</p> <p>Благодаря глобальной системе маршрутизации данных, возможна рассылка писем другим участникам сети. Эти сообщения ⇥всегда подвергаются шифрованию и передаются адресату через промежуточные узлы сети. </p>⇥<p>Для надёжной идентификации отправителя рекомендуется криптографически подписывать сообщения, используя ⇥the <img width="16" src=":/images/stock_signature_ok.png"/> кнопку ⇥в редакторе сообщений. Сообщения удалённым пользователям остаются в папке «Исходящие» до тех пор, пока не будет получено подтверждение в получении.</p> <p>Почтовый сервис RetroShare может быть использован для передачи ссылок на файлы или рекомендаций по включению в круг доверенных, что укрепит Вашу сеть, а также для откликов на объявления в каналах.</p> + + + Starred Отмечено звездой @@ -11018,14 +11688,14 @@ Do you want to save message ? Очистить корзину - - + + Drafts Черновики - + 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 gray star beside any message. Нет оценённых сообщений. Оценка сообщений присваивает им специальный статус для последующего удобного поиска и ранжирования. Чтобы оценить сообщение щёлкните на звезду серого цвета рядом с ним. @@ -11045,7 +11715,12 @@ Do you want to save message ? Сортировка по полю "Кому" - + + This message goes to a distant person. + + + + @@ -11054,18 +11729,18 @@ Do you want to save message ? Всего: - + Messages Почта - + Click to sort by signature Щелкните, чтобы отсортировать по подписи - + This message was signed and the signature checks Это сообщение было подписано и подпись проверена @@ -11075,15 +11750,10 @@ Do you want to save message ? Это сообщение было подписано, но подпись не была проверена - + This message comes from a distant person. Это сообщение пришло от удалённых лиц. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -11106,7 +11776,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + Вставить как простой текст + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link Вставить ссылку RetroShare @@ -11140,7 +11825,7 @@ Do you want to save message ? - + Expand Развернуть @@ -11183,7 +11868,7 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown Состояние сети не известно @@ -11227,26 +11912,6 @@ Do you want to save message ? Forwarded Port Перенаправленный порт - - - OK | RetroShare Server - OK | Сервер RetroShare - - - - Internet connection - Подключение к Интернету - - - - No internet connection - Отсутствует соединение с интернетом - - - - No local network - Нет локальной сети - NetworkDialog @@ -11360,7 +12025,7 @@ Do you want to save message ? ID пира - + Deny friend Отказать в дружбе @@ -11425,7 +12090,7 @@ For security, your keyring was previously backed-up to file Невозможно создать архивный файл. Проверьте права доступа к папке pgp, свободное место на диске и проч. - + Personal signature Личная подпись @@ -11492,7 +12157,7 @@ Right-click and select 'make friend' to be able to connect. вы сами - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Несоответствие данных в хранилище ключей. Наиболее вероятно, это ошибка. Пожалуйста, свяжитесь с разработчиками. @@ -11507,7 +12172,7 @@ Right-click and select 'make friend' to be able to connect. Только доверенные ключи - + Trust level Уровень доверия @@ -11527,12 +12192,12 @@ Right-click and select 'make friend' to be able to connect. ID сертификата - + Make friend... Сделать другом... - + Did peer authenticate you Подтвердил ли пир вашу подлинность @@ -11562,7 +12227,7 @@ Right-click and select 'make friend' to be able to connect. Поиск Идентификатора пира - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11633,7 +12298,7 @@ Reported error: NewsFeed - + News Feed Лента новостей @@ -11652,18 +12317,13 @@ Reported error: This is a test. Это проверка. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Новостная лента</h1> <p>Лента новостей отображает последние события вашей сети в порядке получения. Можно настроить, какие виды событий отображать в ленте, нажав <b>Параметры</b>. </p> <p>События могут быть следующими: <ul> <li>попытка соединения (полезно для заведения новых доверенных участников и отслеживания кто пытается с вами связаться)</li> <li>появление сообщений в форумах и каналах</li> <li>новые форумы и каналы</li> <li>личные сообщения от ваших друзей</li> </ul> </p> - News feed Новостная лента - + Newest on top Новые наверху @@ -11672,6 +12332,11 @@ Reported error: Oldest on top Старые наверху + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Новостная лента</h1> <p>Лента новостей отображает последние события вашей сети в порядке получения. Можно настроить, какие виды событий отображать в ленте, нажав <b>Параметры</b>. </p> <p>События могут быть следующими: <ul> <li>попытка соединения (полезно для заведения новых доверенных участников и отслеживания кто пытается с вами связаться)</li> <li>появление сообщений в форумах и каналах</li> <li>новые форумы и каналы</li> <li>личные сообщения от ваших друзей</li> </ul> </p> + NotifyPage @@ -11815,7 +12480,12 @@ Reported error: мерцать - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> ⇥⇥ <p>Retroshare будет уведомлять вас о том, что происходит в сети. ⇥⇥ В зависимости от ваших требований вы можете активировать или деактивировать ⇥⇥ некоторые уведомления. Данная страница предназначена для этого!</p> ⇥⇥ + + + Top Left Верхний левый угол @@ -11839,11 +12509,6 @@ Reported error: Notify Уведомления - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> ⇥⇥ <p>Retroshare будет уведомлять вас о том, что происходит в сети. ⇥⇥ В зависимости от ваших требований вы можете активировать или деактивировать ⇥⇥ некоторые уведомления. Данная страница предназначена для этого!</p> ⇥⇥ - Disable All Toasters @@ -11893,9 +12558,9 @@ Reported error: NotifyQt - + PGP key passphrase - ключевые фразы PGP + Парольная фраза PGP @@ -11933,7 +12598,7 @@ Reported error: Сохранение списка файлов... - + Test Тест @@ -11948,20 +12613,20 @@ Reported error: Неизвестный заголовок - - + + Encrypted message Шифрованное сообщение - + Please enter your PGP password for key Пожалуйста, введите ваш пароль для ключа PGP For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of several minutes was detected with your friends). - + Для надлежащей работы чата требуется, чтобы системное время компьютера было точным. Пожалуйста, проверьте его. (Смещение системного времени в несколько минут может нарушить общение с вашими друзьями.) @@ -12007,24 +12672,6 @@ Reported error: Малый трафик: объём трафика составляет 10% от обычного; загрузка и отдача всех файлов прекращается. - - OutQueueStatisticsWidget - - - Outqueue statistics - Статистика исходящего трафика - - - - By priority: - По приоритету: - - - - By service : - По сервису: - - PGPKeyDialog @@ -12048,12 +12695,22 @@ Reported error: Отпечаток пальца: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: Уровень доверия: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset Отключенное @@ -12088,39 +12745,51 @@ Reported error: Ключ подписи: - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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"> -<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;">Подписание ключа друга – это способ, с помощью которого вы выражаете другим пользователям сети доверие этому человеку. Кроме того, только подписанные вами участники будут получать информацию о вашем доверенном окружении.</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;">Подписание чужого ключа не может быть отменено, поэтому отнеситесь к процедуре со всей серьёзностью.</p></body></html> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key Подписать этот ключ PGP + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Подписать PGP ключ + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections Запретить подключения + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections Разрешить подключения @@ -12131,6 +12800,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Вставить подписи @@ -12163,7 +12837,7 @@ p, li { white-space: pre-wrap; } The trust level is a way to express your own trust in this key. It is not used by the software nor shared, but can be useful to you in order to remember good/bad keys. - + Уровень доверия является способом выразить доверие в этом ключе. Он не используется сторонним програмным обеспечением, но может быть полезным для вас, чтобы запомнить хорошие/плохие ключи. @@ -12186,7 +12860,7 @@ p, li { white-space: pre-wrap; } Ваше доверие к этой совокупности нет. - + This key has signed your own PGP key Этот ключ подписан вашим собственным ключом PGP @@ -12224,12 +12898,12 @@ p, li { white-space: pre-wrap; } This is your own PGP key, and it is signed by : - + Это ваш собственный ключ PGP и он подписан: This key is signed by : - + Этот ключ подписан: @@ -12354,18 +13028,18 @@ p, li { white-space: pre-wrap; } Send Message - Послать сообщение + Отправить сообщение PeerStatus - + Friends: 0/0 Друзей: 0/0 - + Online Friends/Total Friends Друзей в сети/Всего друзей @@ -12734,7 +13408,7 @@ p, li { white-space: pre-wrap; } основная папка %1 не существует, загрузка по умолчанию не удалась - + Error: instance '%1'can't create a widget Ошибка: экземпляр '%1' не может создать виджет @@ -12795,19 +13469,19 @@ p, li { white-space: pre-wrap; } Разрешить все плагины - - Loaded plugins - Загруженные плагины - - - + Plugin look-up directories Папки поиска плагинов - - Hash rejected. Enable it manually and restart, if you need. - Хэш отклонен. Включите его вручную и перезапустите, если вам нужно. + + Plugin disabled. Click the enable button and restart Retroshare + Плагин отключен. Нажмите кнопку "включить" и перезапустите RetroShare + + + + [disabled] + [отключено] @@ -12815,27 +13489,36 @@ p, li { white-space: pre-wrap; } Нет номера API. Пожалуйста, прочитайте руководство по разработке плагинов. - + + + + + + [loading problem] + [проблема загрузки] + + + No SVN number supplied. Please read plugin development manual. Нет номера SVN. Пожалуйста, прочитайте руководство по разработке плагинов. - + Loading error. Ошибка загрузки. - + Missing symbol. Wrong version? Пропущен символ. Неправильная версия? - + No plugin object Плагин отсутствует - + Plugins is loaded. Плагины загружены. @@ -12845,22 +13528,7 @@ p, li { white-space: pre-wrap; } Неизвестное состояние - - Title unavailable - Заголовок недоступен - - - - Description unavailable - Описание недоступно - - - - Unknown version - Неизвестная версия - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12871,15 +13539,16 @@ malicious behavior of crafted plugins. действий, осуществляемых подменёнными плагинами. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1><p>Плагины загружаются из каталогов, перечисленных в нижней части списка.</p><p>По соображениям безопасности, разрешенные плагины загружаются автоматически до главного исполняемого файла RetroShare или изменения библиотеки плагинов. В таком случае, пользователь должен подтвердить их снова. После запуска программы, вы можете включить плагин вручную, нажав на кнопку "Включить" и перезагрузить RetroShare.</p> <p>Если вы хотите разрабатывать свои собственные плагины, свяжитесь с командой Разработчиков, они будут рады помочь вам!</p> + + + Plugins Плагины - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1><p>Плагины загружаются из каталогов, перечисленных в нижней части списка.</p><p>По соображениям безопасности, разрешенные плагины загружаются автоматически до главного исполняемого файла RetroShare или изменения библиотеки плагинов. В таком случае, пользователь должен подтвердить их снова. После запуска программы, вы можете включить плагин вручную, нажав на кнопку "Включить" и перезагрузить RetroShare.</p> <p>Если вы хотите разрабатывать свои собственные плагины, свяжитесь с командой Разработчиков, они будут рады помочь вам!</p> - PopularityDefs @@ -12947,12 +13616,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. Личность, с которой вы разговариваете, удалила безопасный тоннель чата. Теперь вы можете удалить окно чата. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Закрытие этого окна приведёт к завершению разговора, уведомлению участника и удалению шифрованного туннеля. @@ -12962,12 +13636,7 @@ malicious behavior of crafted plugins. Удалить тоннель? - - Hash Error. No tunnel. - Ошибка хэша. Туннель не создан - - - + Can't send message, because there is no tunnel. Отправить сообщение невозможно, так как не проложен туннель. @@ -13048,7 +13717,12 @@ malicious behavior of crafted plugins. Публикации - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Новости</h1> <p>Сервис «Новости» даёт Вам возможность поделиться с окружением полезными ссылками, информация о которых будет распространяться по сети как форумы ⇥ каналы</p> ⇥ <p>Ссылки могут комментироваться подписчиками. Система продвижения сообщений даёт возможность ⇥ информировать о важных ссылках.</p> ⇥ <p>Ограничения на тип и характер публикуемых ссылок отсутствует; будьте осторожны при переходах по ним.</p> <р> Размещенные ссылки удаляются через %1 месяца. </p> + + + Create Topic Создать тему @@ -13072,11 +13746,6 @@ malicious behavior of crafted plugins. Other Topics Другие темы - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13331,7 +14000,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview Сообщение RetroShare: предпросмотр печати @@ -13687,7 +14356,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Подтверждение @@ -13697,7 +14367,7 @@ p, li { white-space: pre-wrap; } Вы хотите, чтобы эта ссылка была обработана вашей системой? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13726,7 +14396,12 @@ and open the Make Friend Wizard. Хотите ли вы обработать %1 ссылок? - + + This file already exists. Do you want to open it ? + Такой файл уже существует. Хотите открыть? + + + %1 of %2 RetroShare link processed. %1 из %2 ссылок RetroShare обработана. @@ -13893,7 +14568,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Не удалось обработать файл коллекции - + Deny friend Отказать в дружбе @@ -13913,7 +14588,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Запрос на файл отменён - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Эта версия RetroShare использует OpenPGP-SDK. В качестве побочного эффекта, она не использует системное публичное PGP хранилище, но имеет свое собственное хранилище, которое используется всеми экземплярами RetroShare. <br><br>Похоже что Вы, не имеете такое хранилище, хотя ключи PGP упоминаются учетными записями RetroShare, вероятно, потому, что вы только что обновились до этой новой версии программного обеспечения. @@ -13944,7 +14619,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Произошла непредвиденная ошибка. Пожалуйста, сообщите 'RsInit::InitRetroShare unexpected return code %1'. - + Multiple instances Множественные копии @@ -13981,11 +14656,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... Туннель в ожидании... - - - Secured tunnel established. Waiting for ACK... - Безопасный туннель создан. Ожидание ACK.... - Secured tunnel is working. You can talk! @@ -14003,7 +14673,7 @@ Reported error is: %2 - + Click to send a private message to %1 (%2). Нажмите, чтобы отправить личное сообщение для %1 (%2). @@ -14053,7 +14723,7 @@ Reported error is: Транзитный трафик - + You appear to have nodes associated to DSA keys: Похоже, у вас имеются узлы, привязанные к DSA-ключам: @@ -14063,7 +14733,7 @@ Reported error is: К сожалению, на данный момент DSA-ключи не поддерживаются криптоплатформой RetroShare. Все эти узлы не будут задействованы. - + enabled включено @@ -14073,12 +14743,12 @@ Reported error is: отключено - + Join chat lobby Присоединиться к комнате чата - + Move IP %1 to whitelist Перенести IP %1 в белый список @@ -14093,70 +14763,93 @@ Reported error is: весь диапазон белого списка %1 - + + %1 seconds ago %1 секунду назад + %1 minute ago %1 минуту назад + %1 minutes ago %1 минут назад + %1 hour ago %1 час назад + %1 hours ago %1 часов назад + %1 day ago %1 день назад + %1 days ago %1 дней назад - + Subject: - + Тема: Participants: - + Участники: Auto Subscribe: - + Автоматически подписаться: Id: + Id: + + + + +Security: no anonymous IDs This cert is malformed. Error code: - + Этот сертификат имеет неверный формат. Код ошибки: The following has not been added to your download list, because you already have it: - + Указанное ниже не добавлено в ваш список закачек, так как эти файлы у вас уже имеются: + + + + Error + Ошибка + + + + unable to parse XML file! + не получается обработать файл XML! @@ -14167,7 +14860,7 @@ Reported error is: Помощник быстрого старта - + <!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; } @@ -14189,21 +14882,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > Далее > - - - - + + + + + Exit Выйти - + For best performance, RetroShare needs to know a little about your connection to the internet. Для повышения производительности RetroShare необходимо получить информацию о Вашем подключении к Интернету. @@ -14270,13 +14965,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back < Назад - + <!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; } @@ -14294,7 +14990,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Обширная сеть @@ -14319,7 +15015,27 @@ p, li { white-space: pre-wrap; } Автоматически расшаривать входящую папку (рекомендуется) - + + RetroShare Page Display Style + Стиль отображения страницы RetroShare + + + + Where do you want to have the buttons for the page? + Где вы хотите расположить кнопки для страницы? + + + + ToolBar View + Вид панели инструментов + + + + List View + Вид списка + + + <!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; } @@ -14415,13 +15131,13 @@ p, li { white-space: pre-wrap; } Do you really want to stop sharing this directory ? - + Вы действительно хотите отменить общий доступ к этому каталогу? RSGraphWidget - + %1 KB %1 кБ @@ -14457,7 +15173,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default Разрешено по умолчанию @@ -14488,31 +15204,31 @@ p, li { white-space: pre-wrap; } - Switched Off - Отключено + Globally switched Off + Выключен глобально Service name: - + Имя службы: Peer name: - + Имя участника: Peer Id: - + Id участника: RSettingsWin - + Error Saving Configuration on page - + Ошибка сохранения настроек на странице @@ -14530,7 +15246,7 @@ p, li { white-space: pre-wrap; } <strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) - + <strong>Скачивание:</strong> 0.00 (кБ/с) | <strong>Отдача:</strong> 0.00 (кБ/с) @@ -14619,8 +15335,8 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>Задействовав режим трансляции данных, ваш узел RetroShare будет служить в качества моста между теми пользователями сети, которые не могут подключиться друг к другу напрямую, например, если они находятся за межсетевым экраном.</p> <p>Вы можете использовать возможности трансляции, если <i> разрешите трансляцию соединений</i>, или же воспользоваться услугами других участников сети выбрав <i>использовать серверы-трансляторы</i>. В первом варианте вы можете дополнительно указать скорость, предоставляемую вами в режиме трансляции друзьям, друзьям друзей и другим пользователям сети.</p> <p>Работая в режиме трансляции, вы не имеете возможности осуществлять мониторинг и анализ транслируемого контента, так как он шифрован и подписан двумя конечными узлами.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>Задействовав режим трансляции данных, ваш узел RetroShare будет служить в качества моста между теми пользователями сети, которые не могут подключиться друг к другу напрямую, например, если они находятся за межсетевым экраном.</p> <p>Вы можете использовать возможности трансляции, если <i> разрешите трансляцию соединений</i>, или же воспользоваться услугами других участников сети выбрав <i>использовать серверы-трансляторы</i>. В первом варианте вы можете дополнительно указать скорость, предоставляемую вами в режиме трансляции друзьям, друзьям друзей и другим пользователям сети.</p> <p>Работая в режиме трансляции, вы не имеете возможности осуществлять мониторинг и анализ транслируемого контента, так как он шифрован и подписан двумя конечными узлами.</p> @@ -14644,7 +15360,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW НОВЫЙ @@ -14984,7 +15700,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? Изображение велико для передачи. @@ -15002,7 +15718,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. Сбрасывает ВСЕ сохранённые настройки RetroShare. @@ -15047,34 +15763,34 @@ Reducing image to %1x%2 pixels? Не получается открыть лог-файл '%1': %2 - + built-in Встроенный - + Could not create data directory: %1 Не удалось создать каталог данных: %1 - + Revision Редакция Invalid language code specified: - + Указан недействительный код языка: Invalid GUI style specified: - + Указан недействительный стиль GUI: Invalid log level specified: - + Указан недействительный уровень журналирования: @@ -15085,33 +15801,10 @@ Reducing image to %1x%2 pixels? RTT статистика - - SFListDelegate - - - B - Б - - - - KB - КБ - - - - MB - МБ - - - - GB - ГБ - - SearchDialog - + Enter a keyword here (at least 3 char long) Введите ключевое слово (по меньшей мере – 3 символа) @@ -15292,12 +15985,12 @@ Reducing image to %1x%2 pixels? Скачать выделенное - + File Name Имя файла - + Download Скачать @@ -15310,7 +16003,7 @@ Reducing image to %1x%2 pixels? Send RetroShare Link - Послать RetroShare-ссылку + Отправить RetroShare-ссылку @@ -15366,7 +16059,7 @@ Reducing image to %1x%2 pixels? Открыть папку - + Create Collection... Создание Коллекции... @@ -15386,7 +16079,7 @@ Reducing image to %1x%2 pixels? Загрузить из файла коллекции... - + Collection Коллекция @@ -15459,18 +16152,18 @@ Reducing image to %1x%2 pixels? <p>This is the external IP your Retroshare node thinks it is using.</p> - + <p>Предполагается, что используется этот внешний IP-адрес вашего узла Retroshare.</p> <p>This is the IP your friend claims it is connected to. If you just changed IPs, this is a false warning. If not, that means your connection to this friend is forwarded by an intermediate peer, which would be suspicious.</p> - + <p>Этот IP вашего друга утверждает, что он подключен. Если вы только что изменили IPs, это ложное предупреждение. Если нет, это означает, что подключение к этому другу направляется промежуточным узлом, который является подозрительным.</p> <html><head/><body><p>This warning is here to protect you against traffic forwarding attacks. In such a case, the friend you're connected to will not see your external IP, but the attacker's IP. </p><p><br/></p><p>However, if you just changed IPs for some reason (some ISPs regularly force change IPs) this warning just tells you that a friend connected to the new IP before Retroshare figured out the IP changed. Nothing's wrong in this case.</p><p><br/></p><p>You can easily suppress false warnings by white-listing your own IPs (e.g. the range of your ISP), or by completely disabling these warnings in Options-&gt;Notify-&gt;News Feed.</p></body></html> - + <html><head/> <body><p>Это предупреждение показывается, чтобы защитить вас от атаки пересылки трафика. В этом случае друг, к которому вы подключены не увидит ваш внешний IP, но увидит IP злоумышленника. </p> <p><br/></p> <p>Однако, если вы только что изменили IP адрес по какой-либо причине (некоторые провайдеры регулярно меняют IP адреса) это предупреждение просто говорит вам, что друг подключился на новый IP-адрес, прежде чем Retroshare понял, что IP изменился. Ничего страшного в этом случае.</p><p><br/></p><p>Ложные предупреждения можно легко отключить, составив белый список ваших собственных IP адресов (например диапазон вашего провайдера) или полностью отключить эти предупреждения в опции -&gt; Уведомления -&gt; Новостная Лента.</p></body></html> @@ -15623,18 +16316,28 @@ Reducing image to %1x%2 pixels? Missing/Damaged SSL certificate for key - + Потерян/Поврежден SSL-сертификат для ключа ServerPage - + Network Configuration Конфигурация сети - + + Network Mode + Режим сети + + + + Nat + Nat + + + Automatic (UPnP) Автоматически (UPnP) @@ -15649,7 +16352,7 @@ Reducing image to %1x%2 pixels? Ручное назначение порта - + Public: DHT & Discovery Публичный режим: DHT и обнаружение @@ -15669,13 +16372,13 @@ Reducing image to %1x%2 pixels? Darknet-режим: отключено всё - - + + Local Address Локальный адрес - + External Address Внешний адрес @@ -15685,30 +16388,30 @@ Reducing image to %1x%2 pixels? Динамический DNS - + Port: Порт: - + Local network Локальная сеть - + External ip address finder Поисковик внешнего ip адреса - + UPnP UPnP - + Known / Previous IPs: - Известный/Предыдущий IPs: + Известные/Предыдущие IP-адреса: @@ -15729,13 +16432,13 @@ behind a firewall or a VPN. Разрешить RetroShare спрашивать мой IP-адрес у этих сайтов: - - + + kB/s кБ/с - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. Диапазон доступных портов – от 1024 до 65535. Обычно Порты ниже 1024 зарезервированы операционной системой. @@ -15745,24 +16448,12 @@ behind a firewall or a VPN. Диапазон доступных портов – от 1024 до 65535. Обычно Порты ниже 1024 зарезервированы операционной системой. - + Onion Address Адрес Tor - - Expected torrc Port Configuration: - Ожидается torrc Конфигурация Портов: - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - Директория Скрытой Службы </your/path/to/hidden/directory/service> -Порт Скрытой Службы 9191 127.0.0.1:9191 - - - + Discovery On (recommended) Обнаружение Вкл. (рекомендуется) @@ -15772,19 +16463,69 @@ HiddenServicePort 9191 127.0.0.1:9191 Обнаружение Выкл. - + + Hidden - See Config + Скрытые - см Конфигурацию + + + + I2P Address + Адрес I2P + + + + I2P incoming ok + Входящие I2P ОК + + + + Points at: + Указывает на: + + + + Tor incoming ok + Входящие Tor ОК + + + + incoming ok + Входящие ОК + + + + Proxy seems to work. Прокси функционирует. - + + I2P proxy is not enabled + I2P-прокси не включён + + + + You are reachable through the hidden service. + Вы доступны через скрытые сервисы. + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + Прокси не включен или сломан. +Все ли сервисы запущены и работают? +Также проверьте порты. + + + [Hidden mode] [Скрытый режим] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> - + <html><head/> <body><p>Это очищает список известных адресов. Это действие является полезным, если по какой-либо причине ваш список адресов содержит недопустимые/некорректные/недействующие адреса, которые вы не хотите передавать вашим друзьям как контактные адреса.</p></body></html> @@ -15792,97 +16533,102 @@ HiddenServicePort 9191 127.0.0.1:9191 Очистить - + Download limit (KB/s) Лимит загрузки (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + <html><head/> <body><p>Этот лимит загрузок охватывает всё приложение. Однако в некоторых ситуациях таких, как при передаче множества небольших файлов сразу, оценка пропускной способности становится ненадежной и общий отображаемый объём Retroshare может превышать этот предел. </p></body></html> - + Upload limit (KB/s) Лимит отдачи (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> + <html><head/> <body><p>Лимит выгрузки охватывает всё программное обеспечение. Слишком маленький лимит выгрузки в конечном итоге может заблокировать службы с низким приоритетом (форумы, каналы). Минимально рекомендуемое значение - 50KB/s.</p></body></html> + + + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> - + Test Тест - + Network Сеть - + IP Filters IP-фильтры - + IP blacklist Черный список IP - + IP range Диапазон IP-адресов - - - + + + Status Статус - - + + Origin Происхождение - - + + Reason Причина - - + + Comment Комментарий - + IPs IPs - + IP whitelist Белый список IP - + Manual input Ручной ввод <html><head/><body><p>Enter an IP range. Accepted formats:</p><p>193.190.209.15</p><p>193.190.209.15/24</p><p>193.190.209.15/16</p></body></html> - + <html><head/> <body><p>Введите диапазон IP-адресов. Допустимые форматы:</p> <p>193.190.209.15</p> <p>193.190.209.15/24</p> <p>193.190.209.15/16</p></body></html> @@ -15900,12 +16646,132 @@ HiddenServicePort 9191 127.0.0.1:9191 Добавить в белый список - + + Hidden Service Configuration + Настройка скрытых сервисов. + + + + Outgoing Connections + Исходящие соединения + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + I2P Socks прокси + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + Исходящие I2P ОК + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + Tor Socks Proxy по умолчанию: 127.0.0.1:9050. Задайте в torrc и обновите здесь. + +I2P Socks Proxy: см. http://127.0.0.1:7657/i2ptunnelmgr для настройки клиентского туннеля: +Мастер туннелей -> Клиентский туннель -> SOCKS 4/4a/5 -> введите имя -> оставьте поле "Исходящие прокси" пустым -> введите порт (и запомните!) [вам может потребоваться задать доступность 127.0.0.1] -> отметьте "автозапуск" - > готово! +Теперь введите адрес (например 127.0.0.1) и порт, выбранные вами ранее для I2P Proxy. +Вы можете соединяться со скрытыми узлами, даже если используете стандартный узел, так почему бы не настроить Tor и/или I2P? + + + + Incoming Service Connections + Служебные входящие соединения + + + + + Service Address + Адрес сервиса + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + <html><head/><body><p>Это ваш скрытый адрес. Он должен выглядет так: <span style=" font-weight:600;">[что-нибудь].onion</span> или <span style=" font-weight:600;">[что-нибудь].b32.i2p. </span>Если вы настраивали скрытую службу Tor, onion-адрес генерируется автоматически. Вы можете посмотреть его, например в <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. Для I2P: Настройте серверный туннель ( http://127.0.0.1:7657/i2ptunnelmgr ) и скопируйте его base32 address, когда он запустится (должен оканчиваться на .b32.i2p)</p></body></html> + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + <html><head/><body><p>Это локальный адрес, на котором развёрнута скрытая служба на вашей локальной машине. Чаще всего<span style=" font-weight:600;">127.0.0.1</span> - правильный ответ.</p></body></html> + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + Входящие ОК + + + + Expected Configuration: + Ожидаемая конфигурация: + + + + Please fill in a service address + Пожалуйста, заполните адрес службы + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + Чтобы принимать соединения, вы должны сперва настроить скрытые службы Tor/I2P. +Для Tor: Смотрите torrc и документацию в разделе HOWTO. +Для I2P: см. http://127.0.0.1:7657/i2ptunnelmgr для настройки серверного туннеля: +Мастер туннелей -> Серверный туннель -> Стандартный -> введите имя -> введите адрес и порт, используемый RS (см. выше в строке Локальный адрес) -> отметьте "Автозапуск" -> всё! + +Когда законите, вставьте Onion/I2P (Base32) адрес в поле выше. +Это внешний адрес в сети Tor/I2P. +Наконец, убедитесь, что все порты соответствуют реальной конфигурации. + +Если вы испытываете трудности с соединением через Tor - проверьте логи Tor. + + + IP Range Диапазон IP-адресов - + Reported by DHT for IP masquerading Сообщенные DHT для IP masquerading @@ -15928,34 +16794,35 @@ HiddenServicePort 9191 127.0.0.1:9191 Добавлен вами - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/> <body><p>IP адреса из белого списка собраны из следующих источников: IP адреса поступившие вручную при обмене сертификатами, диапазоны IP, введенные вами в этом окне или в окне безопасности элементов канала.</p> <p>Поведение по умолчанию для Retroshare: (1) всегда разрешать подключение к участникам с IP из белого списка, даже если этот IP также занесен в чёрный список; (2) дополнительно требуется, чтобы IP адрес находился в белом списке. Вы можете изменить это поведение для каждого участника в окне "Подробности" каждого узла Retroshare. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + <html><head/><body><p>DHT позволяет быстро соединяться с доверенными узлами, обрабатывая их поисковые запросы, что значительно упрощает процедуру установления соединения. Никакая информация на самом деле не хранится в DHT. Он используется только в качестве системы прокси, для того чтобы установить контакт с другими узлами RetroShare.</p><p>Сервис обнаружения посылает информацию о местоположении и идентификаторы доверенных узлов всем подключенным участникам, чтобы помочь им в установлении соединения. Найденые контакты не становятся автоматически друзьями; обе стороны должны добавить сертификаты друг друга вручную чтобы иметь возможность соединиться.</p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/> <body><p>Индикатор становится зеленым, как только Retroshare удаётся получить свой собственный IP от веб-сайтов перечисленных ниже, если вы включили это действие. Retroshare также будет использовать другие средства, чтобы узнать свой IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + <html><head/> <body><p>Этот список автоматически заполняется информацией, собранной из нескольких источников: ретрансляция участников, сообщённых DHT, диапазоны IP-адресов, введенные вами и диапазоны IP-адресов сообщённые вашими друзьями. Параметры по умолчанию должны защитить вас от крупномасштабной ретрансляции трафика.</p> <p>Автоматический подбор ретранслирующих IP-адресов может привести к тому, что IP-адреса ваших друзей будут добавлены в черный список. В этом случае, используйте контекстное меню, чтобы вернуть их в белый список.</p></body></html> - + activate IP filtering активировать IP-фильтрацию - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> - + <html><head/> <body><p>Это очень радикально, будьте осторожны. Так как транслирующиеся IP могут быть фактическими реальными IP, этот вариант может вызвать отключение и вероятно заставит вас добавить в белый список IP адреса ваших друзей IPs.</p></body></html> @@ -15965,7 +16832,7 @@ HiddenServicePort 9191 127.0.0.1:9191 <html><head/><body><p>Another drastic option. If you use it, be prepared to add your friends' IPs into the whitelist when needed.</p></body></html> - + <html><head/> <body><p>Другой агрессивный вариант. Если вы используете его, будьте готовы добавить IP адреса ваших друзей в белый список, когда потребуется.</p></body></html> @@ -15975,7 +16842,7 @@ HiddenServicePort 9191 127.0.0.1:9191 <html><head/><body><p>If used alone, this option protects you quite well from large scale IP masquerading.</p></body></html> - + <html><head/> <body><p>Если используется отдельно, этот параметр достаточно хорошо защищает вас от больших масштабов трансляции адресов IP.</p></body></html> @@ -15983,101 +16850,20 @@ HiddenServicePort 9191 127.0.0.1:9191 Автоматически запретить диапазон DHT по маске IP начиная с - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - Конфигурация Tor - - - - Outgoing Tor Connections - Исходящие соединения Tor - - - + Tor Socks Proxy Tor Socks прокси - + Tor outgoing Okay Исходящие Tor Окей - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - Входящие соединения Tor - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - Входящие Tor ОК - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - Скрытый - Увидеть конфигурацию Tor - - - + Tor proxy is not enabled Tor-прокси не включён - - - - You are reachable through Tor. - Вы доступны через Tor. - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - Прокси Tor не включен или неисправен. -Вы используете скрытую службу Tor? -Проверьте ваши порты! - ServicePermissionDialog @@ -16110,7 +16896,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions Разрешения @@ -16124,18 +16910,16 @@ Check your ports! Permissions Разрешения - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Настройки прав допуска позволяют указать, какой набор сервисов будет доступен тому или иному доверенному узлу.</p> <p>Каждый элемент управления содержит две лампочки, показывая тем самым, разрешил ли удалённый узел вам и разрешили ли вы удалённому узлу пользоваться данным сервисом. Сервис взаимно активирован, если обе лампочки горят (выглядит так: <img height=20 src=":/images/switch11.png"/>) для данного кокретного сервиса/узла.</p> <p> Глобальный выключатель <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> позволяет включить/отключить тот или иной сервис для всех доверенных участников одновременно.</p> <p>Будьте осторожны! Некоторые сервисы взаимосвязаны и взаимозависимы. Например, отключение сервиса маршрутизации Turtle приведёт к прекращению анонимного файлообмена, функционирования удалённых чатов, а также заблокирует отправку сообщений удалённым участникам.</p> - - - hide offline скрыть не в сети + + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Настройки прав допуска позволяют указать, какой набор сервисов будет доступен тому или иному доверенному узлу.</p> <p>Каждый элемент управления содержит две лампочки, показывая тем самым, разрешил ли удалённый узел вам и разрешили ли вы удалённому узлу пользоваться данным сервисом. Сервис взаимно активирован, если обе лампочки горят (выглядит так: <img height=20 src=":/images/switch11.png"/>) для данного кокретного сервиса/узла.</p> <p> Глобальный выключатель <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> позволяет включить/отключить тот или иной сервис для всех доверенных участников одновременно.</p> <p>Будьте осторожны! Некоторые сервисы взаимосвязаны и взаимозависимы. Например, отключение сервиса маршрутизации Turtle приведёт к прекращению анонимного файлообмена, функционирования удалённых чатов, а также заблокирует отправку сообщений удалённым участникам.</p> + Settings @@ -16191,7 +16975,7 @@ Check your ports! Share flags and groups: - + Поделиться флагами и группами: @@ -16398,7 +17182,7 @@ Select the Friends with which you want to Share your Channel. Скачать - + Copy retroshare Links to Clipboard Скопировать RetroShare-ссылки в буфер обмена @@ -16423,7 +17207,7 @@ Select the Friends with which you want to Share your Channel. Добавить ссылки на облачный сервис - + RetroShare Link Ссылка RetroShare @@ -16439,7 +17223,7 @@ Select the Friends with which you want to Share your Channel. Управление папками - + Create Collection... Создание Коллекции... @@ -16462,7 +17246,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend Друг @@ -16488,11 +17272,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived Получено сообщение - + Download Скачать @@ -16501,6 +17286,11 @@ Select the Friends with which you want to Share your Channel. Download complete Загрузка завершена + + + Lobby + + SoundPage @@ -16561,7 +17351,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile Загрузка профиля @@ -16819,12 +17609,12 @@ This choice can be reverted in settings. - + Connected Соединён - + Unreachable Недоступен @@ -16840,18 +17630,18 @@ This choice can be reverted in settings. - + Trying TCP Попытка установления TCP-соединения - - + + Trying UDP Попытка установления UDP-соединения - + Connected: TCP Соединено: TCP @@ -16862,6 +17652,11 @@ This choice can be reverted in settings. + Connected: I2P + соединено: I2P + + + Connected: Unknown Соединено: неизвестно @@ -16871,17 +17666,17 @@ This choice can be reverted in settings. DHT: контакт - + TCP-in - + входящий TCP TCP-out - + исходящий TCP - + inbound connection входящие подключения @@ -16891,19 +17686,29 @@ This choice can be reverted in settings. исходящие подключения - + UDP UDP Tor-in - + входящий Tor Tor-out - + исходящий Tor + + + + I2P-in + входящий I2P + + + + I2P-out + исходящий I2P @@ -16911,7 +17716,7 @@ This choice can be reverted in settings. неизвестный - + Connected: Tor Подключено: Tor @@ -17128,7 +17933,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Пауза @@ -17177,7 +17982,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled Всплывающие уведомления отключены @@ -17255,17 +18060,17 @@ p, li { white-space: pre-wrap; } <html><head/><body><p><span style=" font-weight:600;">Streaming </span>causes the transfer to request 1MB file chunks in increasing order, facilitating preview while downloading. <span style=" font-weight:600;">Random</span> is purely random and favors swarming behavior. <span style=" font-weight:600;">Progressive</span> is a compromise, selecting the next chunk at random within less than 50MB after the end of the partial file. That allows some randomness while preventing large empty file initialization times.</p></body></html> - + <html><head/> <body><p><span style="font-weight:600;"> Потоковая</span> передача файла требует предачи частей в 1 MB в возрастающем порядке, облегчая просмотр во время загрузки. <span style="font-weight:600;">Случайная</span> передача является чисто случайной и напоминает заполнение мозаики. <span style="font-weight:600;">Прогрессивная</span> передача является компромиссом, выбирая следующий фрагмент в случайном порядке в пределах менее чем 50 МБ после окончания загрузки предыдущего фрагмента. Это позволяет некоторые случайности, одновременно сокращая время инициализации большого пустого файла.</p></body></html> <html><head/><body><p>Retroshare will suspend all transfers and config file saving if the disk space goes below this limit. That prevents loss of information on some systems. A popup window will warn you when that happens.</p></body></html> - + <html><head/> <body><p>Retroshare будет приостанавливать все передачи и сохранение конфигурационного файла, если свободное место на диске ниже этого предела. Это предотвращает потерю информации на некоторых системах. Всплывающее окно предупредит вас, когда это произойдет.</p></body></html> <html><head/><body><p>This value controls how many tunnel request your peer can forward per second. </p><p>If you have a large internet bandwidth, you may raise this up to 30-40, to allow statistically longer tunnels to pass. Be very careful though, since this generates many small packets that can significantly slow down your own file transfer. </p><p>The default value is 20. If you're not sure, keep it that way.</p></body></html> - + <html><head/><body><p>Это значение определяет как много туннелей в секунду можно создавать. </p><p>Если у вас быстрое подключение к сети, вы можете повысить это значение до 30-40, Учтите, что это создает много мелких пакетов и может сильно замедлить передачу файлов.</p><p>Значение по умолчанию - 20. Если вы не уверены, оставьте значение по умолчанию.</p></body></html> @@ -17275,7 +18080,7 @@ p, li { white-space: pre-wrap; } <html><head/><body><p>You can use this to force RetroShare to download your files rather <br/>than cache files for as many slots as requested. Setting that number <br/>to be equal to the queue size above will always prioritize your files<br/>over cache. <br/><br/>It is however recommended to leave at least a few slots for cache files. For now, cache files are only used to transfer friend file lists.</p></body></html> - + <html><head/> <body><p>Вы можете использовать это, чтобы заставить RetroShare загружать ваши файлы быстрее <br/>чем файлы кэша для такого количества слотов сколько требуется. Если установить это значение <br/> равным общему лимиту слотов выше, приоритет передачи ваших файлов <br/>всегда будет выше чем у файлов кеша. <br/><br/>Однако рекомендуется оставить по крайней мере несколько слотов для файлов кэша. Теперь, кэш-файлы используются только для передачи участнику списка файлов.</p></body></html> @@ -17310,16 +18115,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Обмен файлами + Uploads Передача - + Name i.e: file name @@ -17515,25 +18322,25 @@ p, li { white-space: pre-wrap; } - + Slower Медленнее - - + + Average Норма - - + + Faster Быстрее - + Random Случайно @@ -17558,7 +18365,12 @@ p, li { white-space: pre-wrap; } Выбрать... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare поддерживает два метода передвчи файлов: прямые передачи между друзьями, и анонимные туннельные передачи. Кроме этого поддерживается загрузка с нескольких источников (вы так же можете быть источником пока загружаете)</p> <p>Вы можете раздавать свои файлы, воспользуйтесь значком <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> на панели. Эти файлы будут добавлены в список ваших общих ресурсов. Вы можете определить доступность этих файлов для определенных групп друзей</p> <p>Вкладка поиск позволяет искать файлы среди доступных ресурсов ваших друзей, а так же у незнакомых пользователей посредством поиска через анонимные туннели.</p> + + + Move in Queue... Переместить в очереди ... @@ -17584,39 +18396,39 @@ p, li { white-space: pre-wrap; } - + Failed Ошибка - - + + Okay OK (Хорошо) - - + + Waiting ожидание - + Downloading Загрузка - + Complete Готово - + Queued В очереди @@ -17657,7 +18469,7 @@ Try to be patient! Будьте терпеливы! На данную процедуру необходимо время. - + Transferring Передача @@ -17667,7 +18479,7 @@ Try to be patient! Передача - + Are you sure that you want to cancel and delete these files? Вы уверены, что хотите отменить загрузку и удалить эти файлы? @@ -17725,7 +18537,7 @@ Try to be patient! Пожалуйста введите новое--и действительное--имя файла - + Last Time Seen i.e: Last Time Receiced Data Последний раз в сети @@ -17831,7 +18643,7 @@ Try to be patient! Показать Столбец Последний Просмотр - + Columns Столбцы @@ -17841,7 +18653,7 @@ Try to be patient! Файлообмен - + Path i.e: Where file is saved Путь @@ -17857,12 +18669,7 @@ Try to be patient! Показать Столбец Путь - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare поддерживает два метода передвчи файлов: прямые передачи между друзьями, и анонимные туннельные передачи. Кроме этого поддерживается загрузка с нескольких источников (вы так же можете быть источником пока загружаете)</p> <p>Вы можете раздавать свои файлы, воспользуйтесь значком <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> на панели. Эти файлы будут добавлены в список ваших общих ресурсов. Вы можете определить доступность этих файлов для определенных групп друзей</p> <p>Вкладка поиск позволяет искать файлы среди доступных ресурсов ваших друзей, а так же у незнакомых пользователей посредством поиска через анонимные туннели.</p> - - - + Could not delete preview file Не удалось удалить файл предварительного просмотра @@ -17872,7 +18679,7 @@ Try to be patient! Попробуйте еще раз? - + Create Collection... Создание Коллекции... @@ -17887,7 +18694,7 @@ Try to be patient! Просмотр Коллекции... - + Collection Коллекция @@ -17897,19 +18704,19 @@ Try to be patient! Файлообмен - + Anonymous tunnel 0x Анонимный туннель 0x - + Show file list transfers Показать список передачи файлов - + version: - + версия: @@ -17943,7 +18750,7 @@ Try to be patient! ПАПКА - + Friends Directories Папки друзей @@ -17986,7 +18793,7 @@ Try to be patient! TurtleRouterDialog - + Search requests Поисковые запросы @@ -18049,7 +18856,7 @@ Try to be patient! Статистика роутера - + Age in seconds Возраст в секундах @@ -18064,7 +18871,17 @@ Try to be patient! всего - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Неизвестный пир @@ -18073,16 +18890,11 @@ Try to be patient! Turtle Router Маршрутизатор Turtle - - - Tunnel Requests - Запросы на установление туннеля - TurtleRouterStatisticsWidget - + Search requests repartition Предел поисковых запросов @@ -18124,7 +18936,7 @@ Try to be patient! Forwarded data - + Пересылаемые данные @@ -18281,10 +19093,20 @@ Try to be patient! Примечание: эти параметры не влияют на retroshare-nogui. retroshare-nogui имеет переключатель командной строки для активации веб интерфейса. - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + <h1><img width="24" src=":/icons/help_64.png">Веб Интерфейс</h1> <p>Веб интерфейс позволяет управлять Retroshare из браузера. Несколько устройств могут иметь контроль над одним экземпляром Retroshare. Так вы можете начать разговор на планшете и позднее использовать Настольный компьютер для продолжения его.</p> <p>Предупреждение: не оставляйте веб интерфейс подключенным к Интернету, потому что нет никакого контроля доступа и нет шифрования. Если вы хотите использовать веб интерфейс через Интернет, используйте SSH-туннель или прокси-сервер для безопасного соединения.</p> + + + Webinterface not enabled Веб интерфейс не включён + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + Вебинтерфейс не включён. Включите его в настройках-> Вебинтерфейс. + failed to start Webinterface @@ -18295,11 +19117,6 @@ Try to be patient! Webinterface Веб интерфейс - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18489,7 +19306,7 @@ Try to be patient! Поиск - + My Groups Мои Группы @@ -18509,7 +19326,7 @@ Try to be patient! Другие Группы - + Subscribe to Group Подписаться на Группу diff --git a/retroshare-gui/src/lang/retroshare_sl.qm b/retroshare-gui/src/lang/retroshare_sl.qm index 2c7847da71e574e9f086b0bdeba2806b4e1b5d59..1087591803919ed01c3885a40f3f1a3cdd685c49 100644 GIT binary patch delta 810 zcmXZaOK1~O6b9fw$;>2~NivgHixGsPMbZSdNL3Ww)oM|@u{Kh{225>MA{3@G(4&Z1-m-rMl?%{axiac*nHAw??8tiubN3CXL-qrxjQtQIHDTEWqEZhWQXK+fB z16_Zp@1)~3ckP(O!+rLC_ohN%T&W(G(S*{DtJJ(pBim?nn8vfpqx1vm`Y1KdIsT=A zcBMAbD%atbdgT0ON#9CiU)9MsW$D_oI(=2f>gidx0PPzC`bBDW(&zyiU)K6vaUeRa zUD7=AVUa4mRJUlbiCVKXT=kX~ZvgQL-~6ux;2zT}6I*0bzxBD2+*MT8kC~O+GORY(C^SQYih`m{GbL+9+CH#cbHS2y1I>qp zeCfl&nlzO#A~Pwm2Va7;tn9;z3i3fHh+gc)zLbh0sH2kpND<2p(rGDY(ArZ? zs$*n;uS+-bQ)iN_pA@G_|2SCr2_Vo3R(S_-W?4QW0|Ho8FOZUWVkQW@0Be5;V2X6V zA-xB|E*${e1(0SMI)+GR1-7=yJl{tu*RZ4MB;TJTS%mbAl4=pD*+^dqWuqh50Nk1l z;5$nCGf?)d12C$vv-c_>?!hjR7qfS@ynUE7KC_-Dt$e!U?D{D_c1Q87 zDTrq%Ax)F+M$(s0>g&niTQO!c0KH#q6dk-k6DdSVw@#|*q;HV)UzD0(UI2n!&Zpng z0eg$w*13oe?zcSHoXqDBagDo4E#MPer)1uY@~81rDJkve7id?yCgOlM%krHk?c+CI zV3>6N&=O^j`Gw!$e?*$kRK1abD~^chmN(TV;)f~<6Lm>*+nkWWwkOMzafx^Me`m4$ zZ*9JJ%{QOBLS~5(;^vvJoeR?D=2h41E3Yo8Ig*Um&J^Jl6Z`AT(@J + AWidget - + version @@ -21,12 +21,17 @@ - + About - + + Copy Info + + + + close @@ -478,7 +483,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language @@ -518,24 +523,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -571,24 +580,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -618,8 +639,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -723,7 +749,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar @@ -731,7 +757,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -739,7 +765,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -747,13 +773,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage - + Show Settings Pokaži nastavitve @@ -808,7 +834,7 @@ p, li { white-space: pre-wrap; } Prekliči - + Since: @@ -818,6 +844,31 @@ p, li { white-space: pre-wrap; } + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -881,7 +932,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -896,6 +947,49 @@ p, li { white-space: pre-wrap; } + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -924,14 +1018,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -945,17 +1031,32 @@ p, li { white-space: pre-wrap; } - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -970,7 +1071,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 @@ -980,13 +1081,13 @@ p, li { white-space: pre-wrap; } - + Lobby chat - + Lobby management @@ -1018,7 +1119,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1033,12 +1134,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1084,7 +1185,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1123,18 +1224,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name Ime - + Count @@ -1155,23 +1256,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private @@ -1180,13 +1281,18 @@ p, li { white-space: pre-wrap; } Public + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1196,27 +1302,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1231,7 +1347,7 @@ p, li { white-space: pre-wrap; } Ne - + Lobby Name: @@ -1250,6 +1366,11 @@ p, li { white-space: pre-wrap; } Type: Vrsta: + + + Security: + + Peers: @@ -1260,19 +1381,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1281,23 +1403,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1307,22 +1424,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1375,7 +1512,7 @@ Double click lobbies to enter and chat. Prekliči - + Quick Message @@ -1384,12 +1521,37 @@ Double click lobbies to enter and chat. ChatPage - + General - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings @@ -1414,7 +1576,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1528,7 +1695,7 @@ Double click lobbies to enter and chat. - + Incoming @@ -1572,6 +1739,16 @@ Double click lobbies to enter and chat. System message + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1663,7 +1840,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1686,7 +1863,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat @@ -1735,17 +1912,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close - + Send - + Bold @@ -1760,12 +1937,12 @@ Double click lobbies to enter and chat. - + Attach a Picture - + Strike @@ -1816,12 +1993,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - + Do you really want to physically delete the history? @@ -1846,7 +2048,7 @@ Double click lobbies to enter and chat. - + appears to be Offline. @@ -1871,7 +2073,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -1893,7 +2095,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1908,12 +2110,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1923,7 +2125,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1934,7 +2136,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1969,12 +2171,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1984,7 +2186,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2142,7 +2344,12 @@ Double click lobbies to enter and chat. - + + Node info + + + + Peer Address @@ -2229,12 +2436,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2270,6 +2472,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2325,7 +2532,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2358,17 +2565,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2378,18 +2575,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2399,13 +2585,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2426,11 +2607,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2511,6 +2697,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2536,7 +2762,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2550,61 +2776,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: Ime: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: - + - + Options Možnosti - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2624,7 +2891,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2680,12 +2947,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed - + Cannot get peer details of PGP key %1 @@ -2720,12 +2987,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation - + Ultimate @@ -2751,7 +3019,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2766,7 +3034,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2864,13 +3132,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2880,12 +3157,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2905,17 +3187,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2928,7 +3205,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2938,8 +3215,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2949,8 +3226,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2960,7 +3237,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2970,17 +3247,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3837,7 +4114,7 @@ p, li { white-space: pre-wrap; } - + Forum @@ -3847,7 +4124,7 @@ p, li { white-space: pre-wrap; } - + Attach File @@ -3877,12 +4154,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3920,12 +4197,12 @@ p, li { white-space: pre-wrap; } - + Send - + Forum Message @@ -3936,7 +4213,7 @@ Do you want to reject this message? - + Post as @@ -3971,7 +4248,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3985,7 +4262,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3995,12 +4287,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4159,7 +4461,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4181,7 +4488,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4279,7 +4586,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4309,7 +4616,7 @@ Do you want to reject this message? - + Name Ime @@ -4354,7 +4661,7 @@ Do you want to reject this message? - + Bucket @@ -4380,17 +4687,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4425,7 +4732,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4630,7 +4952,7 @@ Do you want to reject this message? - + RELAY END @@ -4664,19 +4986,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4686,13 +5013,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4762,12 +5091,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4900,7 +5250,7 @@ you plug it in. ExprParamElement - + to @@ -5005,7 +5355,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5180,7 +5530,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5256,89 +5606,39 @@ you plug it in. FriendList - - - Status - Stanje - - - - - + Last Contact - - - Avatar - - - - + Hide Offline Friends - - State - Stanje - - - - Sort by State - - - - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name - Ime - - - - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + + export friendlist - Set Root Decorated + export your friendlist including groups + + + + + import friendlist + + + + + import your friendlist including groups + + + + + + Show State @@ -5348,7 +5648,7 @@ you plug it in. - + Group @@ -5389,7 +5689,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5419,40 +5729,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5462,7 +5835,7 @@ you plug it in. - + Display @@ -5472,12 +5845,7 @@ you plug it in. - - Sort by - - - - + Node @@ -5487,17 +5855,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5545,30 +5913,35 @@ you plug it in. - - All + + Sort by state - None - Brez - - - Name Ime - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5662,12 +6035,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5678,12 +6056,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5696,7 +6069,7 @@ you plug it in. - + Name Ime @@ -5748,7 +6121,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5763,7 +6136,7 @@ anonymous, you can use a fake email. - + Port @@ -5807,28 +6180,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5850,7 +6218,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5875,12 +6243,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5896,12 +6269,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5918,7 +6296,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6028,7 +6411,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6036,12 +6424,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6057,21 +6445,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6221,23 +6594,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6251,8 +6619,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6261,35 +6641,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6298,7 +6656,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6391,82 +6764,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - Cilj - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6646,7 +7041,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -6666,7 +7061,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6680,13 +7075,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6699,7 +7099,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6797,7 +7197,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6808,17 +7208,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels @@ -6833,13 +7238,29 @@ p, li { white-space: pre-wrap; } - + + Select channel download directory + + + + Disable Auto-Download - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7180,7 +7601,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download @@ -7200,7 +7621,7 @@ p, li { white-space: pre-wrap; } - + Feeds @@ -7210,7 +7631,7 @@ p, li { white-space: pre-wrap; } - + Subscribers @@ -7368,7 +7789,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7500,12 +7921,12 @@ before you can comment - + Start new Thread for Selected Forum - + Search forums @@ -7526,7 +7947,7 @@ before you can comment - + Title @@ -7539,13 +7960,18 @@ before you can comment - + Author - - + + Save image + + + + + Loading @@ -7575,7 +8001,7 @@ before you can comment - + Search Title @@ -7600,17 +8026,27 @@ before you can comment - + No name - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7648,7 +8084,7 @@ before you can comment - + Hide @@ -7658,7 +8094,38 @@ before you can comment - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7678,29 +8145,55 @@ before you can comment - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare - + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7725,7 +8218,7 @@ before you can comment - + Forum name @@ -7740,7 +8233,7 @@ before you can comment - + Description @@ -7750,12 +8243,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7771,7 +8264,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums @@ -7801,11 +8299,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7828,13 +8321,13 @@ before you can comment GxsGroupDialog - - + + Name Ime - + Add Icon @@ -7849,7 +8342,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7859,36 +8352,36 @@ before you can comment - - + + Description - + Message Distribution - + Public - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7918,7 +8411,7 @@ before you can comment - + PGP Required @@ -7934,12 +8427,12 @@ before you can comment - + Comments - + Allow Comments @@ -7949,33 +8442,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7985,12 +8518,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8063,7 +8596,7 @@ before you can comment - + Unsubscribe @@ -8073,12 +8606,12 @@ before you can comment - + Open in new tab - + Show Details @@ -8103,12 +8636,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8116,7 +8649,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8129,7 +8662,7 @@ before you can comment GxsIdDetails - + Loading @@ -8144,8 +8677,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8160,7 +8700,7 @@ before you can comment - + Identity&nbsp;name @@ -8175,7 +8715,7 @@ before you can comment - + [Unknown] @@ -8193,6 +8733,49 @@ before you can comment + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8388,28 +8971,7 @@ before you can comment - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8456,7 +9018,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8498,7 +9081,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8533,78 +9116,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8643,37 +9236,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search - + Unknown real name @@ -8683,72 +9297,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8769,42 +9340,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8814,7 +9385,57 @@ p, li { white-space: pre-wrap; } Vrsta: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8824,12 +9445,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8845,7 +9471,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8860,7 +9486,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8870,15 +9531,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8899,7 +9580,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8914,7 +9600,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8924,17 +9610,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8944,7 +9620,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8959,29 +9635,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8991,7 +9655,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9034,8 +9698,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9043,7 +9707,7 @@ p, li { white-space: pre-wrap; } - + @@ -9053,13 +9717,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9079,7 +9743,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9134,7 +9798,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9202,7 +9866,7 @@ p, li { white-space: pre-wrap; } - + Copy Kopiraj @@ -9232,16 +9896,35 @@ p, li { white-space: pre-wrap; } + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9251,7 +9934,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9300,7 +9983,7 @@ p, li { white-space: pre-wrap; } - + Options Možnosti @@ -9334,12 +10017,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9373,7 +10056,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9423,7 +10111,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9493,7 +10181,7 @@ p, li { white-space: pre-wrap; } - + Add Dodaj @@ -9518,7 +10206,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9527,38 +10215,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9639,7 +10306,7 @@ p, li { white-space: pre-wrap; } - + Subject: @@ -9650,12 +10317,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9665,7 +10342,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9735,7 +10412,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9760,47 +10437,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9826,12 +10478,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9842,7 +10494,7 @@ Do you want to save message to draft box? - + Add to "To" @@ -9862,12 +10514,7 @@ Do you want to save message to draft box? - - Friend Details - - - - + Original Message @@ -9877,19 +10524,21 @@ Do you want to save message to draft box? - + + To - + + Cc - + Sent @@ -9931,12 +10580,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown @@ -10046,7 +10696,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... @@ -10093,12 +10748,7 @@ Do you want to save message ? - - Show: - - - - + Close @@ -10108,32 +10758,57 @@ Do you want to save message ? Od: - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10156,7 +10831,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10171,7 +10866,7 @@ Do you want to save message ? - + Tags @@ -10211,7 +10906,7 @@ Do you want to save message ? - + Edit Tag @@ -10221,22 +10916,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10517,7 +11202,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10584,24 +11269,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10613,14 +11298,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10689,7 +11374,7 @@ Do you want to save message ? - + Reply to All @@ -10707,12 +11392,12 @@ Do you want to save message ? - + From - + Date @@ -10740,12 +11425,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10800,7 +11485,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10865,14 +11555,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10892,7 +11582,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10901,18 +11596,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10922,15 +11617,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10953,7 +11643,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link @@ -10987,7 +11692,7 @@ Do you want to save message ? - + Expand @@ -11030,7 +11735,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11074,26 +11779,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11207,7 +11892,7 @@ Do you want to save message ? - + Deny friend @@ -11265,7 +11950,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11331,7 +12016,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11346,7 +12031,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11366,12 +12051,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11401,7 +12086,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11470,7 +12155,7 @@ Reported error: NewsFeed - + News Feed @@ -11489,18 +12174,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11509,6 +12189,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11652,7 +12337,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11676,11 +12366,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11730,7 +12415,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11770,7 +12455,7 @@ Reported error: - + Test @@ -11785,13 +12470,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11840,24 +12525,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11881,12 +12548,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11921,33 +12598,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11958,6 +12653,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -12012,7 +12712,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12186,12 +12886,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12543,7 +13243,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12604,18 +13304,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12624,27 +13324,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12654,22 +13363,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12677,13 +13371,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12753,12 +13448,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12768,12 +13468,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12854,7 +13549,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12878,11 +13578,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13137,7 +13832,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13481,7 +14176,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13491,7 +14187,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13518,7 +14214,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13684,7 +14385,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13704,7 +14405,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13735,7 +14436,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13769,11 +14470,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13788,7 +14484,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13838,7 +14534,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13848,7 +14544,7 @@ Reported error is: - + enabled @@ -13858,12 +14554,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13878,42 +14574,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13932,6 +14635,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13943,6 +14652,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13952,7 +14671,7 @@ Reported error is: - + <!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; } @@ -13974,21 +14693,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14055,13 +14776,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14079,7 +14801,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14104,7 +14826,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14203,7 +14945,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14239,7 +14981,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14270,7 +15012,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14292,7 +15034,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14401,7 +15143,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14426,7 +15168,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14762,7 +15504,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14779,7 +15521,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14824,17 +15566,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14862,33 +15604,10 @@ Reducing image to %1x%2 pixels? - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15069,12 +15788,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download @@ -15143,7 +15862,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15163,7 +15882,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15406,12 +16125,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15426,7 +16155,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15446,13 +16175,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address - + External Address @@ -15462,28 +16191,28 @@ Reducing image to %1x%2 pixels? - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15506,13 +16235,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15522,23 +16251,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15548,17 +16266,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15568,90 +16334,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status Stanje - - + + Origin - - + + Reason - - + + Comment - + IPs - + IP whitelist - + Manual input @@ -15676,12 +16447,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15704,32 +16581,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15759,99 +16637,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15884,7 +16683,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15899,13 +16698,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16169,7 +16968,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -16194,7 +16993,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16210,7 +17009,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16233,7 +17032,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16259,11 +17058,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16272,6 +17072,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16332,7 +17137,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16574,12 +17379,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16595,18 +17400,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16617,6 +17422,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16626,7 +17436,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16636,7 +17446,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16646,7 +17456,7 @@ This choice can be reverted in settings. - + UDP @@ -16660,13 +17470,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16875,7 +17695,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16924,7 +17744,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17057,16 +17877,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17262,25 +18084,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17305,7 +18127,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17331,39 +18158,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay V redu - - + + Waiting - + Downloading - + Complete - + Queued @@ -17397,7 +18224,7 @@ Try to be patient! - + Transferring @@ -17407,7 +18234,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17465,7 +18292,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17571,7 +18398,7 @@ Try to be patient! - + Columns @@ -17581,7 +18408,7 @@ Try to be patient! - + Path i.e: Where file is saved Pot @@ -17597,12 +18424,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17612,7 +18434,7 @@ Try to be patient! - + Create Collection... @@ -17627,7 +18449,7 @@ Try to be patient! - + Collection @@ -17637,17 +18459,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17683,7 +18505,7 @@ Try to be patient! - + Friends Directories @@ -17726,7 +18548,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17789,7 +18611,7 @@ Try to be patient! - + Age in seconds @@ -17804,7 +18626,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17813,16 +18645,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18021,10 +18848,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18035,11 +18872,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18229,7 +19061,7 @@ Try to be patient! - + My Groups @@ -18249,7 +19081,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_sr.qm b/retroshare-gui/src/lang/retroshare_sr.qm index 5f49296633e228fcb4a27465026ebe3e7232b820..99a80f71d7ef2c593fe1fd62268641a7d2b7d82a 100644 GIT binary patch delta 1671 zcmXZce@xV690&0Cao_J9_vIkL1H?Nx`Ehq}9B>ERPlTy}24QV1jn({7Lqdl$vaKn) zYtkGLi0}Pn!Vd0IHF z4r%=1eUKmZ0!g=N+8j-vr4BvK`+){xAaAb(66$G^j{3?VKidujN+CCV3ZxvM)>YJ> z0=aP*NLFZ|8S=n&AZ+}JjjUtT-3$5c=f(cNhjGjaX#RuCmHLTwplSlhAE)l*h%?lGiw5`7k{_k_T_XF8a%$TVu{+{5Y4VT_a4t$W z8^x^2OLWb@)O>_m{4`{Vd}z<-i)=g1{g!&(rG>9c_u3AM?FDI`LESIeqe5S)eUc-5 zTyE+811LEncWxFL8#-vlVd^|a3tFgW11&a1oR?3x4TyjCCN;&=b$4ib4fPzP!2(+H zfqb?~{L9+d5#2MIL?C!Z*P_z`@hvoAkY+Yh#}!)KN_{$A+v#)>UX@;(dsl>1s_(q{ z2C#mu+9fwsr`|Wz)Qh{4d5&gPP{#tz?W1{-@%*Fg7p$h<6EyIrJ9gT%~3M z&ACKf-L&YAvZo?T+`QB?Y^3!mFK;r4n6@gfUE2-hrYik|;)B4DGCUCyHPlXvhL!P{ zKY>Jvrnza>$JF+hGST@GV6!N*7EycUF=eiCn^z$)?iHEWs=LZuqdTJ=N$N;is(RRI K9?h`cw*3$1exMit delta 1706 zcmXZce@xV690%~v-F?6JMWA1Z0H)Ru(qU>(PVB$ZOsu)rLxUGU~}ry9(dpPpV#w!zR&hN-{<{# zo_D$=54$8sQY7hpsfO@1BEEpgdJjf=na>d={tP3HMBYTAoF$mM4SFj3UeV;-Br5%w z$e0YXE1-ER%smJF>3v@qV%@}j5@my1iJN_wNU;YdCc(7FP;(2WTcP$W)V&9DE<$@{ z+&7@>8uVyj!5DG>dWf=Lh0jMq#N8bsN3TB^ymP^n!0i6e7UJ1;1 zizAX?td97NexkG)s40SmVrX0st-GPS6o&Q^U;Qjmay?9w$2|rE9})jT7g6Xm@r~aR zWn71bHW+-J_@+^!m}UzSzG1_{#oBfdkrtX8*X_%vh?k{2f z0M$&fiPcrmcNY4iR5SenQRExZEL$$rmzJlMbW5sgGKsV*$zlIIk^Fb*Gky6)313Nf z3>LHBxetRb>0||4h5x+RA+yGYxxumtqFg=nyav4<7z)AgRam%@``pQD#W)JhKg3;v z78^GiH4{0ua5GJ8*7Th)<3*^Qhnd4LqKgl-i0H8OKhF)NW7o&G>VM{nh{QXJB+01wpF)%PaCOJ@ULxUCGs}EjtW_FCb&+tP jLTOD)5K8tpH?-7mYHmHyZ#9Z-dY#x + AWidget - + version @@ -21,12 +21,17 @@ О програму - + About О програму - + + Copy Info + + + + close Затвори @@ -479,7 +484,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Језик @@ -519,24 +524,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -572,24 +581,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -619,8 +640,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -724,7 +750,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar Кликните да промените аватар @@ -732,7 +758,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -740,7 +766,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -748,13 +774,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage Употреба протока - + Show Settings Прикажи подешавања @@ -809,7 +835,7 @@ p, li { white-space: pre-wrap; } Откажи - + Since: Од: @@ -819,6 +845,31 @@ p, li { white-space: pre-wrap; } Сакриј подешавања + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -882,7 +933,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -897,6 +948,49 @@ p, li { white-space: pre-wrap; } Образац + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -925,14 +1019,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -946,17 +1032,32 @@ p, li { white-space: pre-wrap; } - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -971,7 +1072,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 @@ -981,13 +1082,13 @@ p, li { white-space: pre-wrap; } - + Lobby chat - + Lobby management @@ -1019,7 +1120,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1034,12 +1135,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1085,7 +1186,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1124,18 +1225,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name Назив - + Count @@ -1156,23 +1257,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private Приватно @@ -1181,13 +1282,18 @@ p, li { white-space: pre-wrap; } Public Јавно + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1197,27 +1303,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1232,7 +1348,7 @@ p, li { white-space: pre-wrap; } Не - + Lobby Name: @@ -1251,6 +1367,11 @@ p, li { white-space: pre-wrap; } Type: + + + Security: + + Peers: @@ -1261,19 +1382,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1282,23 +1404,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1308,22 +1425,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1376,7 +1513,7 @@ Double click lobbies to enter and chat. Поништи - + Quick Message @@ -1385,12 +1522,37 @@ Double click lobbies to enter and chat. ChatPage - + General - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings @@ -1415,7 +1577,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1529,7 +1696,7 @@ Double click lobbies to enter and chat. - + Incoming @@ -1573,6 +1740,16 @@ Double click lobbies to enter and chat. System message + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1664,7 +1841,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1687,7 +1864,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat @@ -1736,17 +1913,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close Затвори - + Send - + Bold @@ -1761,12 +1938,12 @@ Double click lobbies to enter and chat. - + Attach a Picture - + Strike @@ -1817,12 +1994,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - + Do you really want to physically delete the history? @@ -1847,7 +2049,7 @@ Double click lobbies to enter and chat. - + appears to be Offline. @@ -1872,7 +2074,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -1894,7 +2096,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1909,12 +2111,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1924,7 +2126,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1935,7 +2137,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1970,12 +2172,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1985,7 +2187,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2143,7 +2345,12 @@ Double click lobbies to enter and chat. - + + Node info + + + + Peer Address @@ -2230,12 +2437,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2271,6 +2473,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2326,7 +2533,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2359,17 +2566,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2379,18 +2576,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2400,13 +2586,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2427,11 +2608,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2512,6 +2698,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2537,7 +2763,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2551,61 +2777,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: Назив: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: Место: - + - + Options Опције - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2625,7 +2892,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2681,12 +2948,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed - + Cannot get peer details of PGP key %1 @@ -2721,12 +2988,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation - + Ultimate @@ -2752,7 +3020,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2767,7 +3035,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2865,13 +3133,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2881,12 +3158,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2906,17 +3188,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2929,7 +3206,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2939,8 +3216,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2950,8 +3227,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2961,7 +3238,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2971,17 +3248,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3838,7 +4115,7 @@ p, li { white-space: pre-wrap; } - + Forum @@ -3848,7 +4125,7 @@ p, li { white-space: pre-wrap; } Наслов - + Attach File @@ -3878,12 +4155,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3921,12 +4198,12 @@ p, li { white-space: pre-wrap; } - + Send - + Forum Message @@ -3937,7 +4214,7 @@ Do you want to reject this message? - + Post as @@ -3972,7 +4249,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3986,7 +4263,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3996,12 +4288,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4160,7 +4462,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4182,7 +4489,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4280,7 +4587,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4310,7 +4617,7 @@ Do you want to reject this message? - + Name Назив @@ -4355,7 +4662,7 @@ Do you want to reject this message? - + Bucket @@ -4381,17 +4688,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4426,7 +4733,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4631,7 +4953,7 @@ Do you want to reject this message? - + RELAY END @@ -4665,19 +4987,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4687,13 +5014,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4763,12 +5092,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4901,7 +5251,7 @@ you plug it in. ExprParamElement - + to @@ -5006,7 +5356,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5181,7 +5531,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5257,89 +5607,39 @@ you plug it in. FriendList - - - Status - - - - - - + Last Contact - - - Avatar - - - - + Hide Offline Friends - - State + + export friendlist - Sort by State + export your friendlist including groups - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name - Назив - - - - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + + import friendlist - Set Root Decorated + import your friendlist including groups + + + + + + Show State @@ -5349,7 +5649,7 @@ you plug it in. - + Group @@ -5390,7 +5690,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5420,40 +5730,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5463,7 +5836,7 @@ you plug it in. - + Display @@ -5473,12 +5846,7 @@ you plug it in. - - Sort by - - - - + Node @@ -5488,17 +5856,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5546,30 +5914,35 @@ you plug it in. - - All + + Sort by state - None - ништа - - - Name Назив - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5663,12 +6036,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5679,12 +6057,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5697,7 +6070,7 @@ you plug it in. - + Name Назив @@ -5749,7 +6122,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5764,7 +6137,7 @@ anonymous, you can use a fake email. - + Port @@ -5808,28 +6181,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5851,7 +6219,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5876,12 +6244,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5897,12 +6270,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5919,7 +6297,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6029,7 +6412,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6037,12 +6425,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6058,21 +6446,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6222,23 +6595,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6252,8 +6620,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6262,35 +6642,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6299,7 +6657,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6392,82 +6765,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6647,7 +7042,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title @@ -6667,7 +7062,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6681,13 +7076,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6700,7 +7100,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6798,7 +7198,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6809,17 +7209,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels @@ -6834,13 +7239,29 @@ p, li { white-space: pre-wrap; } - + + Select channel download directory + + + + Disable Auto-Download - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7181,7 +7602,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download @@ -7201,7 +7622,7 @@ p, li { white-space: pre-wrap; } - + Feeds @@ -7211,7 +7632,7 @@ p, li { white-space: pre-wrap; } - + Subscribers @@ -7369,7 +7790,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7501,12 +7922,12 @@ before you can comment Образац - + Start new Thread for Selected Forum - + Search forums @@ -7527,7 +7948,7 @@ before you can comment - + Title @@ -7540,13 +7961,18 @@ before you can comment - + Author - - + + Save image + + + + + Loading @@ -7576,7 +8002,7 @@ before you can comment - + Search Title @@ -7601,17 +8027,27 @@ before you can comment - + No name - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7649,7 +8085,7 @@ before you can comment - + Hide Сакриј @@ -7659,7 +8095,38 @@ before you can comment Прошири - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7679,29 +8146,55 @@ before you can comment - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare Ретрошер - + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7726,7 +8219,7 @@ before you can comment - + Forum name @@ -7741,7 +8234,7 @@ before you can comment - + Description @@ -7751,12 +8244,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7772,7 +8265,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums @@ -7802,11 +8300,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7829,13 +8322,13 @@ before you can comment GxsGroupDialog - - + + Name Назив - + Add Icon @@ -7850,7 +8343,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7860,36 +8353,36 @@ before you can comment - - + + Description - + Message Distribution - + Public Јавно - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7919,7 +8412,7 @@ before you can comment - + PGP Required @@ -7935,12 +8428,12 @@ before you can comment - + Comments - + Allow Comments @@ -7950,33 +8443,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7986,12 +8519,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8064,7 +8597,7 @@ before you can comment - + Unsubscribe Одјави ме @@ -8074,12 +8607,12 @@ before you can comment Пријави ме - + Open in new tab - + Show Details @@ -8104,12 +8637,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8117,7 +8650,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8130,7 +8663,7 @@ before you can comment GxsIdDetails - + Loading @@ -8145,8 +8678,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8161,7 +8701,7 @@ before you can comment - + Identity&nbsp;name @@ -8176,7 +8716,7 @@ before you can comment - + [Unknown] @@ -8194,6 +8734,49 @@ before you can comment + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8389,28 +8972,7 @@ before you can comment О програму - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8457,7 +9019,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8499,7 +9082,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8534,78 +9117,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8644,37 +9237,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search Претражи - + Unknown real name @@ -8684,72 +9298,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8770,42 +9341,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8815,7 +9386,57 @@ p, li { white-space: pre-wrap; } - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8825,12 +9446,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8846,7 +9472,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8861,7 +9487,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8871,15 +9532,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8900,7 +9581,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8915,7 +9601,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8925,17 +9611,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8945,7 +9621,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8960,29 +9636,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8992,7 +9656,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9035,8 +9699,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9044,7 +9708,7 @@ p, li { white-space: pre-wrap; } - + @@ -9054,13 +9718,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9080,7 +9744,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9135,7 +9799,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9203,7 +9867,7 @@ p, li { white-space: pre-wrap; } - + Copy Умножи @@ -9233,16 +9897,35 @@ p, li { white-space: pre-wrap; } + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9252,7 +9935,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9301,7 +9984,7 @@ p, li { white-space: pre-wrap; } - + Options Опције @@ -9335,12 +10018,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9374,7 +10057,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9424,7 +10112,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9494,7 +10182,7 @@ p, li { white-space: pre-wrap; } - + Add Додај @@ -9519,7 +10207,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9528,38 +10216,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9640,7 +10307,7 @@ p, li { white-space: pre-wrap; } - + Subject: @@ -9651,12 +10318,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9666,7 +10343,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9736,7 +10413,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9761,47 +10438,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9827,12 +10479,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9843,7 +10495,7 @@ Do you want to save message to draft box? - + Add to "To" @@ -9863,12 +10515,7 @@ Do you want to save message to draft box? - - Friend Details - - - - + Original Message @@ -9878,19 +10525,21 @@ Do you want to save message to draft box? - + + To - + + Cc - + Sent @@ -9932,12 +10581,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown @@ -10047,7 +10697,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... @@ -10094,12 +10749,7 @@ Do you want to save message ? - - Show: - - - - + Close Затвори @@ -10109,32 +10759,57 @@ Do you want to save message ? - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10157,7 +10832,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10172,7 +10867,7 @@ Do you want to save message ? - + Tags @@ -10212,7 +10907,7 @@ Do you want to save message ? - + Edit Tag @@ -10222,22 +10917,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10518,7 +11203,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10585,24 +11270,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10614,14 +11299,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10690,7 +11375,7 @@ Do you want to save message ? - + Reply to All @@ -10708,12 +11393,12 @@ Do you want to save message ? - + From - + Date @@ -10741,12 +11426,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10801,7 +11486,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10866,14 +11556,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10893,7 +11583,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10902,18 +11597,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10923,15 +11618,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10954,7 +11644,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link @@ -10988,7 +11693,7 @@ Do you want to save message ? - + Expand Прошири @@ -11031,7 +11736,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11075,26 +11780,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11208,7 +11893,7 @@ Do you want to save message ? - + Deny friend @@ -11266,7 +11951,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11332,7 +12017,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11347,7 +12032,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11367,12 +12052,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11402,7 +12087,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11471,7 +12156,7 @@ Reported error: NewsFeed - + News Feed @@ -11490,18 +12175,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11510,6 +12190,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11653,7 +12338,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11677,11 +12367,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11731,7 +12416,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11771,7 +12456,7 @@ Reported error: - + Test @@ -11786,13 +12471,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11841,24 +12526,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11882,12 +12549,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11922,33 +12599,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11959,6 +12654,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -12013,7 +12713,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12187,12 +12887,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12544,7 +13244,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12605,18 +13305,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12625,27 +13325,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12655,22 +13364,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12678,13 +13372,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12754,12 +13449,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12769,12 +13469,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12855,7 +13550,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12879,11 +13579,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13138,7 +13833,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13482,7 +14177,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13492,7 +14188,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13519,7 +14215,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13685,7 +14386,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13705,7 +14406,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13736,7 +14437,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13770,11 +14471,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13789,7 +14485,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13839,7 +14535,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13849,7 +14545,7 @@ Reported error is: - + enabled @@ -13859,12 +14555,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13879,42 +14575,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13933,6 +14636,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13944,6 +14653,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13953,7 +14672,7 @@ Reported error is: - + <!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; } @@ -13975,21 +14694,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14056,13 +14777,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14080,7 +14802,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14105,7 +14827,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14204,7 +14946,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14240,7 +14982,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14271,7 +15013,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14293,7 +15035,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14402,7 +15144,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14427,7 +15169,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14763,7 +15505,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14780,7 +15522,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14825,17 +15567,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14863,33 +15605,10 @@ Reducing image to %1x%2 pixels? - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15070,12 +15789,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download @@ -15144,7 +15863,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15164,7 +15883,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15407,12 +16126,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15427,7 +16156,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15447,13 +16176,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address - + External Address @@ -15463,28 +16192,28 @@ Reducing image to %1x%2 pixels? - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15507,13 +16236,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15523,23 +16252,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15549,17 +16267,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15569,90 +16335,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status - - + + Origin - - + + Reason - - + + Comment Коментар - + IPs - + IP whitelist - + Manual input @@ -15677,12 +16448,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15705,32 +16582,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15760,99 +16638,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15885,7 +16684,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15900,13 +16699,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16170,7 +16969,7 @@ Select the Friends with which you want to Share your Channel. - + Copy retroshare Links to Clipboard @@ -16195,7 +16994,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16211,7 +17010,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16234,7 +17033,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16260,11 +17059,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16273,6 +17073,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16333,7 +17138,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16575,12 +17380,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16596,18 +17401,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16618,6 +17423,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16627,7 +17437,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16637,7 +17447,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16647,7 +17457,7 @@ This choice can be reverted in settings. - + UDP @@ -16661,13 +17471,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16876,7 +17696,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16925,7 +17745,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17058,16 +17878,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17263,25 +18085,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17306,7 +18128,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17332,39 +18159,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay У реду - - + + Waiting - + Downloading - + Complete - + Queued @@ -17398,7 +18225,7 @@ Try to be patient! - + Transferring @@ -17408,7 +18235,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17466,7 +18293,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17572,7 +18399,7 @@ Try to be patient! - + Columns @@ -17582,7 +18409,7 @@ Try to be patient! - + Path i.e: Where file is saved Путања @@ -17598,12 +18425,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17613,7 +18435,7 @@ Try to be patient! - + Create Collection... @@ -17628,7 +18450,7 @@ Try to be patient! - + Collection @@ -17638,17 +18460,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17684,7 +18506,7 @@ Try to be patient! - + Friends Directories @@ -17727,7 +18549,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17790,7 +18612,7 @@ Try to be patient! - + Age in seconds @@ -17805,7 +18627,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17814,16 +18646,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18022,10 +18849,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18036,11 +18873,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18230,7 +19062,7 @@ Try to be patient! Претражи - + My Groups @@ -18250,7 +19082,7 @@ Try to be patient! - + Subscribe to Group diff --git a/retroshare-gui/src/lang/retroshare_sv.qm b/retroshare-gui/src/lang/retroshare_sv.qm index 565cf493a958d810c2f512d2d584771e0b15b72a..e357b876e421e8a80b618c6dfe9f037ed70c83a4 100644 GIT binary patch delta 28982 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 VtP2Go8^-4^vLp0Em)MVN{|B%)%nbkl delta 35529 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%0D+KY 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 R)NASXZ!PtH8uY(d^#9uGMb!WR diff --git a/retroshare-gui/src/lang/retroshare_sv.ts b/retroshare-gui/src/lang/retroshare_sv.ts index 21525e8a6..29720a4b3 100644 --- a/retroshare-gui/src/lang/retroshare_sv.ts +++ b/retroshare-gui/src/lang/retroshare_sv.ts @@ -1,15 +1,15 @@ - + AWidget - + version version RetroShare version - + RetroShare-version @@ -21,12 +21,17 @@ Om RetroShare - + About Om - + + Copy Info + Kopiera info + + + close Stäng @@ -494,7 +499,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Språk @@ -534,24 +539,28 @@ p, li { white-space: pre-wrap; } Verktygsfält - - + + On Tool Bar På verktygsfältet - - + On List Item - + Where do you want to have the buttons for menu? Var vill du ha knapparna för menyn? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? Var vill du ha knapparna för sidan? @@ -587,24 +596,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 Ikonstorlek = 8x8 - - + + Icon Size = 16x16 Ikonstorlek = 16x16 - - + + Icon Size = 24x24 Ikonstorlek = 24x24 - + + + Icon Size = 64x64 + Ikonstorlek = 64x64 + + + + + Icon Size = 128x128 + Ikonstorlek = 128x128 + + + Status Bar Statusfält @@ -634,8 +655,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 Ikonstorlek = 32x32 @@ -740,7 +766,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot AvatarWidget - + Click to change your avatar Klicka för att ändra din profilbild @@ -748,7 +774,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot BWGraphSource - + KB/s KB/s @@ -756,7 +782,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot BWListDelegate - + N/A N/A @@ -764,13 +790,13 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot BandwidthGraph - + RetroShare Bandwidth Usage RetroShare bandbreddsanvändning - + Show Settings Visa inställningar @@ -825,7 +851,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Avbryt - + Since: Sedan: @@ -835,6 +861,31 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Dölj inställningar + + BandwidthStatsWidget + + + + Sum + + + + + + All + Alla + + + + KB/s + KB/s + + + + Count + + + BwCtrlWindow @@ -898,7 +949,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Tillåtet mottaget - + TOTALS @@ -913,6 +964,49 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Formulär + + BwStatsWidget + + + Form + + + + + Friend: + Vän: + + + + Type: + Typ: + + + + Up + Upp + + + + Down + Ner + + + + Service: + Tjänst: + + + + Unit: + Enhet: + + + + Log scale + + + ChannelPage @@ -941,14 +1035,6 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Öppna varje kanal i en ny flik - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -962,17 +1048,32 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Byt användarnamn - + Mute participant Blockera användare - + + Send Message + Skicka meddelande + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Bjud in kontakter till denna lobby - + Leave this lobby (Unsubscribe) Lämna denna lobby (avsluta prenumeration) @@ -987,7 +1088,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Välj kontakter att bjuda in: - + Welcome to lobby %1 Välkommen till %1 @@ -997,13 +1098,13 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Ämne: %1 - + Lobby chat Lobbychatt - + Lobby management @@ -1035,7 +1136,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Vill du avsluta prenumerationen på den här chattlobbyn? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Högerklicka för att tysta chatdeltagare<br/>Dubbelklicka för att adressera chatdeltagare<br/> @@ -1050,12 +1151,12 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot sekunder - + Start private chat - + Starta privat chatt - + Decryption failed. @@ -1067,17 +1168,17 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Unknown key - + Okänd nyckel Unknown hash - + Okänd hash Unknown error. - + Okänt fel @@ -1101,7 +1202,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot ChatLobbyUserNotify - + Chat Lobbies Chatlobbyer @@ -1128,7 +1229,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Unknown Lobby - + Okänd lobby @@ -1140,18 +1241,18 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot ChatLobbyWidget - + Chat lobbies Chattlobbys - - + + Name Namn - + Count Antal @@ -1172,23 +1273,23 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot - + Create chat lobby Skapa ny chattlobby - + [No topic provided] [Ämne saknas] - + Selected lobby info Vald lobbyinformation - + Private Privat @@ -1197,13 +1298,18 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Public Publik + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. Du prenumererar inte på denna lobby. Dubbelklicka för att ansluta och chatta. - + Remove Auto Subscribe Avsluta Prenumeration @@ -1213,27 +1319,37 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Prenumerera - + %1 invites you to chat lobby named %2 %1 bjuder in dig till chattlobbyn %2 - + Search Chat lobbies Sök Chat Lobbyn - + Search Name Sök namn - + Subscribed Prenumererat - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns Kolumner @@ -1248,7 +1364,7 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Nej - + Lobby Name: Lobbynamn: @@ -1267,6 +1383,11 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot Type: Typ: + + + Security: + Säkerhet: + Peers: @@ -1277,12 +1398,13 @@ Kom bara ihåg... all data här, *KOMMER* att förloras när vi uppgraderar prot + TextLabel Textetikett - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1293,7 +1415,7 @@ Välj lobbyer till vänster, för att visa info. Dubbelklicka lobbyer för att chatta. - + Private Subscribed Lobbies @@ -1302,23 +1424,18 @@ Dubbelklicka lobbyer för att chatta. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies Chatlobbyer - + Leave this lobby - + Lämna denna lobby - + Enter this lobby @@ -1328,33 +1445,53 @@ Dubbelklicka lobbyer för att chatta. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + Inga anonyma ID + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Välj en identitet för denna lobby: - + Create an identity and enter this lobby - + Show - + Visa column - + kolumn @@ -1396,7 +1533,7 @@ Dubbelklicka lobbyer för att chatta. Avbryt - + Quick Message Snabbmeddelande @@ -1405,12 +1542,37 @@ Dubbelklicka lobbyer för att chatta. ChatPage - + General Allmänt - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Chattinställningar @@ -1435,7 +1597,12 @@ Dubbelklicka lobbyer för att chatta. Aktivera anpassad teckenstorlek - + + Minimum font size + + + + Enable bold Aktivera fet stil @@ -1549,7 +1716,7 @@ Dubbelklicka lobbyer för att chatta. Privatchatt - + Incoming Inkommande @@ -1593,6 +1760,16 @@ Dubbelklicka lobbyer för att chatta. System message Systemmeddelande + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1684,30 +1861,30 @@ Dubbelklicka lobbyer för att chatta. - + Private chat invite from Name : - + Namn : PGP id : - + PGP-id : Valid until : - + Giltig till : ChatStyle - + Standard style for group chat Standardstil för gruppchatt @@ -1756,17 +1933,17 @@ Dubbelklicka lobbyer för att chatta. ChatWidget - + Close Stäng - + Send Skicka - + Bold Fet @@ -1781,12 +1958,12 @@ Dubbelklicka lobbyer för att chatta. Kursiv - + Attach a Picture Bifoga en bild - + Strike Strike @@ -1837,12 +2014,37 @@ Dubbelklicka lobbyer för att chatta. Återställ standardteckensnitt - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... skriver... - + Do you really want to physically delete the history? Vill du verkligen ta bort historiken? @@ -1867,7 +2069,7 @@ Dubbelklicka lobbyer för att chatta. Textfil (*.txt );;Alla filer (*) - + appears to be Offline. verkar vara nedkopplad @@ -1892,7 +2094,7 @@ Dubbelklicka lobbyer för att chatta. är upptagen och kanske inte svarar. - + Find Case Sensitively @@ -1914,7 +2116,7 @@ Dubbelklicka lobbyer för att chatta. Sluta inte att färga efter X hittade (använder mer CPU) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1929,12 +2131,12 @@ Dubbelklicka lobbyer för att chatta. - + (Status) (Status) - + Set text font & color Ange teckensnitt & färg @@ -1944,7 +2146,7 @@ Dubbelklicka lobbyer för att chatta. Bifoga en fil - + WARNING: Could take a long time on big history. VARNING: Kan ta lång tid på en stor historik. @@ -1955,7 +2157,7 @@ Dubbelklicka lobbyer för att chatta. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1990,12 +2192,12 @@ Dubbelklicka lobbyer för att chatta. Sökruta - + Type a message here Skriv ett meddelande här - + Don't stop to color after @@ -2005,9 +2207,9 @@ Dubbelklicka lobbyer för att chatta. - + Warning: - + Varning: @@ -2163,7 +2365,12 @@ Dubbelklicka lobbyer för att chatta. Detaljer - + + Node info + Nodinfo + + + Peer Address Användaradress @@ -2250,19 +2457,14 @@ Dubbelklicka lobbyer för att chatta. - - Location info - - - - + Node name : - + Nodnamn : Status : - + Status : @@ -2277,20 +2479,25 @@ Dubbelklicka lobbyer för att chatta. Node ID : - + Nod-ID : PGP key : - + PGP-nyckel : Retroshare Certificate - + Retroshare-certifikat + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2346,7 +2553,7 @@ Dubbelklicka lobbyer för att chatta. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2358,7 +2565,7 @@ Dubbelklicka lobbyer för att chatta. with - + med @@ -2379,17 +2586,7 @@ Dubbelklicka lobbyer för att chatta. Lägg till en ny kontakt - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Guiden hjälper dig att ansluta till dina kontakter via RetroShare nätverk.<br>Dessa anslutningsmöjligheter stöds: - - - - &Enter the certificate manually - &Ange certifikatet manuellt - - - + &You get a certificate file from your friend &Du får en certifikatfil från en kontakt @@ -2399,19 +2596,7 @@ Dubbelklicka lobbyer för att chatta. &Skapa kontakt med en utvald kontakt till en befintlig kontakt - - &Enter RetroShare ID manually - Ange &RetroShare-ID manuellt - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Skicka inbjudan via e-post -(Kontakten får ett e-postmeddelande med instruktioner om hur RetroShare laddas ner) - - - + Text certificate Textcertifikat @@ -2421,13 +2606,8 @@ Dubbelklicka lobbyer för att chatta. Använd textpresentationen av ett PGP-certifikat - - The text below is your PGP certificate. You have to provide it to your friend - Nedanstående text är ditt PGP-certifikat. Du måste skicka det till din kontakt. - - - - + + Include signatures Inkludera signaturer @@ -2448,11 +2628,16 @@ Dubbelklicka lobbyer för att chatta. - Please, paste your friends PGP certificate into the box below - Klistra in din kontakts PGP-certifikat i textrutan nedan. + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files Certifikatfiler @@ -2533,6 +2718,46 @@ Dubbelklicka lobbyer för att chatta. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + GMail + + + + Yahoo + Yahoo + + + + Outlook + Outlook + + + + AOL + AOL + + + + Yandex + Yandex + + + + Email + + + + Invite Friends by Email Bjud in kontakter via e-post @@ -2558,7 +2783,7 @@ Dubbelklicka lobbyer för att chatta. - + Friend request Kontaktförfrågan @@ -2572,61 +2797,102 @@ Dubbelklicka lobbyer för att chatta. - + Peer details Användarinformation - - + + Name: Namn: - - + + Email: E-post: - - + + Node: + Nod: + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: Plats: - + - + Options Alternativ - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: Lägg till kontakt till grupp: - - + + Authenticate friend (Sign PGP Key) Autentisera kontakt (Signera PGP-nyckel) - - + + Add as friend to connect with Lägg till en kontakt att ansluta till - - + + To accept the Friend Request, click the Finish button. Klicka på 'Slutför' för att acceptera denna kontaktförfrågan - + Sorry, some error appeared Något fel uppstod @@ -2646,7 +2912,7 @@ Dubbelklicka lobbyer för att chatta. Fakta om din kontakt: - + Key validity: Nyckelvaliditet: @@ -2702,12 +2968,12 @@ Dubbelklicka lobbyer för att chatta. - + Certificate Load Failed Certifikatinläsning misslyckades - + Cannot get peer details of PGP key %1 Kan inte hämta användarinformation för PGP-nyckel %1 @@ -2742,12 +3008,13 @@ Dubbelklicka lobbyer för att chatta. Användar-ID - + + RetroShare Invitation RetroShare-inbjudan - + Ultimate Förbehållslöst @@ -2773,7 +3040,7 @@ Dubbelklicka lobbyer för att chatta. - + You have a friend request from Du har en kontaktförfrågan från @@ -2788,7 +3055,7 @@ Dubbelklicka lobbyer för att chatta. %1 finns inte tillgänglig i ditt nätverk - + Use new certificate format (safer, more robust) Använd nytt certifikatformat (säkrare, mer robust) @@ -2886,13 +3153,22 @@ Dubbelklicka lobbyer för att chatta. *** Ingen *** - + Use as direct source, when available Använd som direkt källa, om tillgänglig - - + + IP-Addr: + + + + + IP-Address + IP-adress + + + Recommend many friends to each others Rekommendera många användare åt varandra @@ -2902,12 +3178,17 @@ Dubbelklicka lobbyer för att chatta. Kontaktrekommendationer - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: Meddelande: - + Recommend friends Rekommendera kontakter @@ -2927,17 +3208,12 @@ Dubbelklicka lobbyer för att chatta. Välj minst en kontakt som mottagare. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Vänligen notera att RetroShare kommer att kräva stora mängder bandbredd, minne och CPU om du lägger till för många kontakter. Du kan lägga till så många kontaker du vill, men fler än 40 kommer förmodligen att kräva för mycket resurser. - - - + Add key to keyring Lägg till nyckel till nyckelring - + This key is already in your keyring Den här nyckeln finns redan i din nyckelring @@ -2950,7 +3226,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. Certifikatet har fel versionsnummer. Kom ihåg att v0.6 och v0.5-nätverk inte är kompatibla med varandra. @@ -2960,8 +3236,8 @@ even if you don't make friends. Ogiltigt node-id. - - + + Auto-download recommended files @@ -2971,8 +3247,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2982,7 +3258,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2992,17 +3268,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3873,7 +4149,7 @@ p, li { white-space: pre-wrap; } Posta foruminlägg - + Forum Forum @@ -3883,7 +4159,7 @@ p, li { white-space: pre-wrap; } Ämne - + Attach File Bifoga fil @@ -3913,12 +4189,12 @@ p, li { white-space: pre-wrap; } Starta ny tråd - + No Forum Inga forum - + In Reply to Som svar på @@ -3956,12 +4232,12 @@ p, li { white-space: pre-wrap; } Vill du verkligen generera %1 meddelanden? - + Send Skicka - + Forum Message Foruminlägg @@ -3973,9 +4249,9 @@ Do you want to reject this message? Vill du kasta det här meddelandet? - + Post as - + Posta som @@ -4008,8 +4284,8 @@ Vill du kasta det här meddelandet? - Security policy: - Säkerhetspolicy: + Visibility: + Synlighet: @@ -4022,7 +4298,22 @@ Vill du kasta det här meddelandet? Privat (Fungerar endast vid inbjudan) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + Säkerhet: + + + Select the Friends with which you want to group chat. Välj de kontakter du vill gruppchatta med. @@ -4032,14 +4323,24 @@ Vill du kasta det här meddelandet? Inbjudna kontakter - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: Kontakter: - + Identity to use: - + Identitet att använda: @@ -4152,7 +4453,7 @@ Vill du kasta det här meddelandet? Friend nodes: - + Vännoder: @@ -4177,7 +4478,7 @@ Vill du kasta det här meddelandet? show statistics window - + visa statistikfönster @@ -4196,7 +4497,12 @@ Vill du kasta det här meddelandet? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT inaktiverad @@ -4218,8 +4524,8 @@ Vill du kasta det här meddelandet? - DHT Error - DHT-fel + No peer found in DHT + @@ -4316,7 +4622,7 @@ Vill du kasta det här meddelandet? DhtWindow - + Net Status Nätverksstatus @@ -4346,7 +4652,7 @@ Vill du kasta det här meddelandet? Användaradress - + Name Namn @@ -4391,7 +4697,7 @@ Vill du kasta det här meddelandet? RSLD - + Bucket Bucket @@ -4417,17 +4723,17 @@ Vill du kasta det här meddelandet? - + Last Sent Senast skickade - + Last Recv Senast mottagna - + Relay Mode Stafettläge @@ -4462,7 +4768,22 @@ Vill du kasta det här meddelandet? Bandbredd - + + IP + IP + + + + Search IP + Sök IP + + + + Copy %1 to clipboard + + + + Unknown NetState Okänd Nätverksstatus @@ -4667,7 +4988,7 @@ Vill du kasta det här meddelandet? Okänt - + RELAY END RELÄ SLUT @@ -4701,19 +5022,24 @@ Vill du kasta det här meddelandet? - + %1 secs ago %1 sek. sedan - + %1B/s %1 B/s - + + Relays + + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4723,13 +5049,15 @@ Vill du kasta det här meddelandet? aldrig - + + + DHT DHT - + Net Status: Nätverksstatus: @@ -4786,7 +5114,7 @@ Vill du kasta det här meddelandet? Direct: - + Direkt: @@ -4799,12 +5127,33 @@ Vill du kasta det här meddelandet? - + + Filter: + Filter: + + + + Search Network + Sök nätverk + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4937,7 +5286,7 @@ you plug it in. ExprParamElement - + to @@ -5042,7 +5391,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map Segmentkarta @@ -5217,7 +5566,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories Kontakters mappar @@ -5293,90 +5642,40 @@ you plug it in. FriendList - - - Status - Status - - - - - + Last Contact Senaste kontakt - - - Avatar - Profilbild - - - + Hide Offline Friends Dölj nedkopplade kontakter - - State - Status + + export friendlist + exportera vänlista - Sort by State - Sortera efter status + export your friendlist including groups + exportera din vänlista inklusive grupper - - Hide State - Dölj status - - - - - Sort Descending Order - Sortera i fallande ordning - - - - - Sort Ascending Order - Sortera i stigande ordning - - - - Show Avatar Column - Visa profilbildskolumn - - - - Name - Namn + + import friendlist + importera vänlista - Sort by Name - Sortera efter namn - - - - Sort by last contact - Sortera efter senaste kontakt - - - - Show Last Contact Column - Visa kolumn med senaste kontakt - - - - Set root is Decorated - Visa anslutningsinformation + import your friendlist including groups + importera din vänlista inklusive grupper + - Set Root Decorated - Visa anslutningsinformation + Show State + Visa stadie @@ -5385,7 +5684,7 @@ you plug it in. Visa grupper - + Group Grupp @@ -5426,7 +5725,17 @@ you plug it in. Lägg till i grupp - + + Search + Sök + + + + Sort by state + Sortera efter stadie + + + Move to group Flytta till grupp @@ -5456,40 +5765,103 @@ you plug it in. Fäll ihop alla - - + Available Tillgänglig - + Do you want to remove this Friend? Vill du ta bort den här kontakten? - - Columns - Kolumner + + + Done! + Färdig! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + Fel + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP IP - - Sort by IP - Sortera enligt IP - - - - Show IP Column - Visa IP kolumn - - - + Attempt to connect Anslutningsförsök @@ -5499,7 +5871,7 @@ you plug it in. Skapa ny grupp - + Display Visa @@ -5509,12 +5881,7 @@ you plug it in. Klistra in certifikatlänk - - Sort by - Sortera enligt - - - + Node Nod @@ -5524,17 +5891,17 @@ you plug it in. Ta bort kontaktnod - + Do you want to remove this node? Vill du ta bort denna nod? - + Friend nodes - + Send message to whole group @@ -5553,7 +5920,7 @@ you plug it in. Send message - + Skicka meddelande @@ -5582,30 +5949,35 @@ you plug it in. Sök: - - All - Alla + + Sort by state + Sortera efter stadie - None - Ingen - - - Name Namn - + Search Friends Sök kontakter + + + Mark all + Markera alla + + + + Mark none + Markera ingen + FriendsDialog - + Edit status message Redigera statusmeddelande @@ -5699,12 +6071,17 @@ you plug it in. Nyckelring - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. Retroshare utsändningschat: meddelanden skickas till alla anslutna vänner. - + Network Nätverk @@ -5715,12 +6092,7 @@ you plug it in. Nätverksgraf - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. Ange ditt statusmeddelande här. @@ -5733,7 +6105,7 @@ you plug it in. Skapa ny profil - + Name Namn @@ -5785,7 +6157,7 @@ anonymous, you can use a fake email. Lösenord (kontroll) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/><body><p align="justify">Innan du går vidare, rör runt muspekaren för att hjälpa Retroshare att få så mycket slumpmässighet som möjligt. Att fylla förloppsindikatorn till 20% krävs, 100% är rekommenderat.</p></body></html> @@ -5800,7 +6172,7 @@ anonymous, you can use a fake email. Lösenorden stämmer inte överens - + Port Port @@ -5844,28 +6216,23 @@ anonymous, you can use a fake email. Ogiltig gömd nod - - Please enter a valid address of the form: 31769173498.onion:7800 - Vänligen ange en giltig adress med formatet: 31769173498.onion:7800 - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5887,37 +6254,42 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile - + Skapa en ny profil Import new profile - + Importera ny profil Export selected profile - + Exportera markerad profil Advanced options - + Avancerade alternativ Create a hidden node - + Skapa en gömd nod - + Use profile - + Använd profil - + + hidden address + gömd adress + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5933,16 +6305,21 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile - + Skapa ny profil @@ -5955,7 +6332,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6007,7 +6389,7 @@ Alternatively you can import a (previously exported) profile. Just uncheck " Export profile - + Exportera profil @@ -6018,7 +6400,7 @@ Alternatively you can import a (previously exported) profile. Just uncheck " Profile saved - + Profil sparad @@ -6042,7 +6424,7 @@ and use the import button to load it Import profile - + Importera profil @@ -6065,7 +6447,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6073,12 +6460,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6094,21 +6481,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6267,29 +6639,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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"> -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;">När du fått en inbjudan från någon av dina kontakter, Klicka på 'Lägg till kontakt' för att öppna dialogrutan.</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;">Kopiera och klistra in kontaktens ID-certificat i det öppna fönstret, och lägg till som kontakt.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + - - Connect To Friends - Anslut till kontakter - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6300,26 +6661,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-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-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-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"> -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;">Är ni online samtidigt, kommer RetroShare att koppla ihop er automatiskt!</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;">Din klient måste hitta RetroShare-nätverket innan den kan öppna anslutningar.</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;">Detta kan ta 5-30 minuter, första gången du startar upp 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;">DHT-indikatorn (i statusfältet) blir grön när den är redo att koppla upp anslutningar.</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;">Efter några minuter, blir NAT-indikatorn (också i statusfältet) gul eller grön.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Om den fortsätter att vara röd har du en svårforcerad brandvägg, som RetroShare kämpar för att ta sig igenom.</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;">Titta i 'Mer hjälp och support' för ytterligare råd om att ansluta.</span></p></body></html> + - - Advanced: Open Firewall Port - Avancerat: Öppna brandväggsport + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6327,71 +6686,37 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;">Du kan förbättra RetroShares prestanda genom att öppna en extern 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;">Det kommer att förbättra uppkopplingen och låta fler människor ansluta till dig </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;">Enklaste sättet att göra detta är att aktivera UPnP på ditt trådlösa modem eller 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;">Eftersom alla modem-/router-modeller är olika, måste du ta reda på vilken modell du har, och Googla efter instruktioner.</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;">Om detta verkar för svårt, kan du glömma det. Retroshare kommer att fungera ändå.</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> - - - - Further Help and Support - Mer hjälp och 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-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-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-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"> -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;">Har du problem att komma igång med 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) Ta en titt i FAQ Wiki. Den är aningen gammal men vi försöker uppdatera den.</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) Surfa in på vårt Online-forum. Fråga om problem och diskutera funktioner.</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) Testa ett Internt RetroShare Forum </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;"> - Dessa kan anslutas online, när du väl är ansluten till kontakter.</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) Sitter du fortfarande fast. Skicka e-post till oss!</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;">Ha så kul med RetroShare!</span></p></body></html> + - + + Connect To Friends + Anslut till kontakter + + + + Advanced: Open Firewall Port + Avancerat: Öppna brandväggsport + + + + Further Help and Support + Mer hjälp och support + + + Open RS Website RetroShare Hemsida @@ -6484,82 +6809,104 @@ p, li { white-space: pre-wrap; } Router-statistik - + + GroupBox + + + + + ID + ID + + + + Identity Name + + + + + Destinaton + Destination + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + Skicka + + + + Branching factor + + + + + Details + + + + Unknown Peer Okänd användare + + + Pending packets + + + + + Unknown + Okänt + GlobalRouterStatisticsWidget - - Pending packets - Väntande paket - - - + Managed keys Hanterade nycklar - + Routing matrix ( - - Id - ID - - - - Destination - Mål - - - - Data status + + [Unknown identity] - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - Skicka - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Klicka och dra runt noderna, zooma med mushjulet eller +/- tangenterna - - GroupChatToaster @@ -6739,7 +7086,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Titel @@ -6759,7 +7106,7 @@ p, li { white-space: pre-wrap; } Sök beskrivning - + Sort by Name Sortera efter namn @@ -6773,13 +7120,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post Sortera efter senaste inlägg + + + Sort by Posts + + Display Visa - + You have admin rights @@ -6792,7 +7144,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and och @@ -6890,7 +7242,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanaler @@ -6901,17 +7253,22 @@ p, li { white-space: pre-wrap; } Skapa kanal - + Enable Auto-Download Aktivera automatisk nedladdning - + My Channels Mina kanaler - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels Kanalabonnemang @@ -6926,13 +7283,29 @@ p, li { white-space: pre-wrap; } Andra kanaler - + + Select channel download directory + + + + Disable Auto-Download Inaktivera automatisk nedladdning - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7273,7 +7646,7 @@ p, li { white-space: pre-wrap; } Inga kanaler markerade - + Disable Auto-Download Inaktivera automatisk nedladdning @@ -7293,7 +7666,7 @@ p, li { white-space: pre-wrap; } Visa filer - + Feeds Flöden @@ -7303,7 +7676,7 @@ p, li { white-space: pre-wrap; } Filer - + Subscribers @@ -7466,7 +7839,7 @@ innan du kan kommentera GxsForumGroupDialog - + Create New Forum Skapa nytt forum @@ -7598,12 +7971,12 @@ innan du kan kommentera Formulär - + Start new Thread for Selected Forum Starta ny tråd i aktuellt forum - + Search forums Sök i forum @@ -7624,7 +7997,7 @@ innan du kan kommentera - + Title Rubrik @@ -7637,13 +8010,18 @@ innan du kan kommentera - + Author Författare - - + + Save image + + + + + Loading Läser in @@ -7673,7 +8051,7 @@ innan du kan kommentera Nästa olästa - + Search Title Sök titel @@ -7698,17 +8076,27 @@ innan du kan kommentera Sökinnehåll - + No name Inget namn - + Reply Svara + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread Starta ny tråd @@ -7746,7 +8134,7 @@ innan du kan kommentera Kopiera RetroShare-länk - + Hide Dölj @@ -7756,7 +8144,38 @@ innan du kan kommentera Expandera - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous Anonym @@ -7776,29 +8195,55 @@ innan du kan kommentera [ ... Meddelande saknas ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Inget forum valt - + + + You cant reply to a non-existant Message Du kan inte svara på ett meddelande som inte finns + You cant reply to an Anonymous Author Du kan inte svara en anonym upphovsman - + Original Message Originalmeddelande @@ -7823,7 +8268,7 @@ innan du kan kommentera I %1, skrev %2: - + Forum name Forumnamn @@ -7838,7 +8283,7 @@ innan du kan kommentera - + Description Beskrivning @@ -7848,12 +8293,12 @@ innan du kan kommentera - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7869,7 +8314,12 @@ innan du kan kommentera GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums Forum @@ -7899,11 +8349,6 @@ innan du kan kommentera Other Forums Andra forum - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7926,13 +8371,13 @@ innan du kan kommentera GxsGroupDialog - - + + Name Namn - + Add Icon Lägg till ikon @@ -7947,7 +8392,7 @@ innan du kan kommentera Dela publiceringsnyckel - + check peers you would like to share private publish key with Markera de användare du vill dela privat publiceringsnyckel med. @@ -7957,36 +8402,36 @@ innan du kan kommentera Dela nyckel med - - + + Description Beskrivning - + Message Distribution Meddelandedistribution - + Public Publik - - + + Restricted to Group Begränsad till grupp - - + + Only For Your Friends Endast för dina kontakter - + Publish Signatures Publicera signaturer @@ -8016,7 +8461,7 @@ innan du kan kommentera Personliga signaturer - + PGP Required PGP krävs @@ -8032,12 +8477,12 @@ innan du kan kommentera - + Comments Kommentarer - + Allow Comments Tillåt kommentarer @@ -8047,33 +8492,73 @@ innan du kan kommentera Inga kommentarer - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Kontakter: - + Please add a Name Lägg till ett namn - + Load Group Logo Läs in grupplogotyp - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback Kommer att användas för att skicka feedback @@ -8083,12 +8568,12 @@ innan du kan kommentera Ägare: - + Set a descriptive description here - + Info Information @@ -8161,7 +8646,7 @@ innan du kan kommentera Förhandsgranskning - + Unsubscribe Avsluta prenumerationen @@ -8171,12 +8656,12 @@ innan du kan kommentera Prenumerera - + Open in new tab Öppna i ny flik - + Show Details Visa detaljer @@ -8201,12 +8686,12 @@ innan du kan kommentera Markera alla som olästa - + AUTHD AUTHD - + Share admin permissions @@ -8214,7 +8699,7 @@ innan du kan kommentera GxsIdChooser - + No Signature Ingen signatur @@ -8227,7 +8712,7 @@ innan du kan kommentera GxsIdDetails - + Loading Läser in @@ -8242,8 +8727,15 @@ innan du kan kommentera Ingen signatur - + + + + [Banned] + + + + Authentication @@ -8258,7 +8750,7 @@ innan du kan kommentera - + Identity&nbsp;name @@ -8273,7 +8765,7 @@ innan du kan kommentera - + [Unknown] @@ -8291,6 +8783,49 @@ innan du kan kommentera Inget namn + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8486,44 +9021,7 @@ innan du kan kommentera Om - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare är Öppen källkod och plattformsoberoende. </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-weight:600;">Privat och säker decentraliserad kommunikationsplattform. </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-weight:600;">Den låter dig fildela säkert med dina vänner, </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-weight:600;">genom web-of-trust för autentiserad anslutning och OpenSSL för krypterad kommunikation. </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-weight:600;">RetroShare tillhandahåller fildelning, chatt, meddelanden och kanaler</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-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; font-weight:600;">Användbara länkar till mer information:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshares webbsida</span></a></li> -<li style=" font-size:12pt; 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">Retroshares Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShares Forum</a></li> -<li style=" font-size:12pt; 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">Retroshares Projektsida</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> - - - + Authors Upphovsmän @@ -8587,10 +9085,31 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Polska: </span>Maciej Mrug</p></body></html> - - Libraries + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + Libraries + Bibliotek + HelpTextBrowser @@ -8629,7 +9148,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8661,81 +9180,91 @@ p, li { white-space: pre-wrap; } Identity ID : + Identitets-ID : + + + + Last used: - + Your Avatar Click here to change your avatar - + Din avatar - + Reputation Anseende - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - Åsikt - - - - Peers - Användare - - - - Edit Reputation - Redigera rykte - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) - Positiv (+10) - - - - Negative (-10) - Negativ (-10) - - - - Ban (-100) + Neighbor nodes: + + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> + + + + + Negative + Negativ + - Custom - Anpassad + Neutral + Neutral - - Modify - Redigera + + Positive + Positiv - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name Okänt riktigt namn @@ -8774,37 +9303,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + OK + + + + Banned + + IdDialog - + New ID Nytt ID - + + All Alla - + + Reputation Rykte - - - Todo - Att göra - - Search Sök - + Unknown real name Okänt riktigt namn @@ -8814,80 +9364,37 @@ p, li { white-space: pre-wrap; } Anonymt Id - + Create new Identity Skapa ny identitet - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - Åsikt - - - - Peers - Användare - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - Positiv (+10) - - - - Negative (-10) - Negativ (-10) - - - - Ban (-100) - - - - - Custom - Anpassad - - - - Modify - Redigera - - - + Edit identity - + Redigera identitet Delete identity - + Ta bort identitet @@ -8900,42 +9407,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Identitets-ID - + Send message - + Skicka meddelande - + Identity info - + Identitetsinfo - + Identity ID : - + Identitets-ID : - + Owner node name : @@ -8945,7 +9452,57 @@ p, li { white-space: pre-wrap; } Typ: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + Negativ + + + + Neutral + Neutral + + + + Positive + Positiv + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8955,12 +9512,17 @@ p, li { white-space: pre-wrap; } Anonym - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8976,7 +9538,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8991,28 +9553,83 @@ p, li { white-space: pre-wrap; } - + + OK + OK + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work Error code + Felkod + + + + Hi,<br>I want to be friends with you on RetroShare.<br> - - - + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar - + Din avatar @@ -9030,7 +9647,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -9045,7 +9667,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -9055,17 +9677,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - Kolumner - - - + Distant chat refused with this person. @@ -9075,7 +9687,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -9090,39 +9702,27 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - + Ägd av - - - Show - - - - - - column - - - - + Node name: - + Nodnamn: Node Id : - + Nod-ID : - + Really delete? @@ -9165,8 +9765,8 @@ p, li { white-space: pre-wrap; } Ny identitet - - + + To be generated Att bli genererad @@ -9174,7 +9774,7 @@ p, li { white-space: pre-wrap; } - + @@ -9184,13 +9784,13 @@ p, li { white-space: pre-wrap; } N/A - + Edit identity Editera identitet - + Error getting key! Ett fel uppstod vid hämtning av nyckeln! @@ -9210,7 +9810,7 @@ p, li { white-space: pre-wrap; } Okänt riktigt namn - + Create New Identity Skapa ny Identitet @@ -9247,7 +9847,7 @@ p, li { white-space: pre-wrap; } Your Avatar Click here to change your avatar - + Din avatar @@ -9265,7 +9865,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9302,25 +9902,25 @@ p, li { white-space: pre-wrap; } GXS name: - + GXS-namn: PGP name: - + PGP-namn: GXS id: - + GXS-id: PGP id: - + PGP-id: @@ -9333,7 +9933,7 @@ p, li { white-space: pre-wrap; } - + Copy Kopiera @@ -9363,16 +9963,35 @@ p, li { white-space: pre-wrap; } Skicka + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Öppna fil - + Open Folder Öppna mapp @@ -9382,7 +10001,7 @@ p, li { white-space: pre-wrap; } Redigera åtkomst - + Checking... Kontrollerar... @@ -9431,7 +10050,7 @@ p, li { white-space: pre-wrap; } - + Options Alternativ @@ -9465,12 +10084,12 @@ p, li { white-space: pre-wrap; } Snabbstartsguide - + RetroShare %1 a secure decentralized communication platform RetroShare %1 en säker, decentraliserad kommunikationsplattform - + Unfinished Pågående @@ -9508,7 +10127,12 @@ Frigör mer diskutrymme och klicka OK. Meddela - + + Open Messenger + + + + Open Messages Öppna meddelanden @@ -9558,7 +10182,7 @@ Frigör mer diskutrymme och klicka OK. %1 nya meddelanden - + Down: %1 (kB/s) Ner: %1 (kB/s) @@ -9628,14 +10252,14 @@ Frigör mer diskutrymme och klicka OK. Tjänståtkomstmatrix - + Add Lägg till Statistics - + Statistik @@ -9653,7 +10277,7 @@ Frigör mer diskutrymme och klicka OK. - + Really quit ? @@ -9662,38 +10286,17 @@ Frigör mer diskutrymme och klicka OK. MessageComposer - + Compose Skriv - - + Contacts Kontakter - - >> To - >> Till - - - - >> Cc - >> Kopia - - - - >> Bcc - >> Dold kopia - - - - >> Recommend - >> Rekommendera - - - + Paragraph Rubrik @@ -9774,7 +10377,7 @@ Frigör mer diskutrymme och klicka OK. Understruken - + Subject: Ämne: @@ -9785,12 +10388,22 @@ Frigör mer diskutrymme och klicka OK. - + Tags Taggar - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9800,7 +10413,7 @@ Frigör mer diskutrymme och klicka OK. - + Recommended Files Rekommenderade filer @@ -9870,7 +10483,7 @@ Frigör mer diskutrymme och klicka OK. Lägg till blockcitat - + Send To: Skicka till: @@ -9895,47 +10508,22 @@ Frigör mer diskutrymme och klicka OK. &Justera - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Hej! Jag rekommenderar mina kontakter. Du kan autentisera dem också, när du autentiserar mig. @@ -9961,12 +10549,12 @@ Frigör mer diskutrymme och klicka OK. - + Save Message Spara meddelande - + Message has not been Sent. Do you want to save message to draft box? Meddelandet har inte skickats. @@ -9978,7 +10566,7 @@ Vill du spara meddelandet i Utkast? Klistra in RetroShare-länk - + Add to "To" Lägg till i "Till" @@ -9998,12 +10586,7 @@ Vill du spara meddelandet i Utkast? Lägg till som rekommendation - - Friend Details - Kontaktinformation - - - + Original Message Ursprungligt meddelande @@ -10013,19 +10596,21 @@ Vill du spara meddelandet i Utkast? Från - + + To Till - + + Cc Kopia - + Sent Skickat @@ -10067,12 +10652,13 @@ Vill du spara meddelandet i Utkast? Ange minst en mottagare. - + + Bcc Dold kopia - + Unknown Okänd @@ -10182,7 +10768,12 @@ Vill du spara meddelandet i Utkast? &Formatera - + + Details + Detaljer + + + Open File... Öppna fil... @@ -10230,12 +10821,7 @@ Vill du spara meddelandet? Lägg till fil - - Show: - Visa: - - - + Close Stäng @@ -10245,32 +10831,57 @@ Vill du spara meddelandet? Från: - - All - Alla - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10293,7 +10904,27 @@ Vill du spara meddelandet? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Läser @@ -10308,7 +10939,7 @@ Vill du spara meddelandet? Öppna meddelanden i - + Tags Taggar @@ -10348,7 +10979,7 @@ Vill du spara meddelandet? Nytt fönster - + Edit Tag Redigera tagg @@ -10358,22 +10989,12 @@ Vill du spara meddelandet? Meddelande - + Distant messages: Avlägsna meddelanden: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">Länken nedan tillåter användare i nätverket att skicka krypterade meddelanden till dig genom tunnlar. För att göra det behöver de din publika PGP nyckel som de kan hämta genom RetroShares upptäcktssystem. </p></body></html> - - - - Accept encrypted distant messages from everyone - Tillåt krypterade avlägsna meddelanden från alla - - - + Load embedded images Ladda inbäddade bilder @@ -10654,7 +11275,7 @@ Vill du spara meddelandet? MessagesDialog - + New Message Nytt meddelande @@ -10721,24 +11342,24 @@ Vill du spara meddelandet? - + Tags Taggar - - - + + + Inbox Inkorg - - + + Outbox Utkorg @@ -10750,14 +11371,14 @@ Vill du spara meddelandet? - + Sent Skickat - + Trash Papperskorg @@ -10826,7 +11447,7 @@ Vill du spara meddelandet? - + Reply to All Svara alla @@ -10844,12 +11465,12 @@ Vill du spara meddelandet? - + From Från - + Date Datum @@ -10877,12 +11498,12 @@ Vill du spara meddelandet? - + Click to sort by from Klicka för att sortera efter 'Från' - + Click to sort by date Klicka för att sortera efter datum @@ -10937,7 +11558,12 @@ Vill du spara meddelandet? Sök på bilagor - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred Stjärnmärkt @@ -11002,14 +11628,14 @@ Vill du spara meddelandet? Töm papperskorgen - - + + Drafts Utkast - + 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 gray star beside any message. Det finns inga stjärnmärkta meddelanden. Stjärnorna ger meddelanden en särskild status, för att dom skall bli lättare att hitta. För att stjärnmärka ett meddelande, klickar du på den grå stjärnan vid sidan av önskat meddelande. @@ -11029,7 +11655,12 @@ Vill du spara meddelandet? Klicka för att sortera efter - + + This message goes to a distant person. + + + + @@ -11038,18 +11669,18 @@ Vill du spara meddelandet? Totalt: - + Messages Meddelanden - + Click to sort by signature Klicka för att sortera enligt signatur - + This message was signed and the signature checks Det här meddelandet har blivit signerat och signaturen kollar @@ -11059,15 +11690,10 @@ Vill du spara meddelandet? Det här meddelandet har blivit signerat men signaturen stämmer inte - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -11090,7 +11716,22 @@ Vill du spara meddelandet? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link Klistra in RetroShare-länk @@ -11124,7 +11765,7 @@ Vill du spara meddelandet? - + Expand Expandera @@ -11167,7 +11808,7 @@ Vill du spara meddelandet? <strong>NAT:</strong> - + Network Status Unknown Nätverksstatus okänd @@ -11211,26 +11852,6 @@ Vill du spara meddelandet? Forwarded Port Öppnad port - - - OK | RetroShare Server - OK | RetroShare Server - - - - Internet connection - Internetanslutning - - - - No internet connection - Ingen Internetanslutning - - - - No local network - Inget lokalt nätverk - NetworkDialog @@ -11344,7 +11965,7 @@ Vill du spara meddelandet? Användar-ID - + Deny friend Avvisa kontakt @@ -11409,7 +12030,7 @@ För din säkerhet har din nyckelring säkerhetskopierats till filen Kan inte skapa säkerhetskopia. Kontrollera åtkomstbehörighet, diskutrymme etc. för pgp-mappen. - + Personal signature Personligt signerad @@ -11476,7 +12097,7 @@ Högerklicka och välj 'Skapa kontakt' för att kunna ansluta.Du själv - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. Inkonsistent data i nyckelringen. Detta är troligtvis en bug. Var god och kontakta utvecklarna. @@ -11491,7 +12112,7 @@ Högerklicka och välj 'Skapa kontakt' för att kunna ansluta. - + Trust level @@ -11511,12 +12132,12 @@ Högerklicka och välj 'Skapa kontakt' för att kunna ansluta. - + Make friend... - + Did peer authenticate you @@ -11546,7 +12167,7 @@ Högerklicka och välj 'Skapa kontakt' för att kunna ansluta. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11615,7 +12236,7 @@ Reported error: NewsFeed - + News Feed Nyhetsflöde @@ -11634,18 +12255,13 @@ Reported error: This is a test. Detta är ett test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed Nyhetsflöde - + Newest on top @@ -11654,6 +12270,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11797,7 +12418,12 @@ Reported error: Blinka - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left Övre vänster hörn @@ -11821,11 +12447,6 @@ Reported error: Notify Underrättelser - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11875,7 +12496,7 @@ Reported error: NotifyQt - + PGP key passphrase PGP-lösenord @@ -11915,7 +12536,7 @@ Reported error: Sparar filindex... - + Test Testa @@ -11930,13 +12551,13 @@ Reported error: Okänd titel - - + + Encrypted message Krypterat meddelande - + Please enter your PGP password for key @@ -11988,24 +12609,6 @@ Reported error: Lågtrafik: 10% standardtrafik och TODO: Pausar alla filöverföringar - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -12029,12 +12632,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -12069,49 +12682,66 @@ Reported error: - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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"> -<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;">Signering av en Användarnyckel är ett sätt att uttrycka förtroende för kontakten, inför dina andra kontakter. Endast signerade användare kan visa information om dina andra betrodda kontakter.</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;">Signering av nycklar kan inte ångras, så gör det med eftertanke.</p></body></html> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key Signera GPG-nyckel + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections ASCII format - + ASCII-format + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Inkludera signaturer @@ -12166,7 +12796,7 @@ p, li { white-space: pre-wrap; } Du har inget förtroende för denna användare. - + This key has signed your own PGP key @@ -12340,12 +12970,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 Kontakter: 0/0 - + Online Friends/Total Friends Anslutna kontakter/Totalt kontakter @@ -12714,7 +13344,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12775,19 +13405,19 @@ p, li { white-space: pre-wrap; } Tillåt alla insticksprogram - - Loaded plugins - Inlästa insticksprogram - - - + Plugin look-up directories Mappar med insticksprogram - - Hash rejected. Enable it manually and restart, if you need. - Hash-beräkning avslogs. Aktivera den manuellt och starta om, vid behov. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] + @@ -12795,27 +13425,36 @@ p, li { white-space: pre-wrap; } Inget API-nummer. Läs manualen för insticksutveckling. - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. Inget SVN-nummer. Läs manualen för insticksutveckling. - + Loading error. Inläsningsfel. - + Missing symbol. Wrong version? Saknat tecken, fel version? - + No plugin object Det finns inga insticksprogram - + Plugins is loaded. Insticksprogram inläst. @@ -12825,22 +13464,7 @@ p, li { white-space: pre-wrap; } Okänd status. - - Title unavailable - Namn ej tillgängligt - - - - Description unavailable - Beskrivning ej tillgänglig - - - - Unknown version - Okänd version - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12851,15 +13475,16 @@ fall görs som skydd mot skadligt beteende från felaktigt utformade insticksprogram. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins Insticksprogram - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - PopularityDefs @@ -12927,12 +13552,17 @@ felaktigt utformade insticksprogram. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. Personen du pratar med har tagit bort den säkra chattunneln. Du kan stänga chatfönstret nu. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Om du stänger fönstret kommer konversationen att avslutas, den andra parten meddelas och den krypterade tunneln tas bort. @@ -12942,12 +13572,7 @@ felaktigt utformade insticksprogram. Ta bort tunneln? - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -13028,7 +13653,12 @@ felaktigt utformade insticksprogram. Postat - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -13052,11 +13682,6 @@ felaktigt utformade insticksprogram. Other Topics Andra rubriker - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13311,7 +13936,7 @@ felaktigt utformade insticksprogram. PrintPreview - + RetroShare Message - Print Preview RetroShare-meddelande - Utskriftsgranskning @@ -13659,7 +14284,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Bekräftelse @@ -13669,7 +14295,7 @@ p, li { white-space: pre-wrap; } Vill du att systemet skall hantera den här länken? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13698,7 +14324,12 @@ and open the Make Friend Wizard. Vill du bearbeta %1 länkar? - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. %1 av %2 RetroShare-länk bearbetad. @@ -13865,7 +14496,7 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> kommer att ersätt Kunde inte bearbeta samlingsfilen - + Deny friend Avvisa kontakt @@ -13885,7 +14516,7 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> kommer att ersätt Filbegäran avbruten - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. Denna version av RetroShare använder OpenPGP-SDK. Som sidoeffekt använder den inte systemets delade PGP-nyckelring, utan har sin egen nyckelring som delas av alla RetroShare-instanser. <br><br>Du verkar inte ha någon sådan nyckelring, även om GPG-nycklar associeras med befintliga RetroShare-konton, troligen för att du just uppgraderat till denna nya version av programmet. @@ -13916,7 +14547,7 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> kommer att ersätt Ett oväntat fel uppstod. Rapportera 'RsInit::InitRetroShare unexpected return code %1'. - + Multiple instances Flera instanser @@ -13952,11 +14583,6 @@ Tecknen <b>",|,/,\,&lt;,&gt;,*,?</b> kommer att ersätt Tunnel is pending... Tunnel avvaktar... - - - Secured tunnel established. Waiting for ACK... - Säker tunnel etablerad. Väntar på ACK... - Secured tunnel is working. You can talk! @@ -13972,7 +14598,7 @@ Reported error is: Rapporterat fel är: %2 - + Click to send a private message to %1 (%2). Klicka för att skicka ett privat meddelande till %1 (%2). @@ -14022,7 +14648,7 @@ Rapporterat fel är: %2 - + You appear to have nodes associated to DSA keys: @@ -14032,7 +14658,7 @@ Rapporterat fel är: %2 - + enabled @@ -14042,12 +14668,12 @@ Rapporterat fel är: %2 - + Join chat lobby - + Move IP %1 to whitelist @@ -14062,49 +14688,56 @@ Rapporterat fel är: %2 - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago %1 dag(ar) sedan - + Subject: - + Ämne: Participants: - + Deltagare: @@ -14116,6 +14749,12 @@ Rapporterat fel är: %2 Id: + + + +Security: no anonymous IDs + + @@ -14127,6 +14766,16 @@ Rapporterat fel är: %2 The following has not been added to your download list, because you already have it: + + + Error + Fel + + + + unable to parse XML file! + + QuickStartWizard @@ -14136,7 +14785,7 @@ Rapporterat fel är: %2 Snabbstartsguide - + <!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; } @@ -14174,21 +14823,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > Nästa > - - - - + + + + + Exit Avsluta - + For best performance, RetroShare needs to know a little about your connection to the internet. För bästa prestanda, behöver RetroShare veta lite om din Internetanslutning. @@ -14255,13 +14906,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back < Tillbaka - + <!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; } @@ -14286,7 +14938,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Nätverksövergripande @@ -14311,7 +14963,27 @@ p, li { white-space: pre-wrap; } Dela inkommande automatiskt (Rekommenderas) - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + Listvy + + + <!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; } @@ -14389,7 +15061,7 @@ p, li { white-space: pre-wrap; } Browsable - + Bläddringsbar @@ -14423,7 +15095,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 KB @@ -14459,7 +15131,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14490,13 +15162,13 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off Service name: - + Tjänstnamn: @@ -14512,7 +15184,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14621,7 +15293,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14646,7 +15318,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW NYTT @@ -14704,7 +15376,7 @@ p, li { white-space: pre-wrap; } Only IP - + Endast IP @@ -14986,7 +15658,7 @@ Om du tror att den är giltig, ta bort strängen från filen och öppna den på RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? Bilden är för stor för överföring. @@ -14998,13 +15670,13 @@ Vill du krympa bilden till %1x%2 pixlar? Invalid format - + Ogiltigt format Rshare - + Resets ALL stored RetroShare settings. Återställer ALLA sparade RetroShare-inställningar. @@ -15049,19 +15721,19 @@ Vill du krympa bilden till %1x%2 pixlar? Kan inte öppna loggfil '%1': %2 - + built-in inbyggd - + Could not create data directory: %1 Kunde inte skapa datamapp: %1 - + Revision - + Revision @@ -15087,33 +15759,10 @@ Vill du krympa bilden till %1x%2 pixlar? RTT-statistik - - SFListDelegate - - - B - B - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Ange nyckelord här (minst 3 tecken) @@ -15295,12 +15944,12 @@ Vill du krympa bilden till %1x%2 pixlar? Nedladdning vald - + File Name Filnamn - + Download Ladda ner @@ -15369,7 +16018,7 @@ Vill du krympa bilden till %1x%2 pixlar? Öppna mapp - + Create Collection... Skapa samling... @@ -15389,7 +16038,7 @@ Vill du krympa bilden till %1x%2 pixlar? Ladda ner från samlingsfil... - + Collection Samling @@ -15415,7 +16064,7 @@ Vill du krympa bilden till %1x%2 pixlar? IP address: - + IP-adress: @@ -15632,12 +16281,22 @@ Vill du krympa bilden till %1x%2 pixlar? ServerPage - + Network Configuration Nätverksinställningar - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) Automatiskt (UPnP) @@ -15652,7 +16311,7 @@ Vill du krympa bilden till %1x%2 pixlar? Manuellt öppnad port - + Public: DHT & Discovery Publikt: DHT och Upptäckt @@ -15672,13 +16331,13 @@ Vill du krympa bilden till %1x%2 pixlar? DarkNet: Inget - - + + Local Address Lokal adress - + External Address Extern adress @@ -15688,28 +16347,28 @@ Vill du krympa bilden till %1x%2 pixlar? Dynamisk DNS - + Port: Port: - + Local network Lokalt nätverk - + External ip address finder Sökverktyg för externt IP - + UPnP UPnP - + Known / Previous IPs: Kända / Tidigare IP: @@ -15735,13 +16394,13 @@ bra om du sitter bakom en brandvägg eller en VPN-tunnel. Låt RetroShare fråga om min externa IP-adress på dessa sidor: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15751,23 +16410,12 @@ bra om du sitter bakom en brandvägg eller en VPN-tunnel. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15777,17 +16425,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + I2P-adress + + + + I2P incoming ok + + + + + Points at: + Pekar på: + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15797,90 +16493,95 @@ HiddenServicePort 9191 127.0.0.1:9191 Rensa - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test Testa - + Network Nätverk - + IP Filters - + IP-filter - + IP blacklist - + IP range - - - + + + Status Status - - + + Origin - - + + Reason - + Orsak - - + + Comment Kommentar - + IPs - + IP whitelist - + Manual input @@ -15905,12 +16606,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15933,32 +16740,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15988,99 +16796,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -16113,7 +16842,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions Tjänståtkomst @@ -16128,13 +16857,13 @@ Check your ports! Behörigheter - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16399,7 +17128,7 @@ Välj de kontakter du vill dela kanalen med. Ladda ner - + Copy retroshare Links to Clipboard Kopiera RetroShare-länk till Urklipp @@ -16424,7 +17153,7 @@ Välj de kontakter du vill dela kanalen med. Lägg till länkar i molnet - + RetroShare Link RetroShare-länk @@ -16440,7 +17169,7 @@ Välj de kontakter du vill dela kanalen med. Lägg till delade filer - + Create Collection... Skapa samling... @@ -16463,19 +17192,19 @@ Välj de kontakter du vill dela kanalen med. SoundManager - + Friend - + Vän Go Online - + Gå online Chatmessage - + Chattmeddelande @@ -16485,15 +17214,16 @@ Välj de kontakter du vill dela kanalen med. Message - + Meddelande + Message arrived - + Download @@ -16502,6 +17232,11 @@ Välj de kontakter du vill dela kanalen med. Download complete + + + Lobby + + SoundPage @@ -16562,7 +17297,7 @@ Välj de kontakter du vill dela kanalen med. SplashScreen - + Load profile Läs in profil @@ -16806,12 +17541,12 @@ This choice can be reverted in settings. - + Connected Ansluten - + Unreachable Okontaktbar @@ -16827,18 +17562,18 @@ This choice can be reverted in settings. - + Trying TCP Försöker med TCP - - + + Trying UDP Försöker med UDP - + Connected: TCP Ansluten: TCP @@ -16849,6 +17584,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown Ansluten: Okänt @@ -16858,7 +17598,7 @@ This choice can be reverted in settings. DHT: Kontakt - + TCP-in @@ -16868,7 +17608,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16878,9 +17618,9 @@ This choice can be reverted in settings. - + UDP - + UDP @@ -16892,13 +17632,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -17115,7 +17865,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Paus @@ -17164,7 +17914,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17265,7 +18015,7 @@ p, li { white-space: pre-wrap; } File transfer - + Filöverföring @@ -17305,16 +18055,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Nerladdningar + Uploads Uppladdningar - + Name i.e: file name @@ -17510,25 +18262,25 @@ p, li { white-space: pre-wrap; } - + Slower Långsammare - - + + Average Medel - - + + Faster Snabbare - + Random Slumpmässigt @@ -17553,7 +18305,12 @@ p, li { white-space: pre-wrap; } Specificera - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... Flytta i kön... @@ -17579,39 +18336,39 @@ p, li { white-space: pre-wrap; } - + Failed Misslyckades - - + + Okay OK - - + + Waiting Väntar - + Downloading Laddar ner - + Complete Slutfört - + Queued Köad @@ -17655,7 +18412,7 @@ Försök ha tålamod! - + Transferring Överför @@ -17665,7 +18422,7 @@ Försök ha tålamod! Laddar upp - + Are you sure that you want to cancel and delete these files? Vill du verkligen avbryta, och ta bort dessa filer? @@ -17723,7 +18480,7 @@ Försök ha tålamod! Ange nytt giltigt filnamn - + Last Time Seen i.e: Last Time Receiced Data Senast sedd @@ -17829,7 +18586,7 @@ Försök ha tålamod! Visa kolumn med Senast Sedd - + Columns Kolumner @@ -17839,7 +18596,7 @@ Försök ha tålamod! Filöverföringar - + Path i.e: Where file is saved Sökväg @@ -17855,12 +18612,7 @@ Försök ha tålamod! Visa Väg-kolumn - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17870,7 +18622,7 @@ Försök ha tålamod! - + Create Collection... Skapa samling... @@ -17885,7 +18637,7 @@ Försök ha tålamod! Visa samling... - + Collection Samling @@ -17895,19 +18647,19 @@ Försök ha tålamod! Fildelning - + Anonymous tunnel 0x - + Show file list transfers - + version: - + version: @@ -17941,7 +18693,7 @@ Försök ha tålamod! MAPP - + Friends Directories Kontakters mappar @@ -17984,7 +18736,7 @@ Försök ha tålamod! TurtleRouterDialog - + Search requests Sökförfrågningar @@ -18047,7 +18799,7 @@ Försök ha tålamod! Router-statistik - + Age in seconds Ålder i sekunder @@ -18062,7 +18814,17 @@ Försök ha tålamod! totalt - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Okänd användare @@ -18071,16 +18833,11 @@ Försök ha tålamod! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition Ompartitionering av sökförfrågan @@ -18261,7 +19018,7 @@ Försök ha tålamod! Port : - + Port : @@ -18279,10 +19036,20 @@ Försök ha tålamod! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18291,12 +19058,7 @@ Försök ha tålamod! Webinterface - - - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - + Webbgränssnitt @@ -18487,7 +19249,7 @@ Försök ha tålamod! Sök - + My Groups Mina grupper @@ -18507,7 +19269,7 @@ Försök ha tålamod! Andra grupper - + Subscribe to Group Prenumerera på grupp @@ -18524,7 +19286,7 @@ Försök ha tålamod! Show Wiki Group - + Visa Wiki-grupp @@ -18695,7 +19457,7 @@ Försök ha tålamod! Update Group - + Uppdatera grupp diff --git a/retroshare-gui/src/lang/retroshare_tr.qm b/retroshare-gui/src/lang/retroshare_tr.qm index e736da2dac68a1e42cb23d6c1f729ce959c1f7fe..97edfe7e734ce1025a38e7ea0c28d099fa1aab82 100644 GIT binary patch delta 34080 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 delta 39295 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 diff --git a/retroshare-gui/src/lang/retroshare_tr.ts b/retroshare-gui/src/lang/retroshare_tr.ts index 1eab45cae..a763b10e4 100644 --- a/retroshare-gui/src/lang/retroshare_tr.ts +++ b/retroshare-gui/src/lang/retroshare_tr.ts @@ -1,8 +1,8 @@ - + AWidget - + version sürüm @@ -21,12 +21,17 @@ RetroShare Hakkında - + About Hakkında - + + Copy Info + + + + close kapatın @@ -233,7 +238,7 @@ Policy: - Poliçe: + İlke: @@ -326,7 +331,7 @@ p, li { white-space: pre-wrap; } Untitle Album - İsimsiz Albüm + Başlıksız Albüm @@ -495,7 +500,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language Dil @@ -535,24 +540,28 @@ p, li { white-space: pre-wrap; } Araç Çubuğu - - + + On Tool Bar Araç Çubuğunda - - + On List Item Liste Nesnesinde - + Where do you want to have the buttons for menu? Menü butonlarının nerede olmasını istersiniz? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? Sayfa butonlarının nerede olmasını istersiniz? @@ -588,24 +597,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 Simge Boyutu = 8x8 - - + + Icon Size = 16x16 Simge Boyutu = 16x16 - - + + Icon Size = 24x24 Simge Boyutu = 24x24 - + + + Icon Size = 64x64 + Simge Boyutu = 64x64 + + + + + Icon Size = 128x128 + Simge Boyutu = 128x128 + + + Status Bar Durum Çubuğu @@ -635,8 +656,13 @@ p, li { white-space: pre-wrap; } Durum Çubuğunda Sistem Tepsisi Gösterilsin - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 Simge Boyutu = 32x32 @@ -741,7 +767,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y AvatarWidget - + Click to change your avatar Avatarınızı değiştirmek için tıklayın @@ -749,7 +775,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y BWGraphSource - + KB/s KB/s @@ -757,7 +783,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y BWListDelegate - + N/A Geçersiz @@ -765,13 +791,13 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y BandwidthGraph - + RetroShare Bandwidth Usage RetroShare Bant Genişliği Kullanımı - + Show Settings Ayarlara Bakın @@ -826,7 +852,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y İptal - + Since: Başlangıç: @@ -836,6 +862,31 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Ayarlar Gizlensin + + BandwidthStatsWidget + + + + Sum + Toplam + + + + + All + Tümü + + + + KB/s + KB/s + + + + Count + + + BwCtrlWindow @@ -899,7 +950,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y İzin verilmiş Alınan - + TOTALS TOPLAM @@ -914,6 +965,49 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Form + + BwStatsWidget + + + Form + + + + + Friend: + Arkadaş: + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -942,14 +1036,6 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Her kanal yeni bir sekmede açılsın - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -963,17 +1049,32 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Takma adı değiştirin - + Mute participant Katılımcının sesini kapatın - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby Bu lobiye arkadaşlarınızı davet edin - + Leave this lobby (Unsubscribe) Bu lobiden ayrıl (Abonelikten çık) @@ -988,7 +1089,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Davet edilecek arkadaşlarınızı seçin: - + Welcome to lobby %1 %1 lobisine hoşgeldiniz @@ -998,13 +1099,13 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Konu: %1 - + Lobby chat Lobi sohbeti - + Lobby management @@ -1036,7 +1137,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Bu sohbet lobisi aboneliğinden ayrılmak istiyor musunuz? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> Katılımcıların sesini açmak/kapatmak için sağ tıklayın<br/>Bu kişiyi etiketlemek için çift tıklayın<br/> @@ -1051,12 +1152,12 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y saniye - + Start private chat Özel sohbet başlatın - + Decryption failed. Şifre çözme başarısız. @@ -1102,7 +1203,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y ChatLobbyUserNotify - + Chat Lobbies Sohbet Lobileri @@ -1141,18 +1242,18 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y ChatLobbyWidget - + Chat lobbies Sohbet lobileri - - + + Name İsim - + Count Kullanıcı Sayısı @@ -1173,30 +1274,35 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y - + Create chat lobby Sohbet lobisi oluşturun - + [No topic provided] [Konu Açılmamış] - + Selected lobby info Seçilen lobi bilgisi - + Private Kişisel Public - Genel + Herkese Açık + + + + Anonymous IDs accepted + @@ -1204,7 +1310,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Bu lobiye abone değilsiniz; Girip sohbet etmek için çift tıklayın. - + Remove Auto Subscribe Otomatik Üye Alımını Kaldırın @@ -1214,27 +1320,37 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Otomatik Üye Alımını Etkinleştirin - + %1 invites you to chat lobby named %2 %1 sizi %2 isimli sohbet lobisine davet ediyor - + Search Chat lobbies Sohbet lobileri arayın - + Search Name İsim Arayın - + Subscribed Abone Olundu - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns Sütunlar @@ -1249,7 +1365,7 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Hayır - + Lobby Name: Lobi İsmi: @@ -1268,6 +1384,11 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y Type: Tip: + + + Security: + + Peers: @@ -1278,12 +1399,13 @@ Ama Unutmayın: Buradaki herhangi bir bilgi, protokolleri güncellediğimiz de y + TextLabel YazıEtiketi - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1292,7 +1414,7 @@ Ayrıntıları görmek için soldan lobi seçin. Lobiye girip sohbet etmek için çift tıklayın. - + Private Subscribed Lobbies Abone Olduğunuz Özel Lobiler @@ -1301,23 +1423,18 @@ Lobiye girip sohbet etmek için çift tıklayın. Public Subscribed Lobbies Abone Olduğunuz Herkese Açık Lobiler - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Sohbet Lobileri</h1> <p>Sohbet lobileri paylaştırılmış sohbet odalarıdır, ve hemen hemen IRC gibi çalışır. Arkadaş olma şartı olmaksızın, pek çok insanla, anonim olarak konuşmanızı sağlar.</p> <p>Sohbet Lobisi herkese açık (arkadaşlarınız görebilir) veya özel olabilir(arkadaşlarınız göremez, bu butonla onları davet etmezseniz <img src=":/images/add_24x24.png" width=12/>). Bir özel lobiye davet edildiğinizde, arkadaşlarınızın onu kullanıp kullanmadığını görebilirsiniz.</p> <p>Soldaki listede arkadaşlarınızın katıldığı sohbet lobilerini görebilirsiniz. İsterseniz <ul> <li>Sağ tıklayıp yeni bir sohbet lobisi oluşturabilir</li> <li>Çift tıklayarak bir sohbet lobisine giriş yapabilir, sohbet edebilir, ve arkadaşlarınıza gösterebilirsiniz.</li> </ul> Not: Sohbet lobilerinin doğru çalışabilmesi için, bilgisayarınızın zaman ayarının doğru olması gerekir. Yani sistem saatinizi kontrol edin! </p> - Chat Lobbies Sohbet Lobileri - + Leave this lobby Lobiden ayrılın - + Enter this lobby Lobiye katılın @@ -1327,22 +1444,42 @@ Lobiye girip sohbet etmek için çift tıklayın. Lobiye şu kimlikle girin... - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. Sohbet lobilerine katılabilmek için bir kimlik oluşturmalısınız. - + Choose an identity for this lobby: Bu lobi için bir kimlik seçin: - + Create an identity and enter this lobby Bir kimlik oluşturun ve lobiye katılın - + Show @@ -1395,7 +1532,7 @@ Lobiye girip sohbet etmek için çift tıklayın. İptal Edin - + Quick Message Hızlı İleti @@ -1404,12 +1541,37 @@ Lobiye girip sohbet etmek için çift tıklayın. ChatPage - + General Genel - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings Sohbet Ayarları @@ -1434,7 +1596,12 @@ Lobiye girip sohbet etmek için çift tıklayın. Özel yazıtipi boyutunu etkinleştirin - + + Minimum font size + + + + Enable bold Kalın yazımı etkinleştirin @@ -1548,7 +1715,7 @@ Lobiye girip sohbet etmek için çift tıklayın. Özel sohbet - + Incoming Gelen @@ -1592,6 +1759,16 @@ Lobiye girip sohbet etmek için çift tıklayın. System message Sistem iletisi + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1683,7 +1860,7 @@ Lobiye girip sohbet etmek için çift tıklayın. Arama Çubuğu gösterilsin - + Private chat invite from Gelen özel sohbet daveti @@ -1706,7 +1883,7 @@ Lobiye girip sohbet etmek için çift tıklayın. ChatStyle - + Standard style for group chat Grup sohbeti için standart görünüm @@ -1755,17 +1932,17 @@ Lobiye girip sohbet etmek için çift tıklayın. ChatWidget - + Close Kapatın - + Send Gönderin - + Bold Kalın @@ -1780,12 +1957,12 @@ Lobiye girip sohbet etmek için çift tıklayın. Eğik - + Attach a Picture Resim Ekleyin - + Strike Üstü çizili @@ -1836,12 +2013,37 @@ Lobiye girip sohbet etmek için çift tıklayın. Varsayılan yazıtipi - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... yazıyor... - + Do you really want to physically delete the history? Geçmişi tamamen silmek istediğinizden emin misiniz? @@ -1866,7 +2068,7 @@ Lobiye girip sohbet etmek için çift tıklayın. Metin Dosyası (* txt.);;Tüm Dosyalar (*) - + appears to be Offline. Çevirimdışı görünüyor. @@ -1891,7 +2093,7 @@ Lobiye girip sohbet etmek için çift tıklayın. Meşgul ve cevap vermeyebilir - + Find Case Sensitively B/K Harf Duyarlı Arayın @@ -1913,7 +2115,7 @@ Lobiye girip sohbet etmek için çift tıklayın. X nesne bulunduktan sonra işaretlemeye devam edin (daha fazla CPU gerekir) - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> <b>Önceki </b><br/><i>Ctrl+Shift+G</i> @@ -1928,12 +2130,12 @@ Lobiye girip sohbet etmek için çift tıklayın. <b>Bul </b><br/><i>Ctrl+F</i> - + (Status) (Durum) - + Set text font & color Metin yazıtipi & rengini ayarlayın @@ -1943,7 +2145,7 @@ Lobiye girip sohbet etmek için çift tıklayın. Dosya Ekleyin - + WARNING: Could take a long time on big history. UYARI: Boyutu büyük olan geçmişlerde uzun sürebilir. @@ -1954,7 +2156,7 @@ Lobiye girip sohbet etmek için çift tıklayın. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> <b>Seçili metni işaretleyin</b><br><i>Ctrl+M</i> @@ -1989,22 +2191,22 @@ Lobiye girip sohbet etmek için çift tıklayın. Arama Kutusu - + Type a message here İletinizi yazın - + Don't stop to color after - + Şuradan sonra işaretlemeye devam edin items found (need more CPU) - + bulunanlar (daha fazla CPU gerekir) - + Warning: Uyarı: @@ -2162,7 +2364,12 @@ Lobiye girip sohbet etmek için çift tıklayın. Ayrıntılar - + + Node info + Düğüm bilgisi + + + Peer Address Eş Adresi @@ -2249,12 +2456,7 @@ Lobiye girip sohbet etmek için çift tıklayın. Retroshare düğüm bilgileri - - Location info - Konum bilgileri - - - + Node name : Düğüm ismi : @@ -2290,6 +2492,11 @@ Lobiye girip sohbet etmek için çift tıklayın. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node Bu düğümdeki önerilen dosyaları otomatik indir @@ -2345,14 +2552,14 @@ Lobiye girip sohbet etmek için çift tıklayın. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> <html><head/><body><p>Bu, düğümün <span style=" font-weight:600;">OpenSSL</span> sertifikası kodudur, ve üstteki <span style=" font-weight:600;">PGP</span> anahtarı tarafından imzalanmıştır. </p></body></html> <html><head/><body><p>This is the encryption method used by <span style=" font-weight:600;">OpenSSL</span>. The connection to friend nodes</p><p>is always heavily encrypted and if DHE is present the connection further uses</p><p>&quot;perfect forward secrecy&quot;.</p></body></html> - <html><head/><body><p>Bu <span style=" font-weight:600;">OpenSSL</span> tarafından kullanılan bir şifreleme yöntemidir. Arkadaş düğümlerle kurulan bağlantı</p><p> her zaman yoğun bir şekilde şifrelidir ve eğer DHE mevcutsa, bağlantı </p><p>&quot;mükemmel yönlendirme gizliliği&quot;.</p>ne sahiptir</body></html> + <html><head/><body><p>Bu <span style=" font-weight:600;">OpenSSL</span> tarafından kullanılan bir şifreleme yöntemidir. Arkadaş düğümlerle kurulan bağlantı</p><p> her zaman yoğun bir şekilde şifrelidir ve eğer DHE mevcutsa, bağlantı </p><p>&quot;mükemmel bir yönlendirme gizliliği&quot;.</p>ne sahiptir</body></html> @@ -2378,87 +2585,65 @@ Lobiye girip sohbet etmek için çift tıklayın. Yeni Arkadaş ekle - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - Bu sihirbaz RetroShare aginiza arkadas (lar) baglanmak için yardimci olacaktir <br> Bu yollardan bunu yapmak mümkündür.: - - - - &Enter the certificate manually - &Sertifikayi el ile girin - - - + &You get a certificate file from your friend - &Siz arkadastan bir Sertifika dosyasi aldiniz + &Arkadaşınızdan bir sertifika dosyası aldıysanız &Make friend with selected friends of my friends - &Seçilen arkadaşlarımla arkadaş yap + &Arkadaşlarınızın seçtiği kişilerle arkadaş olun - - &Enter RetroShare ID manually - &RetroShare Kodunu elle girin - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - &Eposta yoluyla Davetiye yollayın -(RetroShare indirme talimatlarını içeren bir eposta alacaktır) - - - + Text certificate Metin Sertifika Use text representation of the PGP certificates. - PGP sertifikalarin metin gösterimi kullanin. + PGP sertifikalarının metin gösterimlerini kullanın. - - The text below is your PGP certificate. You have to provide it to your friend - Aşağıdaki metin PGP sertifikanızdır. Bunu arkadaşınıza iletmelisiniz - - - - + + Include signatures - Imzalar dahil + İmzalar dahil Copy your Cert to Clipboard - Pano'ya Cert kopyala + Pano'ya Sertifikanızı kopyalayın Save your Cert into a File - Dosya içine Cert kaydet + Sertifikanızı bir Dosyaya kaydedin Run Email program - E-posta programini çalistirin + E-posta programını çalıştırın - Please, paste your friends PGP certificate into the box below - Lütfen, arkadaşınızın PGP sertifikasını alttaki kutuya yapıştırın + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files - Sertifika dosyalari + Sertifika dosyaları Use PGP certificates saved in files. - Dosyalarda kaydedilen PGP sertifikalar kullanin. + Dosyalarda kayıtlı olan PGP sertifikalarını kullanın. @@ -2468,12 +2653,12 @@ Lobiye girip sohbet etmek için çift tıklayın. You have to generate a file with your certificate and give it to your friend. Also, you can use a file generated before. - Siz sertifika ile bir dosya olusturmaniz gerek ve arkadasiniza vermek zorundasiniz. Ayrica, daha önce olusturulan bir dosyayi kullanabilirsiniz. + Sertifikanızın olduğu bir dosya üretmeli ve bunu arkadaşınıza ulaştırmalısınız. Ayrıca, önceden oluşturulmuş bir dosyayı da kullanabilirsiniz. Export my certificate... - Sertifikanızı aktarın... + Sertifikanızı dışa aktarın... @@ -2493,7 +2678,7 @@ Lobiye girip sohbet etmek için çift tıklayın. Select now who you want to make friends with. - Kiminle arkadaş yapmak istediğinizi seçin. + Şimdi kiminle arkadaş olmak istediğinizi seçin. @@ -2523,32 +2708,72 @@ Lobiye girip sohbet etmek için çift tıklayın. Paste Friends RetroShare ID in the box below - Arkadaşlarınızın RetroShare Kodunu aşağı yapıştırın + Arkadaşlarınızın RetroShare Kodunu alttaki kutuya yapıştırın Enter the RetroShare ID of your Friend, e.g. Peer@BDE8D16A46D938CF - Arkadaşınızın RetroShare Kodunu Girin, ör. Eş@BDE8D16A46D938CF + Arkadaşınızın RetroShare Kodunu girin, ör. Eş@BDE8D16A46D938CF + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email - E-posta Yoluyla Arkadaslarini Davet + E-posta ile davet edin Enter your friends' email addresses (separate each one with a semicolon) - Arkadaşlarınızın eposta adreslerini girin (herbirini noktalı virgülle ayırın) + Arkadaşlarınızın e-posta adreslerini girin (herbirini noktalı virgülle ayırın) Your friends' email addresses: - Arkadaslarinizin e-posta adresleri: + Arkadaşlarınızın e-posta adresleri: Enter Friends Email addresses - Arkadasinizin e-posta adreslerini verin + Arkadaşlarınızın E-posta adreslerini girin @@ -2557,102 +2782,143 @@ Lobiye girip sohbet etmek için çift tıklayın. - + Friend request - Arkadaslik Istegi + Arkadaşlık isteği Details about the request - Istek hakkinda Detaylar + İstek hakkında ayrıntılar - + Peer details - Eş detayları + Eş bilgileri - - + + Name: - Isim: + İsim: - - + + Email: E-Posta: - - - Location: - Yer: + + Node: + Düğüm: - + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + + Location: + Konum: + + + - + Options Seçenekler - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - Gruba arkadas ekle: + Gruba arkadaş ekleyin: - - + + Authenticate friend (Sign PGP Key) - Arkadaşı doğrula (PGP anahtarını imzala) + Arkadaşı doğrulayın (PGP anahtarını imzalayın) - - + + Add as friend to connect with - Arkadasinizla baglanti olarak ekle + Bağlantı kurulacak arkadaş olarak ekleyin - - + + To accept the Friend Request, click the Finish button. Arkadaşlık isteğini kabul etmek için Son tuşunu tıklayın. - + Sorry, some error appeared - Maalesef, bazi hata ortaya çikti + Malesef, bir hata oluştu Here is the error message: - İşte hata iletisi: + Oluşan hatanın iletisi: Make Friend - Arkadaş Yap + Arkadaş Olun Details about your friend: - Arkadasiniz hakkinda bilgi: + Arkadaşınızın bilgileri: - + Key validity: Anahtar geçerliliği: Signers - Imzalayanlar + İmzalayanlar @@ -2662,12 +2928,12 @@ Lobiye girip sohbet etmek için çift tıklayın. Abnormal size read is bigger than memory block. - Anormal boyuttaki veri, hafıza bloğundan daha fazladır. + Anormal boyuttaki veri, bellek bloğundan daha büyük. Invalid external IP. - Geçersiz dış IP. + Geçersiz harici IP. @@ -2682,12 +2948,12 @@ Lobiye girip sohbet etmek için çift tıklayın. Checksum mismatch. Certificate is corrupted. - Sağlama eşleşmiyor. Sertifika bozuk. + Sağlama eşleşmiyor. Sertifika hatalı. Unknown section type found (Certificate might be corrupted). - Bilinmeyen türde bir kesit bulundu (Sertifika bozuk olabilir). + Bilinmeyen türde bir kesit bulundu (Sertifika hatalı olabilir). @@ -2701,19 +2967,19 @@ Lobiye girip sohbet etmek için çift tıklayın. - + Certificate Load Failed - Sertifika yüklemeye basaramadik + Sertifika yüklenemedi - + Cannot get peer details of PGP key %1 - PGP anahtarı %1 olan eş detayları alınamıyor + PGP anahtarı %1 olan eş bilgileri alınamıyor Any peer I've not signed - Onaylamadığım eşler + İmzalamadığım eşler @@ -2733,7 +2999,7 @@ Lobiye girip sohbet etmek için çift tıklayın. Also signed by - Ayrica tarafindan imzalanmis + Ayrıca imzalayan @@ -2741,12 +3007,13 @@ Lobiye girip sohbet etmek için çift tıklayın. Eş kodu - + + RetroShare Invitation - RetroShare Davet + RetroShare Davetiyesi - + Ultimate Nihai @@ -2768,13 +3035,13 @@ Lobiye girip sohbet etmek için çift tıklayın. No Trust - Güven Yok + Güvensiz - + You have a friend request from - Bir arkadaslik istegi var + Şu kişiden arkadaşlık isteği var @@ -2784,22 +3051,22 @@ Lobiye girip sohbet etmek için çift tıklayın. This Peer %1 is not available in your Network - Bu eş %1 Ağınızda mevcut değil + %1 isimli eş Ağınızda mevcut değil - + Use new certificate format (safer, more robust) - Yeni sertifika biçimini kullanin (güvenli, daha saglam) + Yeni sertifika biçimini kullanın (güvenli, daha sağlam) Use old (backward compatible) certificate format - Eski (geriye dönük uyumlu) sertifika biçimini kullanin + Eski (geriye dönük uyumlu) sertifika biçimini kullanın Remove signatures - Imzalari kaldir + İmzaları kaldırın @@ -2809,12 +3076,12 @@ Lobiye girip sohbet etmek için çift tıklayın. No or misspelled BEGIN tag found - BEGIN etiketi eksik ya da yanlış yazılmış + BEGIN etiketi eksik veya yanlış yazılmış No or misspelled END tag found - END etiketi eksik ya da yanlış yazılmış + END etiketi eksik veya yanlış yazılmış @@ -2824,60 +3091,60 @@ Lobiye girip sohbet etmek için çift tıklayın. Unknown error. Your cert is probably not even a certificate. - Bilinmeyen hata. Girdiğiniz muhtemelen bir sertifika bile değil. + Bilinmeyen hata. Seçtiğiniz muhtemelen bir sertifika bile değil. Connect Friend Help - Arkadaşa Bağlanmada Yardım + Arkadaş Bağlantısı Yardımı You can copy this text and send it to your friend via email or some other way - Bu metni kopyalayıp email ve ya başka bir şekilde arkadaşınıza yollayabilirsiniz + Bu metni kopyalayıp e-posta veya başka bir şekilde arkadaşınıza yollayabilirsiniz Your Cert is copied to Clipboard, paste and send it to your friend via email or some other way - Sizin Cert panoya kopyalandi, yapistirin ve e-posta veya baska bir yolla yoluyla arkadasiniza gönderiniz + Sertifikanız Panoya kopyalandı, e-postanıza yapıştırıp veya başka bir yolla arkadaşınıza iletebilirsiniz Save as... - Farkli kaydet... + Farklı kaydet... RetroShare Certificate (*.rsc );;All Files (*) - RetroShare Belgesi (* rsc.);; Tüm Dosyalar (*) + RetroShare Sertifikası (* rsc.);;Tüm Dosyalar (*) Select Certificate - Sertifika seç + Sertifika seçin Sorry, create certificate failed - Üzgünüm, sertifika oluşturması başarısız + Malesef, sertifika oluşturması başarısız Please choose a filename - Bir dosya adi seçiniz + Bir dosya adı seçin Certificate file successfully created - Sertifika dosyasi basariyla olusturuldu + Sertifika dosyası oluşturuldu Sorry, certificate file creation failed - Üzgünüm, sertifika dosyasi olusturmasi basarisiz oldu + Malesef, sertifika dosyası oluşturulamadı @@ -2885,30 +3152,44 @@ Lobiye girip sohbet etmek için çift tıklayın. *** Yok *** - + Use as direct source, when available - Kullanılabilir olduğunda doğrudan kaynak olarak kullan + Kullanılabilir olduğunda doğrudan kaynak olarak kullanın - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others Arkadaşlarınızı birbirine tavsiye edin. Friend Recommendations - Arkadaş tavsiyesi + Arkadaş Önerileri - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - Mesaj: + İleti: - + Recommend friends - Arkadaslar Tavsiye + Arkadaş önerin @@ -2923,20 +3204,15 @@ Lobiye girip sohbet etmek için çift tıklayın. Please select at least one friend as recipient. - Alici olarak en az bir arkadas seçiniz. + Lütfen en az bir alıcı seçin. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - Lütfen unutmayın, eğer çok fazla arkadaş eklerseniz, RetroShare'ın aşırı miktarda bantgenişliğine, belleğe ve CPU'ya ihtiyacı olacaktır. İstediğiniz kadar arkadaş ekleyebilirsiniz, ama 40'tan fazlası muhtemelen çok fazla kaynak kullanımı gerektirecektir. - - - + Add key to keyring Anahtarı, anahtarlığa ekleyin - + This key is already in your keyring Bu anahtar zaten anahtarlığınızda mevcut @@ -2946,15 +3222,15 @@ Lobiye girip sohbet etmek için çift tıklayın. This might be useful for sending distant messages to this peer even if you don't make friends. - Anahtarı anahtarlığınıza eklemek için seçin + Anahtarı anahtarlığınıza eklemek için işaretleyin Arkadaş olmasanız bile bu eşe uzak iletiler göndermek için kullanışlı olabilir. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. - Sertifikanın versiyon numarası hatalı. Unutmayın v0.6 ve v0.5 ağları uyumlu değildir. + Sertifikanın sürüm numarası hatalı. Unutmayın v0.6 ve v0.5 ağları uyumlu değildir. @@ -2962,19 +3238,19 @@ kullanışlı olabilir. Düğüm kodu geçersiz. - - + + Auto-download recommended files Önerilen dosyaları otomatik-indir Can be used as direct source - Doğrudan bir kaynak olarak kullanılabilir + Doğrudan kaynak olarak kullanılabilir - - + + Require whitelist clearance to connect @@ -2984,7 +3260,7 @@ kullanışlı olabilir. IP'yi beyazlisteye ekleyin - + No IP in this certificate! Bu sertifikada IP yok! @@ -2994,24 +3270,24 @@ kullanışlı olabilir. - + Added with certificate from %1 - + Sertifikasıyla birlikte %1 üzerinden eklendi - + Paste Cert of your friend from Clipboard - + Panodan arkadaşınızın Sertifikasını kopyalayın - + Certificate Load Failed:can't read from file %1 - + Sertifika Yükleme Başarısız:%1 dosyası okunamıyor Certificate Load Failed:something is wrong with %1 - + Sertifika Yükleme Başarısız:%1 dosyasında bir şeyler yanlış @@ -3875,7 +4151,7 @@ p, li { white-space: pre-wrap; } Forum Mesaj Gönder - + Forum Forum @@ -3885,7 +4161,7 @@ p, li { white-space: pre-wrap; } Konu - + Attach File Dosya ekle @@ -3915,12 +4191,12 @@ p, li { white-space: pre-wrap; } Yeni konu baslat - + No Forum Forum Yok - + In Reply to Cevap olarak @@ -3958,12 +4234,12 @@ p, li { white-space: pre-wrap; } Gerçekten %1 ileti oluşturmak istiyor musunuz? - + Send Gönder - + Forum Message Forum İletisi @@ -3975,14 +4251,14 @@ Do you want to reject this message? Bu iletiyi iptal etmek ister misiniz? - + Post as Olarak gönderin Congrats, you found a bug! - + Tebrikler, bir hata buldunuz! @@ -4010,8 +4286,8 @@ Bu iletiyi iptal etmek ister misiniz? - Security policy: - Güvenlik politikasi: + Visibility: + @@ -4024,7 +4300,22 @@ Bu iletiyi iptal etmek ister misiniz? Özel (sadece davetliler üzerine calisiyor) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. Grup sohbeti icin istediginiz Arkadaslari seçin. @@ -4034,12 +4325,22 @@ Bu iletiyi iptal etmek ister misiniz? Davet edilen Arkadaslar - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: Rehber: - + Identity to use: Kullanılacak kimlik: @@ -4179,7 +4480,7 @@ Bu iletiyi iptal etmek ister misiniz? show statistics window - + istatistik penceresini görüntüleyin @@ -4198,7 +4499,12 @@ Bu iletiyi iptal etmek ister misiniz? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT kapali @@ -4220,8 +4526,8 @@ Bu iletiyi iptal etmek ister misiniz? - DHT Error - DHT Hata + No peer found in DHT + @@ -4318,7 +4624,7 @@ Bu iletiyi iptal etmek ister misiniz? DhtWindow - + Net Status Ag Durumu @@ -4348,7 +4654,7 @@ Bu iletiyi iptal etmek ister misiniz? Eş Adresi - + Name Isim @@ -4393,7 +4699,7 @@ Bu iletiyi iptal etmek ister misiniz? RsKodu - + Bucket Bucket @@ -4419,17 +4725,17 @@ Bu iletiyi iptal etmek ister misiniz? - + Last Sent Son Gönderilen - + Last Recv Son Alinan - + Relay Mode Röle Modu @@ -4464,7 +4770,22 @@ Bu iletiyi iptal etmek ister misiniz? Bant Genişliği - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState Tanımsız AğDurumu @@ -4669,7 +4990,7 @@ Bu iletiyi iptal etmek ister misiniz? Bilinmeyen - + RELAY END RÖLE SONU @@ -4703,19 +5024,24 @@ Bu iletiyi iptal etmek ister misiniz? - + %1 secs ago %1 saniye önce - + %1B/s %1B/s - + + Relays + + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4725,13 +5051,15 @@ Bu iletiyi iptal etmek ister misiniz? hiçbir zaman - + + + DHT DHT - + Net Status: Ağ Durumu: @@ -4801,19 +5129,40 @@ Bu iletiyi iptal etmek ister misiniz? Röle: - + + Filter: + Filtre: + + + + Search Network + Ağ Arayın + + + + + Peers + Eşler + + + + Relay + Röle + + + DHT Graph DHT Çizelgesi - + Proxy VIA - + Vekil sunucu kaynağı Relay VIA - + Röle Kaynağı @@ -4942,7 +5291,7 @@ dosyaların tekrar-karılmasından kurtulursunuz. ExprParamElement - + to @@ -5047,7 +5396,7 @@ dosyaların tekrar-karılmasından kurtulursunuz. FileTransferInfoWidget - + Chunk map Parça haritasi @@ -5222,7 +5571,7 @@ dosyaların tekrar-karılmasından kurtulursunuz. FlatStyle_RDM - + Friends Directories Arkadaş Dizinleri @@ -5298,91 +5647,41 @@ dosyaların tekrar-karılmasından kurtulursunuz. FriendList - - - Status - Durum - - - - - + Last Contact Son Iletisim - - - Avatar - Avatar - - - + Hide Offline Friends Çevrimdisi Arkadaslari gizle - - State - Durum - - - - Sort by State - Duruma göre sirala - - - - Hide State - Durumu gizle - - - - - Sort Descending Order - Sirala Azalan Düzende - - - - - Sort Ascending Order - Sirala artan düzende - - - - Show Avatar Column - Avatar Sütun Göster - - - - Name - Isim - - - - Sort by Name - Isme Göre Sirala - - - - Sort by last contact - Son temas göre sirala - - - - Show Last Contact Column - Son Iletisim Sütun göster - - - - Set root is Decorated + + export friendlist - Set Root Decorated + export your friendlist including groups + + + import friendlist + + + + + import your friendlist including groups + + + + + + Show State + Durumunu Görün + @@ -5390,7 +5689,7 @@ dosyaların tekrar-karılmasından kurtulursunuz. Gruplari Göster - + Group Grub @@ -5431,7 +5730,17 @@ dosyaların tekrar-karılmasından kurtulursunuz. Gruba ekle - + + Search + Arayın + + + + Sort by state + + + + Move to group Gruba tasi @@ -5461,40 +5770,103 @@ dosyaların tekrar-karılmasından kurtulursunuz. Tümünü daralt - - + Available Mevcut - + Do you want to remove this Friend? Bu Arkadasi kaldirmak istiyor musunuz? - - Columns - Sütunlar + + + Done! + - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP IP - - Sort by IP - IP adresine göre sırala - - - - Show IP Column - IP Sütununu Göster - - - + Attempt to connect Bağlanmayı dene @@ -5504,7 +5876,7 @@ dosyaların tekrar-karılmasından kurtulursunuz. Yeni grup oluştur - + Display Görünüm @@ -5514,12 +5886,7 @@ dosyaların tekrar-karılmasından kurtulursunuz. Sertifika bağlantısını yapıştırın - - Sort by - Siralama - - - + Node Düğüm @@ -5529,19 +5896,19 @@ dosyaların tekrar-karılmasından kurtulursunuz. Arkadaş Düğümünüzü Silin - + Do you want to remove this node? Bu düğümü silmek istiyor musunuz? - + Friend nodes - + Arkadaş düğümleri - + Send message to whole group - + Tüm gruba ileti gönderin @@ -5552,13 +5919,13 @@ dosyaların tekrar-karılmasından kurtulursunuz. Deny - + Reddedin Send message - + İleti gönderin @@ -5587,30 +5954,35 @@ dosyaların tekrar-karılmasından kurtulursunuz. Ara: - - All - Hepsi + + Sort by state + - None - Yok - - - Name Ad - + Search Friends Arkadaş Ara + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message Durum iletisini düzenleyin @@ -5704,12 +6076,17 @@ dosyaların tekrar-karılmasından kurtulursunuz. Anahtarlık - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Ağ</h1> <p>Ağ sekmesi arkadaşınız olan Retroshare düğümlerini: yani size bağlı bulunan komşu Retroshare düğümlerini gösterir.</p> <p>Daha iyi bilgi erişimi sağlamak için düğümleri gruplandırabilirsiniz, örneğin yalnızca bazı düğümlerin belirli dosyalara erişmesine izin vermek için.</p> <p>Sağ tarafta, 3 adet kullanışlı sekme bulacaksınız:<ul> <li>Yayın; bağlı olduğunuz tüm düğümlere aynı anda ileti gönderir</li> <li>Yerel ağ grafiği; keşif bilgisine bağlı olarak, etrafınızdaki ağı görüntüler</li> <li>Anahtarlık; genellikle arkadaşlarınız tarafından yönlendirilen, biriktirdiğiniz düğüm anahtarlarını barındırır.</li> </ul> </p> + + + Retroshare broadcast chat: messages are sent to all connected friends. Retroshare yayın sohbeti: iletiler bağlı olan tüm arkadaşlara gönderilir. - + Network Ag @@ -5720,12 +6097,7 @@ dosyaların tekrar-karılmasından kurtulursunuz. Ağ çizelgesi - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Ağ</h1> <p>Ağ sekmesi, Retroshare arkadaş düğümlerinizi gösterir: komşu olduğunuz Retroshare ağları size bağlı durumda. </p> <p>Daha iyi bilgi erişimi sağlamak için düğümleri bir araya getirebilirsiniz, örneğin bazı dosyalarınızı sadece bazı düğümlere göstermek isterseniz.</p> <p>Sağ tarafta, 3 adet kullanışlı sekme göreceksiniz: <ul> <li>Yayın, bağlı olduğunuz tüm düğümlere ileti gönderir</li> <li>Yerel ağ çizelgesi, keşif bilgisine göre, çevre ağınızı gösterir</li> <li>Anahtarlık, çoğunlukla arkadaş düğümlerinizin size yönlendirdiği, topladığınız düğüm anahtarlarını barındırır</li> </ul> </p> - - - + Set your status message here. Durum iletinizi belirleyin. @@ -5738,7 +6110,7 @@ dosyaların tekrar-karılmasından kurtulursunuz. Yeni profil olustur - + Name Name @@ -5790,7 +6162,7 @@ anonymous, you can use a fake email. Parola (kontrol) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> <html><head/><body><p align="justify">Devam etmeden önce, Retroshare'ın olabildiğince fazla rasgelelik oluşturmasına yardımcı olmak için, farenizi ekranda gezdirin. En az %20 ilerleme gerekir, ama %100 tamamlamanızı tavsiye ederiz.</p></body></html> @@ -5805,7 +6177,7 @@ anonymous, you can use a fake email. Parolalar eşleşmiyor - + Port Kapı @@ -5849,181 +6221,195 @@ anonymous, you can use a fake email. Geçersiz gizli düğüm - - Please enter a valid address of the form: 31769173498.onion:7800 - Lütfen bu formun geçerli adresini girin: 31769173498.onion:7800 - - - + Node field is required with a minimum of 3 characters Düğüm alanına en az 3 karakter girmelisiniz - + Failed to generate your new certificate, maybe PGP password is wrong! Yeni sertifikanızı üretemedik, PGP parolası yanlış olabilir! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + Bu form aracılığıyla yeni profil oluşturabilirsiniz. +Ayrıca varolan bir profili de kullanabilirsiniz: Bunun için "Yeni profil oluşturun"un işaretini kaldırmanız yeterli. - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. - + Farklı bilgisayarlarda aynı profili kullanarak Retroshare düğümlerini oluşturup çalıştırabilirsiniz. Bunun için seçtiğiniz profili dışa aktarıp, diğer bilgisayarda içe aktarmalı ve bununla yeni bir düğüm oluşturmalısınız. It looks like no profile (PGP keys) exists. Please fill in the form below to create one, or import an existing profile. - + Görünüşe göre hiçbir profil (PGP anahtarları) bulunmuyor. Oluşturmak için lütfen aşağıdaki formu doldurun, veya varolan bir profili içe aktarın. No node exists for this profile. - + Bu profil için bir düğüm mevcut değil. Your profile is associated with a PGP key pair - + Profiliniz bir PGP anahtar çiftiyle ilişkilendirildi. - + Create a new profile - + Yeni profil oluşturun Import new profile - + Profili içe aktarın Export selected profile - + Seçtiğiniz profili dışa aktarın Advanced options - + Gelişmiş seçenekler Create a hidden node - + Gizli düğüm oluşturun - + Use profile + Profili seçin + + + + hidden address - + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. - + Profiliniz bir PGP anahtar çiftiyle ilişkilendirildi. RetroShare DSA anahtarlarını şimdilik göz ardı ediyor. Put a strong password here. This password protects your private PGP key. - + Güçlü bir parola belirleyin. Bu parola size özel PGP anahtarını koruyacak. <html><head/><body><p>This is your connection port.</p><p>Any value between 1024 and 65535 </p><p>should be ok. You can change it later.</p></body></html> + <html><head/><body><p>Bu sizin bağlantı kapınız.</p><p>1024 ve 65535 arasındaki herhangi bir değer</p><p>uygun olmalı. Bu değeri sonradan değiştirebilirsiniz.</p></body></html> + + + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> - + PGP key length - + PGP anahtar uzunluğu - + Create new profile - + Yeni profil oluşturun Currently disabled. Please move your mouse around until you reach at least 20% - + Henüz devredışı. Lütfen en az %20'ye ulaşıncaya kadar farenizi hareket ettirin Click to create your node and/or profile + Profilinizi ve/veya düğümünüzü oluşturmak için tıklayın + + + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - + [Required] This password protects your private PGP key. - + [Zorunlu] Bu parola size özel PGP anahtarını korur. Enter a meaningful node description. e.g. : home, laptop, etc. This field will be used to differentiate different installations with the same profile (PGP key pair). - + Anlaşılabilir bir düğüm açıklaması yazın. ör. : ev, dizüstü, vs. +Bu alan aynı profil(PGP anahtar çifti) ile kullanılan farklı yüklemeleri +ayırt etmek için kullanılır. Generate new profile and node - + Yeni profil ve düğüm üretin Create a new profile and node - + Yeni profil ve düğüm oluşturun Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + Varolan bir profili de kullanabilirsiniz. "Yeni profil oluşturun"un işaretini kaldırmanız yeterli Welcome to Retroshare. Before you can proceed you need to create a profile and associate a node with it. To do so please fill out this form. Alternatively you can import a (previously exported) profile. Just uncheck "Create a new profile" - + Retroshare'a hoşgeldiniz. Devam etmeden önce bir profil oluşturmalı ve bir düğümle ilişkilendirmelisiniz. Bunun için lütfen bu formu doldurun. +İsterseniz (önceden dışa aktarılmış) bir profili içe aktarbilirsiniz. "Yeni profil oluşturun"un seçimini kaldırmanız yeterli No node is associated with the profile named - + Bu profille herhangi bir düğüm ilişkilendirilmemiş Please create a node for it by providing a node name. - + Lütfen bir düğüm adı seçecek bunun için bir profil oluşturun. Welcome to Retroshare. Before you can proceed you need to import a profile and after that associate a node with it. - + Retroshare'a hoşgeldiniz. Devam etmeden önce bir profil oluşturmalı ve bir düğümle ilişkilendirmelisiniz. Export profile - + Profili dışa aktarın RetroShare profile files (*.asc) - + Retroshare profil dosyaları (*.asc) Profile saved - + Profil kaydedildi @@ -6032,87 +6418,83 @@ It is encrypted You can now copy it to another computer and use the import button to load it - + Profiliniz kaydedildi +Ayrıca şifrelendi + +Artık bunu başka bilgisayara kopyalayabilir +ve içe aktar butonunu kullanarak yükleyebilirsiniz Profile not saved - + Profil kaydedilmedi Your profile was not saved. An error occurred. - + Profiliniz kaydedilmedi. Bir hata oluştu. Import profile - + Profili içe aktarın Profile not loaded - + Profil yüklenemedi Your profile was not loaded properly: - + Profiliniz düzgün bir şekilde yüklenemedi: New profile imported - + Yeni profil içe aktarıldı Your profile was imported successfully: + Profiliniz içe aktarıldı: + + + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p - + PGP key pair generation failure - + PGP anahtar çifti üretimi başarısız - + Profile generation failure - + Profil üretimi başarısız - + Missing PGP certificate - + PGP sertifikası eksik Generating new PGP key pair, please be patient: this process needs generating large prime numbers, and can take some minutes on slow computers. Fill in your PGP password when asked, to sign your new key. - + Yeni PGP anahtar çifti oluşturuluyor, lütfen sabredin: bu işlem için büyük asal sayılara ihtiyaç vardır, ve yavaş bilgisayarlarda birkaç dakika sürebilir. + +Sizden istendiğinde PGP parolanızı girerek, yeni anahtarınızı imzalayın. You can create a new profile with this form. - - - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - + Bu form ile yeni bir profil oluşturabilirsiniz. @@ -6272,24 +6654,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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 GENEL "-//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 {boşluk: önceden sarın;}</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:12pt;"> Arkadaşlarınız size davet gönderdiğinde, Arkadaş Ekle penceresini açmak için tıklayın.</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: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-size:12pt;"> Arkadaşınızın &quot;Kimlik Sertifikasını&quot; kesip pencereye yapıştırarak, onları arkadaş olarak ekleyebilirsiniz.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + - - Connect To Friends - Arkadaşlarınıza Bağlanın - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6300,26 +6676,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-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-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-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"> -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:12pt;">Aynı anda çevrimiçi olursanız, Retroshare sizi otomatik olarak bağlayacaktır!</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: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-size:12pt;">Bağlantı kurmadan önce, istemcinizin RetroShare Ağını bulması gerekir.</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:12pt;">RetroShare'ı ilk kez çalıştırdığınızda, bu yaklaşık 5-30 dakika sürer</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: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-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-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-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-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-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-size:12pt;">Look in the Further Help section for more advice about connecting.</span></p></body></html> + - - Advanced: Open Firewall Port - Gelişmiş: Güvenlik Duvarı Kapısı Açık + + <!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: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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6327,35 +6701,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and Support - Daha fazla Yardım ve Destek Alın - - - - <!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: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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6364,7 +6716,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + Arkadaşlarınıza Bağlanın + + + + Advanced: Open Firewall Port + Gelişmiş: Güvenlik Duvarı Kapısı Açık + + + + Further Help and Support + Daha fazla Yardım ve Destek Alın + + + Open RS Website RS Websitesi Açın @@ -6457,82 +6824,104 @@ p, li { white-space: pre-wrap; } Yönlendirici Istatistikleri - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer Tanınmayan Eş + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - Bekleyen paketler - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - Hedef - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - Veri karılımı - - - - Received - - - - - Send - Gönder - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - Tiklayin ve çevresinde dügümleri sürükleyin ve fare tekerlegi ile yakinlastirma veya '+' ve '-' tuslari - - GroupChatToaster @@ -6712,7 +7101,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title Baslik @@ -6732,7 +7121,7 @@ p, li { white-space: pre-wrap; } Açıklamayı Arayın - + Sort by Name Isme Göre Sirala @@ -6746,13 +7135,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post Son İletiye göre sıralayın + + + Sort by Posts + + Display Görüntü - + You have admin rights @@ -6765,7 +7159,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and ve @@ -6863,7 +7257,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels Kanallar @@ -6874,17 +7268,22 @@ p, li { white-space: pre-wrap; } Kanal olustur - + Enable Auto-Download Otomatik Indirmeyi Etkinlestirin - + My Channels Kanallarım - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels Abone Kanallar @@ -6899,13 +7298,29 @@ p, li { white-space: pre-wrap; } Diger Kanallar - + + Select channel download directory + + + + Disable Auto-Download Otomatik Indirme etkisizlestir - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7246,7 +7661,7 @@ p, li { white-space: pre-wrap; } Kanal seçmediniz - + Disable Auto-Download Otomatik Indirme etkisizlestir @@ -7266,7 +7681,7 @@ p, li { white-space: pre-wrap; } Dosyaları görüntüleyin - + Feeds Akışlar @@ -7276,7 +7691,7 @@ p, li { white-space: pre-wrap; } Dosya - + Subscribers @@ -7435,7 +7850,7 @@ bir kimlik oluşturmalısınız GxsForumGroupDialog - + Create New Forum Forum Oluşturun @@ -7567,12 +7982,12 @@ bir kimlik oluşturmalısınız Form - + Start new Thread for Selected Forum Seçilmis Forum için yeni Konu Baslat - + Search forums Forumlari Ara @@ -7593,7 +8008,7 @@ bir kimlik oluşturmalısınız - + Title Baslik @@ -7606,13 +8021,18 @@ bir kimlik oluşturmalısınız - + Author Yazar - - + + Save image + + + + + Loading Yükleniyor @@ -7642,7 +8062,7 @@ bir kimlik oluşturmalısınız Sonraki okunmamis - + Search Title Başlık ara @@ -7667,17 +8087,27 @@ bir kimlik oluşturmalısınız İçeriği Arayın - + No name İsimsiz - + Reply Yanitla + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread Yeni konu baslat @@ -7715,7 +8145,7 @@ bir kimlik oluşturmalısınız Kopyala retroshare Link - + Hide Gizle @@ -7725,7 +8155,38 @@ bir kimlik oluşturmalısınız Genişlet - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous Anonim @@ -7745,29 +8206,55 @@ bir kimlik oluşturmalısınız [... Mesaj Eksik ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare RetroShare - + No Forum Selected! Forum seçmediniz! - + + + You cant reply to a non-existant Message Sen var olmayan Mesaja cevap veremesin + You cant reply to an Anonymous Author Bir Anonim Yazara yanit veremiyoruz - + Original Message Orijinal Mesaj @@ -7792,7 +8279,7 @@ bir kimlik oluşturmalısınız %1 üzerinde,%2 yazdi: - + Forum name @@ -7807,7 +8294,7 @@ bir kimlik oluşturmalısınız - + Description Tanımlama @@ -7817,12 +8304,12 @@ bir kimlik oluşturmalısınız - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7838,7 +8325,12 @@ bir kimlik oluşturmalısınız GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums Forum @@ -7868,11 +8360,6 @@ bir kimlik oluşturmalısınız Other Forums Diger Forumlar - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7895,13 +8382,13 @@ bir kimlik oluşturmalısınız GxsGroupDialog - - + + Name Isim - + Add Icon Simge Ekleyin @@ -7916,7 +8403,7 @@ bir kimlik oluşturmalısınız Yayınlama Anahtarını Paylaş - + check peers you would like to share private publish key with özel yayın anahtarınızı paylaşacağınız eşleri seçin @@ -7926,36 +8413,36 @@ bir kimlik oluşturmalısınız Anahtari Paylaş - - + + Description Tanımlama - + Message Distribution Mesaj Dağıtımı - + Public Genel - - + + Restricted to Group Gruba Kısıtlı - - + + Only For Your Friends Sadece Arkadaşlarınız İçin - + Publish Signatures İmzaları Yayınla @@ -7985,7 +8472,7 @@ bir kimlik oluşturmalısınız Kişisel İmzalar - + PGP Required PGP Gerekli @@ -8001,12 +8488,12 @@ bir kimlik oluşturmalısınız - + Comments Yorumlar - + Allow Comments Yorumlara İzin Ver @@ -8016,33 +8503,73 @@ bir kimlik oluşturmalısınız Yorum Yok - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: Rehber: - + Please add a Name Ad ekleyin - + Load Group Logo Grup Logosunu Yükle - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback Geri bildirim göndermek için kullanılacaktır @@ -8052,12 +8579,12 @@ bir kimlik oluşturmalısınız - + Set a descriptive description here - + Info Bilgi @@ -8130,7 +8657,7 @@ bir kimlik oluşturmalısınız Baski Önizleme - + Unsubscribe Iptal @@ -8140,12 +8667,12 @@ bir kimlik oluşturmalısınız Abone Ol - + Open in new tab Yeni sekmede açılsın - + Show Details @@ -8170,12 +8697,12 @@ bir kimlik oluşturmalısınız Hepsini Işaretle Okunmamuş olarak - + AUTHD Doğrulanmış - + Share admin permissions @@ -8183,7 +8710,7 @@ bir kimlik oluşturmalısınız GxsIdChooser - + No Signature İmza Yok @@ -8196,7 +8723,7 @@ bir kimlik oluşturmalısınız GxsIdDetails - + Loading Yükleniyor @@ -8211,8 +8738,15 @@ bir kimlik oluşturmalısınız İmza Yok - + + + + [Banned] + + + + Authentication Doğrulama @@ -8227,7 +8761,7 @@ bir kimlik oluşturmalısınız - + Identity&nbsp;name @@ -8242,7 +8776,7 @@ bir kimlik oluşturmalısınız - + [Unknown] @@ -8260,6 +8794,49 @@ bir kimlik oluşturmalısınız Adsız + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8455,44 +9032,7 @@ bir kimlik oluşturmalısınız Üzeri - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare ortamlar arası Açık Kaynaklı, </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-weight:600;">özel ve güvenli dağıtılmış iletişim ortamıdır.⇥</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-weight:600;">Eşleri doğrulamak için güven-ağı(WOT) ve tüm iletişimi şifrelemek için OpenSSL kullanarak, </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-weight:600;">arkadaşlarınızla güvenli paylaşımı sağlar. </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-weight:600;">RetroShare'ın dosya paylaşımı, sohbet, ileti ve kanal desteği vardır.</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-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; font-weight:600;">Daha fazla bilgi için faydalı dış bağlantılar:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Sitesi</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare Forumu</a></li> -<li style=" font-size:12pt; 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">Retroshare Proje Sayfası</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Takım Günlüğü</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> - - - + Authors Yazarlar @@ -8539,7 +9079,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries Kütüphaneler @@ -8581,7 +9142,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details Kişi Detayları @@ -8616,78 +9177,88 @@ p, li { white-space: pre-wrap; } Kimlik Kodu : - + + Last used: + + + + Your Avatar Click here to change your avatar Avatarınız - + Reputation İtibar - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit + + Your opinion: - - Opinion - Görüş - - - - Peers - Eşler - - - - Edit Reputation - Düzenle Reputation - - - - Tweak Opinion + + Neighbor nodes: - - Accept (+100) - Kabul (+100) + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> + - - Positive (+10) - Olumlu (+10) - - - - Negative (-10) - Olumsuz (-10) - - - - Ban (-100) - Ret (-100) + + Negative + - Custom - Görenek - - - - Modify + Neutral - + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name Bilinmeyen gerçek ad @@ -8726,37 +9297,58 @@ p, li { white-space: pre-wrap; } Anonymous identity Anonim kimlik + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID Yeni Kod oluşturun - + + All Hepsi - + + Reputation İtibar - - - Todo - Yapilacak - - Search Baslat - + Unknown real name Bilinmeyen gerçek ad @@ -8766,72 +9358,29 @@ p, li { white-space: pre-wrap; } Anonim Id - + Create new Identity Yeni Profil Olustur - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - Görüş - - - - Peers - Eşler - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - Kabul (+100) - - - - Positive (+10) - Olumlu (+10) - - - - Negative (-10) - Olumsuz (-10) - - - - Ban (-100) - Ret (-100) - - - - Custom - Görenek - - - - Modify - - - - + Edit identity @@ -8852,42 +9401,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : Kimlik adı : - + + () + + + + Identity ID - + Send message - + İleti gönderin - + Identity info - + Identity ID : Kimlik Kodu : - + Owner node name : @@ -8897,7 +9446,57 @@ p, li { white-space: pre-wrap; } Tip: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8907,12 +9506,17 @@ p, li { white-space: pre-wrap; } Anonim - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8928,7 +9532,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node Kimlik size ait, Retroshare düğümünüze bağlı @@ -8943,7 +9547,42 @@ p, li { white-space: pre-wrap; } Anonim kimlik - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8953,15 +9592,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar Avatarınız @@ -8982,7 +9641,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8997,7 +9661,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -9007,17 +9671,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - Sütunlar - - - + Distant chat refused with this person. @@ -9027,7 +9681,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -9042,29 +9696,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - Görüntüleyin - - - - - column - sütun - - - + Node name: @@ -9074,7 +9716,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9117,8 +9759,8 @@ p, li { white-space: pre-wrap; } Yeni kimlik - - + + To be generated Oluşturulacak @@ -9126,7 +9768,7 @@ p, li { white-space: pre-wrap; } - + @@ -9136,13 +9778,13 @@ p, li { white-space: pre-wrap; } Geçersiz - + Edit identity Kimliği düzenle - + Error getting key! Anahtarı alma başarısız! @@ -9162,7 +9804,7 @@ p, li { white-space: pre-wrap; } Bilinmeyen gerçek ad - + Create New Identity Yeni Kimlik Oluşturun @@ -9217,7 +9859,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9285,7 +9927,7 @@ p, li { white-space: pre-wrap; } - + Copy Kopyala @@ -9315,16 +9957,35 @@ p, li { white-space: pre-wrap; } Gönder + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File Dosyayi Aç - + Open Folder Klasör Aç @@ -9334,7 +9995,7 @@ p, li { white-space: pre-wrap; } Paylaşım İzinlerini Düzenle - + Checking... Kontrol ediliyor ... @@ -9383,7 +10044,7 @@ p, li { white-space: pre-wrap; } - + Options Seçenekler @@ -9417,12 +10078,12 @@ p, li { white-space: pre-wrap; } Hizli Baslangiç Sihirbazi - + RetroShare %1 a secure decentralized communication platform RetroShare %1 merkezi olmayan güvenli bir iletişim platformudur - + Unfinished Tamamlanmamış @@ -9460,7 +10121,12 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın.Bildirimler - + + Open Messenger + + + + Open Messages Aç Mesajlari @@ -9510,7 +10176,7 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın.%1 yeni mesajlar - + Down: %1 (kB/s) Yukari: %1 (kB/s) @@ -9580,7 +10246,7 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın. - + Add Ekleyin @@ -9605,7 +10271,7 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın. - + Really quit ? @@ -9614,38 +10280,17 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın.MessageComposer - + Compose Yeni ileti - - + Contacts Kisiler - - >> To - Kime: alanina ekle - - - - >> Cc - Cc'ye ekle - - - - >> Bcc - Bcc'ye ekle - - - - >> Recommend - Tavsiye - - - + Paragraph Paragraf @@ -9726,7 +10371,7 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın.Alti çizgili - + Subject: Konu: @@ -9737,12 +10382,22 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın. - + Tags Etiketler - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9752,7 +10407,7 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın. - + Recommended Files Tavsiye edilen dosya @@ -9822,7 +10477,7 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın.blockquote ekle - + Send To: Kime: @@ -9847,47 +10502,22 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın.&Yasla - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> Merhaba, <br>İyi bir arkadaşımı tavsiye ediyorum; bana güveniyorsan ona da güvenebilirsin. <br> @@ -9913,12 +10543,12 @@ Lütfen biraz boş disk alanı oluşturun ve Tamam'a tıklayın. - + Save Message Mesaj kaydet - + Message has not been Sent. Do you want to save message to draft box? Mesaj Gönderilemedi @@ -9930,7 +10560,7 @@ mesaji taslaka kaydetmek istiyor musunuz? Yapistir retroshare Link - + Add to "To" Kime: bölümüne ekle @@ -9950,12 +10580,7 @@ mesaji taslaka kaydetmek istiyor musunuz? Tavsiye - - Friend Details - Arkadaş Detaylari - - - + Original Message Orijinal Mesaj @@ -9965,19 +10590,21 @@ mesaji taslaka kaydetmek istiyor musunuz? Kimden - + + To Kime - + + Cc Cc - + Sent Gönderdi @@ -10019,12 +10646,13 @@ mesaji taslaka kaydetmek istiyor musunuz? En az bir alici ekleyin lütfen. - + + Bcc Bcc - + Unknown Bilinmeyen @@ -10134,7 +10762,12 @@ mesaji taslaka kaydetmek istiyor musunuz? &Biçim - + + Details + + + + Open File... Dosya Aç... @@ -10182,12 +10815,7 @@ mesaji kaydetmek istiyor musunuz? Fazladan Dosya Ekleyin - - Show: - Göster: - - - + Close Kapatın @@ -10197,32 +10825,57 @@ mesaji kaydetmek istiyor musunuz? Kimden: - - All - Hepsi - - - + Friend Nodes - - Person Details - Kişi Detayları - - - - Distant peer identities + + Bullet list (disc) - + + Bullet list (circle) + + + + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10245,7 +10898,27 @@ mesaji kaydetmek istiyor musunuz? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading Okuma @@ -10260,7 +10933,7 @@ mesaji kaydetmek istiyor musunuz? aç mesajlari - + Tags Etiketler @@ -10300,7 +10973,7 @@ mesaji kaydetmek istiyor musunuz? Yeni bir pencere - + Edit Tag Düzenle Etiketi @@ -10310,22 +10983,12 @@ mesaji kaydetmek istiyor musunuz? Mesaj - + Distant messages: Uzak mesajlar: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images Gömülü reismleri yükle @@ -10606,7 +11269,7 @@ mesaji kaydetmek istiyor musunuz? MessagesDialog - + New Message Yeni Posta @@ -10673,24 +11336,24 @@ mesaji kaydetmek istiyor musunuz? - + Tags Etiketler - - - + + + Inbox Gelen - - + + Outbox Giden @@ -10702,14 +11365,14 @@ mesaji kaydetmek istiyor musunuz? - + Sent Gönderildi - + Trash Çöp @@ -10778,7 +11441,7 @@ mesaji kaydetmek istiyor musunuz? - + Reply to All Hepsini yanitla @@ -10796,12 +11459,12 @@ mesaji kaydetmek istiyor musunuz? - + From Kimden - + Date Tarih @@ -10829,12 +11492,12 @@ mesaji kaydetmek istiyor musunuz? - + Click to sort by from Gönderene göre siralamak için tiklayin - + Click to sort by date Tarihe göre siralamak için tiklayin @@ -10889,7 +11552,12 @@ mesaji kaydetmek istiyor musunuz? Ekleri Arayın - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred Yildizli @@ -10954,14 +11622,14 @@ mesaji kaydetmek istiyor musunuz? Çöpi Bosalt - - + + Drafts Taslak - + 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 gray star beside any message. Hiç yıldızlı mesaj yok. Mesajlara yıldız ekleyerek onları daha kolay bulabilirsiniz. Bir postaya yıldız eklemek için yanındaki açık gri yıldızı tıklayabilirsiniz. @@ -10981,7 +11649,12 @@ mesaji kaydetmek istiyor musunuz? Aliciya göre siralamak için tiklayin - + + This message goes to a distant person. + + + + @@ -10990,18 +11663,18 @@ mesaji kaydetmek istiyor musunuz? Toplam: - + Messages Mesajlar - + Click to sort by signature - + This message was signed and the signature checks @@ -11011,15 +11684,10 @@ mesaji kaydetmek istiyor musunuz? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -11042,7 +11710,22 @@ mesaji kaydetmek istiyor musunuz? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link Yapistir retroshare Link @@ -11076,7 +11759,7 @@ mesaji kaydetmek istiyor musunuz? - + Expand Genislet @@ -11119,7 +11802,7 @@ mesaji kaydetmek istiyor musunuz? <strong>NAT:</strong> - + Network Status Unknown Ag Durumu Bilinmiyor @@ -11163,26 +11846,6 @@ mesaji kaydetmek istiyor musunuz? Forwarded Port Yönlendirilmiş Kapı - - - OK | RetroShare Server - Tamam | RetroShare Sunucusu - - - - Internet connection - Internet baglantisi - - - - No internet connection - Internet baglantisi yok - - - - No local network - Hiçbir yerel ag yok - NetworkDialog @@ -11296,7 +11959,7 @@ mesaji kaydetmek istiyor musunuz? Eş Kodu - + Deny friend Arkadaş reddet @@ -11354,7 +12017,7 @@ For security, your keyring was previously backed-up to file - + Personal signature Kisisel imza @@ -11420,7 +12083,7 @@ Right-click and select 'make friend' to be able to connect. kendin - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11435,7 +12098,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11455,12 +12118,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11490,7 +12153,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11559,7 +12222,7 @@ Reported error: NewsFeed - + News Feed Haber Kaynağı @@ -11578,18 +12241,13 @@ Reported error: This is a test. Bu bir denemedir. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed Haber Kaynağı - + Newest on top Yeniden eskiye @@ -11598,6 +12256,11 @@ Reported error: Oldest on top Eskiden yeniye + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11741,7 +12404,12 @@ Reported error: Yanıp sönme - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left Sol Üst @@ -11765,11 +12433,6 @@ Reported error: Notify Bildirimler - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11819,7 +12482,7 @@ Reported error: NotifyQt - + PGP key passphrase PGP anahtarı şifresi @@ -11859,7 +12522,7 @@ Reported error: Dosya indeksi kaydediliyor... - + Test Sınama @@ -11874,13 +12537,13 @@ Reported error: Bilinmeyen başlık - - + + Encrypted message Şifreli ileti - + Please enter your PGP password for key @@ -11929,24 +12592,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11970,12 +12615,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -12010,39 +12665,51 @@ Reported error: - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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">⏎ -<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;">Arkadaşının anahtarını onaylamak, diğer arkadaşlarına, ona güvendiğini göstermenin bir yoludur. Ayrıca, sadece onayladığın kişiler, güvendiğin diğer arkaşlarınla ilgili bilgilere ulaşabilir.</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;">Anahtarı onaylarsan geri dönüşü olmaz, o yüzden iyi düşün.</p></body></html> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key PGP anahtarını imzala + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -12053,6 +12720,11 @@ p, li { white-space: pre-wrap; }⏎ + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures Imzalar dahil @@ -12108,7 +12780,7 @@ p, li { white-space: pre-wrap; }⏎ Bu eşe hiç güvenmiyorsunuz. - + This key has signed your own PGP key @@ -12282,12 +12954,12 @@ p, li { white-space: pre-wrap; }⏎ PeerStatus - + Friends: 0/0 Arkadaslar: 0/0 - + Online Friends/Total Friends Çevrimiçi Arkadaslar / Toplam Arkadaslar @@ -12647,7 +13319,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12708,19 +13380,19 @@ p, li { white-space: pre-wrap; } Tüm eklentileri yetkilendir - - Loaded plugins - Yüklü eklentiler - - - + Plugin look-up directories Plugin arama dizinleri - - Hash rejected. Enable it manually and restart, if you need. - Karılma reddedildi. Eğer isterseniz, elle etkinleştirip ve yeniden başlatabilirsiniz. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] + @@ -12728,27 +13400,36 @@ p, li { white-space: pre-wrap; } Hiçbir API numarası verilmedi. Lütfen eklenti geliştirme kılavuzunu okuyun. - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. Hiçbir SVN numarası verilmedi. Lütfen eklenti geliştirme kılavuzunu okuyun. - + Loading error. Yüklenme hatasi. - + Missing symbol. Wrong version? Sembolü eksik. Sürümü Yanlis? - + No plugin object Eklenti bulunamadı - + Plugins is loaded. Eklenti yüklendi. @@ -12758,22 +13439,7 @@ p, li { white-space: pre-wrap; } Bilinmeyen durum. - - Title unavailable - Baslik Yok - - - - Description unavailable - Açiklama yok - - - - Unknown version - Bilinmeyen sürüm - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12784,15 +13450,16 @@ normalde, karılmaları kontrol etmek hazırlanmış eklentilerin zararlarından korur. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins Eklentiler - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - PopularityDefs @@ -12860,12 +13527,17 @@ hazırlanmış eklentilerin zararlarından korur. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. Bu pencereyi kapatmak görüşmenizi sona erdirip, eşinizi bilgilendirir ve şifreli tüneli kaldırır. @@ -12875,12 +13547,7 @@ hazırlanmış eklentilerin zararlarından korur. Tüneli sil? - - Hash Error. No tunnel. - Karılma Hatası. Tünel yok. - - - + Can't send message, because there is no tunnel. @@ -12961,7 +13628,12 @@ hazırlanmış eklentilerin zararlarından korur. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12985,11 +13657,6 @@ hazırlanmış eklentilerin zararlarından korur. Other Topics Diğer Başlıklar - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13244,7 +13911,7 @@ hazırlanmış eklentilerin zararlarından korur. PrintPreview - + RetroShare Message - Print Preview RetroShare Mesaj - Baski Önizleme @@ -13592,7 +14259,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation Onayla @@ -13602,7 +14270,7 @@ p, li { white-space: pre-wrap; } Bu bağlantının sisteminiz tarafından kullanılmasını istiyor musunuz? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13631,7 +14299,12 @@ ve Arkadaş Ekleme Sihirbazını açın. %1 bağlantılarını işlemek istiyor musunuz? - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. %1 RetroShare bağlantısının işlenen kısmı %2. @@ -13798,7 +14471,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Derleme dosyası işlenemedi - + Deny friend Arkadaş reddet @@ -13818,7 +14491,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Dosya isteğinden vazgeçtiniz - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. RetroShare'ın bu versiyonu OpenPGP-SDK kullanır. Yan etki olarak, sistem paylaşımlı PGP anahtarlığını kullanmaz, ama tüm RetroShare istekleriyle paylaşılan kendi anahtarlığı vardır.<br><br>Muhtemelen bu yazılımın yeni sürümüne henzü geçtiğiniz için, mevcut RetroShare hesapları PGP anahtarlarından bahsetmesine rağmen, böyle bir anahtarlığınız yok görünüyor. @@ -13849,7 +14522,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Beklenmeyen bir hata oluştu. Lütfen bildirin ' RsInit::InitRetroShare beklenmeyen dönüş kodu %1'. - + Multiple instances Çeşitli durumlarda @@ -13886,11 +14559,6 @@ Kilit dosyası: Tunnel is pending... Tünel bekleniyor... - - - Secured tunnel established. Waiting for ACK... - Güvenli Tünel kuruldu. ACK yanıtı bekleniyor... - Secured tunnel is working. You can talk! @@ -13905,7 +14573,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13955,7 +14623,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13965,7 +14633,7 @@ Reported error is: - + enabled @@ -13975,12 +14643,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13995,42 +14663,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago %1 gün önce - + Subject: @@ -14049,6 +14724,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -14060,6 +14741,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -14069,7 +14760,7 @@ Reported error is: Hzlı Başlangıç Rehberi - + <!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; } @@ -14107,21 +14798,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > Sonraki > - - - - + + + + + Exit Çıkış - + For best performance, RetroShare needs to know a little about your connection to the internet. En iyi performansı alabilmeniz için, RetroShare'ın internet bağlantınız hakkında biraz bilgiye ihtiyacı var. @@ -14188,13 +14881,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back < Geri - + <!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; } @@ -14219,7 +14913,7 @@ p, li { white-space: pre-wrap; } - + Network Wide Geniş ağı @@ -14244,7 +14938,27 @@ p, li { white-space: pre-wrap; } Otomatik olarak Paylaş gelen dizini (Tavsiye) - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14356,7 +15070,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB %1 KB @@ -14392,7 +15106,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14423,7 +15137,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14445,7 +15159,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14554,7 +15268,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14579,7 +15293,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW YENI @@ -14915,7 +15629,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? Resim boyutu iletim için aşırı büyük. @@ -14933,7 +15647,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. TÜM RetroShare ayarlarını sıfırla. @@ -14978,17 +15692,17 @@ Reducing image to %1x%2 pixels? '%1':%2 Günlük dosyası açılamadı - + built-in yerlesik - + Could not create data directory: %1 - + Revision @@ -15016,33 +15730,10 @@ Reducing image to %1x%2 pixels? RTT İstatistikleri - - SFListDelegate - - - B - B - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) Burada bir anahtar kelimesi verin (en az 3 uzun) char @@ -15223,12 +15914,12 @@ Reducing image to %1x%2 pixels? Indir - + File Name Dosya Adi - + Download Indir @@ -15297,7 +15988,7 @@ Reducing image to %1x%2 pixels? Klasör Aç - + Create Collection... @@ -15317,7 +16008,7 @@ Reducing image to %1x%2 pixels? - + Collection Koleksiyon @@ -15560,12 +16251,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration Ag Konfigürasyonu - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) Otomatik (UPnP) @@ -15580,7 +16281,7 @@ Reducing image to %1x%2 pixels? El ile Yönlendirilmiş Kapı - + Public: DHT & Discovery Açık: DHT & Keşif @@ -15600,13 +16301,13 @@ Reducing image to %1x%2 pixels? Dark Net:Yok - - + + Local Address Yerel Adres - + External Address Harici Adres @@ -15616,28 +16317,28 @@ Reducing image to %1x%2 pixels? Dinamik DNS - + Port: Kapı: - + Local network Yerel ag - + External ip address finder Harici IP adresi bulucu - + UPnP UPnP - + Known / Previous IPs: Bilinen / Önceki IPler: @@ -15663,13 +16364,13 @@ kullanıyorsanız da yardımcı olur. RetroShare şu sitelere ip'nizi sorabilir: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15679,23 +16380,12 @@ kullanıyorsanız da yardımcı olur. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15705,17 +16395,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15725,90 +16463,95 @@ HiddenServicePort 9191 127.0.0.1:9191 Temizle - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test Sınama - + Network Ag - + IP Filters - + IP blacklist - + IP range - - - + + + Status Durum - - + + Origin - - + + Reason - - + + Comment Yorum yap - + IPs - + IP whitelist - + Manual input @@ -15833,12 +16576,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15861,32 +16710,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15916,99 +16766,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -16041,7 +16812,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions Hizmetİzinleri @@ -16056,13 +16827,13 @@ Check your ports! İzinler - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16326,7 +17097,7 @@ Select the Friends with which you want to Share your Channel. Indir - + Copy retroshare Links to Clipboard retroshare Link Panoya Kopyala @@ -16351,7 +17122,7 @@ Select the Friends with which you want to Share your Channel. Bağlantıları Buluta Ekleyin - + RetroShare Link RetoShare Bağlantısı @@ -16367,7 +17138,7 @@ Select the Friends with which you want to Share your Channel. Paylaşım Ekle - + Create Collection... @@ -16390,7 +17161,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16416,11 +17187,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16429,6 +17201,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16489,7 +17266,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile Profil Yükleniyor @@ -16733,12 +17510,12 @@ This choice can be reverted in settings. - + Connected Bagli - + Unreachable Ulasilamiyor @@ -16754,18 +17531,18 @@ This choice can be reverted in settings. - + Trying TCP TCP çalisiliyor - - + + Trying UDP UDP çalisiliyor - + Connected: TCP Bagli: TCP @@ -16776,6 +17553,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown Bagli: Bilinmiyor @@ -16785,7 +17567,7 @@ This choice can be reverted in settings. DHT: Iletisim - + TCP-in @@ -16795,7 +17577,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16805,7 +17587,7 @@ This choice can be reverted in settings. - + UDP @@ -16819,13 +17601,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -17042,7 +17834,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause Duraklat @@ -17091,7 +17883,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17232,16 +18024,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads Indirmeler + Uploads Gönderiliyor - + Name i.e: file name @@ -17437,25 +18231,25 @@ p, li { white-space: pre-wrap; } - + Slower Yavas - - + + Average Ortalama - - + + Faster Daha hizli - + Random Rasgele @@ -17480,7 +18274,12 @@ p, li { white-space: pre-wrap; } Belirt... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... Kuyruka Tasi ... @@ -17506,39 +18305,39 @@ p, li { white-space: pre-wrap; } - + Failed Basarisiz - - + + Okay Tamam - - + + Waiting Bekliyor - + Downloading Indiriliyor - + Complete Bitmis - + Queued Sirada @@ -17579,7 +18378,7 @@ ve tekrar indirecek Sabırlı olun! - + Transferring Aktariliyor @@ -17589,7 +18388,7 @@ Sabırlı olun! Gönderiliyor - + Are you sure that you want to cancel and delete these files? Bu dosyalari iptal et ve silmek istediginizden emin misiniz? @@ -17647,7 +18446,7 @@ Sabırlı olun! Lütfen yeni -ve geçerli- bir dosya adı girin - + Last Time Seen i.e: Last Time Receiced Data Son Görülme @@ -17753,7 +18552,7 @@ Sabırlı olun! Son Görülme Sütununu Göster - + Columns Sütunlar @@ -17763,7 +18562,7 @@ Sabırlı olun! Dosya Aktarımları - + Path i.e: Where file is saved Yol @@ -17779,12 +18578,7 @@ Sabırlı olun! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17794,7 +18588,7 @@ Sabırlı olun! - + Create Collection... @@ -17809,7 +18603,7 @@ Sabırlı olun! - + Collection Koleksiyon @@ -17819,17 +18613,17 @@ Sabırlı olun! Dosya paylaşımı - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17865,7 +18659,7 @@ Sabırlı olun! Klasör - + Friends Directories Arkadaş Dizinleri @@ -17908,7 +18702,7 @@ Sabırlı olun! TurtleRouterDialog - + Search requests Arama istekleri @@ -17971,7 +18765,7 @@ Sabırlı olun! Yönlendirici Istatistikleri - + Age in seconds Yas saniye orani @@ -17986,7 +18780,17 @@ Sabırlı olun! Toplam - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer Tanınmayan Eş @@ -17995,16 +18799,11 @@ Sabırlı olun! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition Arama istekleri yeniden bölümle @@ -18203,10 +19002,20 @@ Sabırlı olun! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18217,11 +19026,6 @@ Sabırlı olun! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18411,7 +19215,7 @@ Sabırlı olun! Baslat - + My Groups Gruplarım @@ -18431,7 +19235,7 @@ Sabırlı olun! Diğer Gruplar - + Subscribe to Group Gruba Abone Ol diff --git a/retroshare-gui/src/lang/retroshare_zh_CN.qm b/retroshare-gui/src/lang/retroshare_zh_CN.qm index a574987afda68419473f0170c6de7a4e487cb83a..872d0d7b58dfd29b70293890bc3c7710cb8eb2d3 100644 GIT binary patch delta 21054 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 Rmh9pw><&#{c}@_w{txg#ezX7p delta 30961 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

_Eh#A;s@ zT3>;q-l!4U6rhOTCkdUdqaNySEf8Egv_qNKQs`227NTDybp0_N+BrjTTl0k|eYMcz z?I@xv;eipo%A`u%iNbu@kiG-?^>Bcsb50Bs~$*GB7_0=t0A~Xd=&;p+$7dupfGUtXL#UO!r-N=;n`aY z!@dndn;}97^uYu9{17akq0J9!2|)-O)MkSaycuap^g&_Vz5|G9T48(}JaFn)VQL5> zKxMtcDm@ieFDp!)2&;M0Rj_(5CThJ>nC<)!_Aey}vu8LG|M^gub0wVkn6|>aXFrMN z^%bJObwf3tCBztWh)wG%Ec%&GLaC#|`fdfpdK3!lC$%6Ur;@OF3bKP*991dD`PYPP zJ95#YY9nkPnL#wIgRmnvir6}>~g${Z&gkr1m!`3c8b!tNiQ7miKBSYC4!j-6RS!issq z$=Q{Nd3O}f``eKamnUS_4ttLrlW0;}CV%6$%Hn74n!F#kQrjHaJZu>%f(^lbm1AC$)ON5uDA?YHs@J5S-%u-%>Z><$Uf`ha09^}3r z!uu83B%IzLe7dA3_SXvGM>%NeYAzJ5nN93g6X9nQi1z6r;b$DIqkg$>f6uGvPPPdf+j}vgYl!AYJiiEjHdJ9M& z$iK+`Ug}8H>>ca05Tg1zjk!*7LW8BcO#Y>qb#uf8KCWQBj)^Es#xqapDXin9!tix3fNxS|aCM)_*J{I^qlKzYW27fwh?VF7qVXb(sxYg|TarDwFT) z%mT9-5iK6ThR=k(r*~o_qH>8{{>Vm6xlTgTZZ_IH9#KAvjqNlWLy#nszZ6*5f{w(R zSY+~qwJbs#L3GiXMeILEl(d|U*E^#j^FSuEwkc9Jyf4V)V=uGuH6g+ali2u&bKn_k zunAjN5fz_i6Ebs%{t%mJyTG3|Y~ou9oWv#>E%1OL%sQUIkwr0UJgnr#M7GGcfar4@ zwm7RUQK|bZHuX61ErZ#L4xP~KjbJNQJwbB)YZzPY1LfH5$JPdi5Stv&)_p^G{Fucy z^tB`Qt1jCt<{`MK*p_Fv5su%o#7Ky=#9*2HyC2)y5d~DxCAJg!0xNjNQfw)xlZown z>5LxPAePqP39+Bm*}(-!%$$d@gPY=@D|cD?+rMD{p?%n)-=9&>v}cF4PUtzkW5;!P zkecUY@*#&64qKrxtx4aIU7_MlB3n(0T`qrD<}oh#Xsl{<;A z@nWwoL)(M>+3OdHC|xty2j|Wtlul+Jtk_`B#;`A0{gCYbWIqbw(bnwank!Mn9P03r zBf?=O5-)A5?ARn;=4Lrm`IUI3)8&ZgKH*hb?jfP#30`lSD_re%-f%@R>ZH~Rm(1f0 zFLi?7NaBryuE4q$@}~6yh@Sk-oAym6K{bLlL1=r!a$MBBB+YxOa!(BrW6K?k4 zUB9E1yeyZyy}67Ev8qgAWo6#2YiXji*H+$r=@4S$R`VXGI+3ufEBENP9FD?```E$k zW_IWOrpzHqY{~njz!mTLOX0p&3J+XTc;>mnvo#cErYOAjOyQjjg#{h|i+M6xzIBeW zaXUyR|8SW1``m(fVOu^>(;4CNBPxn?;x`!|)(~drW#)km4imXBZaK4w_$>nuGL1*V zF`kbrVULt+J&&09mdLV8CR=}*Pa6&$8u*dVC_fKbb!(aYfgO*^$|TWB9r^q|=v!9m z!xvsfaycS~$9k8oo-kw%G2iINMN1{4~@7y&DZ3$nVQhzbg!tXq#E&RlSaG7l56rS>^J>q}A>3rX0M5)yi z`TlqWmF)gJHTO1@at}Xj>)u;jW%3z*{GXnU(CHt`&tKd@;R=h#OPW(+ZCtR5GH_k{# zvunv@qdxNYODhwZCd*_;E&Rh+R7xpr_$M{u|Cdz$>2w+5_pb1-7AS8*DgLeVM|AtI z%4D-&%H(@@@^1qnu}_Ei_b139pD=2QMDKsXyGENyQN}&!c)|gK~NbND{87^$o{S>>Q9v-_UDCI;UUuQemM#U zdx;hO(A|4ALag`|4k;`3^wV(^lN-fm_DId#x{J+w_d$U%Qgj&=MYOY%*anpinOwy-14a?I8pQVVaQ=@b zVh40_Shj=Mv3>}2rj^*unnHZAS?pdJ)-!mD*nJLS%H9;K*gdua{%}C-X@CxxZph@* z{}y{Tg_gH?E%uz0PxSkOOn!BU*sH@+VgtS_9C=do6cE+K*5c5Y5lC2?iUB1bk+AhI z(IR|CW2Kd7aStWBJYTegv_a?BMYLRn6*!d;gJR);hFM#SK_~J^D7Ql##V`cMAesDY z8!?o;G41HBFkz4wx(eOD=+_FDdWxZ26NsXJi(xZziC_C8PHbjEY#1(1ZhQpuVE4o+ zDQ7WF`COcG81rB`iQ@Erz9f`CD9*a_iP+H-;;e7uiH&;tQ;fy~u*qg|;Z!HM-bv!Z z?Wp5heHUZ2Fu!bz7_(p&e05Wq>}rr0vlr8k>FEm3El_yzKurM+Xznc@@{Ta%C%?HI9F<7Dz-{t5#wD7-RJ;ippyi(|x98==$- zwu`GnRuF|OQuwiwOg_Jh!uX8}KgEk{VxZiu{Kd7MF@hT=h-)`xpl7#S+!$VfaDP2t z-1KG$O0#z|h5JWk@|YNLOQUwg8ZHtOyPQTnaZ@G_zohWaa&cShu9#80A#QKvLp0`& zm~?0>3CZOYo*pBU-6C;^{tPm-Fmc!7ub7RD0>6U?#pJqH3re)lVseA6m{W68*lV^z z-_i>Gri#hC1{14PN}+vInWA)8+&vbabo*B^Wnm(+@K|yGn#UyQe~J4~B@iF!CZ>kC zB8s;c)5k0zk*mc+(^E0G#>9V8>p%jI;y+ew@b$IC(_=ppyYf>!Q!az}zANGxE23_= zlXzxHF3dDr%%}6!rJ2870 zjG=s4F=rTp)|&@nj%{9a_hE%8?G&Ert}r7@;f2;RS!l7s&5IT0*O$pB=@m|G=qBcD zdrIuwZt;o>dPoPFi&s1`>E_c~yjn{_P+P4qU?zw+4{#B$JHU#5FBJ2p!NFZ^Cf=xr zHyoD`XLPW)rVSKt%s^)Mt*dxr9USo0D>B)r(OAd}NsWi)6Ap{$inLTg)dd6JL}$NkV0?9`f6&6>9|lXT)@w|&l#sRZ7c6s+%rVZH7)% z^@mc`kAcK~+>)xI)75>q%|1 z7i0c^fWpD|rFI@~i9d{xI+4xBx{dD5Xxys~U3{ubKcw_qkQqQmL&{as0db{ELjWr}MUv!4- zZb@F79I-awy3}_s(w9a%6h=Er{dGy`sE?5PoA#h)KWvqJbACW6GNeKD2tm0(8q^ZT zG3caZX#%C$yi6Lt;4GF|oRvo8e@6eKgf!x<1x0y7X~Z9l^>t@yWF}(njyp2>-CxqE z8gq!JHIqiYjzfz+RT^CqA<2-I`%>@@%qfhp>ZJ)g(}+dSQ+U%} zVZnm`;sI&WyENjnA4!wDp^?)#PnvSoiG-5z(v&yY-?zRrbs3bZ*b0k`+aE$^HUH?9`2B$9qmy3FP5SUalsAyr3E{xqbraoEj%<2ndoY1;YB>? z{ex0W7n>xj$z(MOWm?&Zlkx`dcUfUXjKVn{3K!RuVv?QEsIdc`(a4=A#avoWA}b>; zuIq{!v|m!}uSBBdY0|RX0^*gsODl>F5Ra@btt?#z72+Fd)p5kaYwM&{&o-lqm@BPC zlb@s@8)5&4w#hq$r`2RK`x`R(__7Kg{80E?lGZn?fS8vot&hY7uf|IoPFc{_Y$R=X zl7{)-a?-|b3!tRaq%C8hLr)t>TTA<3+J;NpE+Fc^^^>+gM532lBvaTF1X^_@a6BUIJpY7*o6V(N zv1L$QBucxMi^THsWr}RCl+2^iO?W9KWBN`&2RGS@4Ic7a+N0WnXxv!Z^AI)1{72H> z^Z5Ppy_B*OQ);~nWwPLWX@A!YbQgxpQx;0+OKm{H z)lRyg_r(p$N*A^u7(EJ>GSB6rvfLnL-AhEG_D#At2Dx(NGwITRSy)k*CS^Cln{OPV z@O6KgEFxPb-#ij@#=J|sbiKn1RG@vW((UpQ@NAW&yD^wLyS`kymxCy%J1P}iz*v@H z3ahk|$&y-1&zl}V@qR^m|7Qn0TV3hHZFn;GKhhUt2=T|YrSHkJu^?rv^wZUjgsed6 z*8x~frNz?k0JJ^A@}=Tc*Gbq=Ld7OQsT*6H$s4@iLWS#JtJqaY;DV=$JqSQU)>XxI z1tdJXr&71Z?-Daq+Q;zu?+vQIh8`y&ownJ635k$Y>x~i__J<5)BRl|5JLc1g= zyfRSL1ao;ba;~arL?(QAqN-V6~=dbnog^O^DC}lsrQ4RLSjXvpA zgCp_g8>3W1c|P%lq#Ej(OYDJ{YUsUB=qQa<4Si~Ti!tb@8n!r&gmXSJS>*|;VHY6U zyV$_Rq3`lVHB|-k9R6D2bZ6C6D|WEP8hHncdLon0w^z9S zm}=VFUC3PrE8Lr+@O&eMcSg$OAs!0%O;dQinQD3jrmB9~sUn@=l6SbPW*@@~ja{IM zYBCOqN{A{dXg>*tJu2(GWow9g4^quvTa`#~Q$;VVjw$trDqA7Pe!HrcEXRd@?o%z@ zf1N~evT9lT&%~yUmY;_?`wUX8e)t3PCl^)g%0NQT>{J_f zHA0jfq}nnviiDNpR9g$Ir5;kU0c%yMTf8xC zSzDE6tVZn7E`@~~ROzXkkxC`14i8;|S;iFAG1n+!)6c1nbwMzStfM-8DVV6;8JTR3 zK_-t#SDhKr0!@Gystao(h<&mOstbo4p-lT#nagXToXA#XCe(t5a+N7+G^$Jg>?3x} zL3O!%JZ6mAsV+a+j)G{A%9j1J*CDE_lkJH=a#iL2gA(|Ax+?F6JyFXTRlyR>O0;oT zJ;>^c_JyPBaUgVL>o?Wo8(&B`RHS;^G=l`|jz-Exie4u3wv)++d{Y=&Phs3(h5LS~ zp7(>&F3D3p-{VBII$ZUl86?(wj_O@8!g1g|)%zrfIBu=#b7zz%#ah+Z)ekY(_DfZC z40RE!C6h-usd;_$&Z&`BEzU+u>Sl;q%C@=AR%&%)XlYcdeG7kjGp zSQ*LvoYi`l6nIE`wV^)DY*38a91eT_8m%sofP^DFTwU_PJ=6<{3ePT<$!@<D%@EhZ}3qAr^Q*DF?*$)jg0 ze3`2*{|2tLY>3*yaVsY6CaSAWe@iT`tGaFohHCgZb-iyJ5am+U_2*-$ZUYx}1FBo0T_ZYALBT2=$MV_=b=19UVAU(-t9vJ#F&nr??XxEmOK|q8`@N}w*7i*GpzBb!yR+0o zx=JWe%BcNqYtKun)d5qMBhBxs9%=m>TKi+7I_SF{GLJ^0zp=`Zm@`z#TRoY#| zB3i50kA!(13{cxrHsQ*9t9oY<3IWft>RnjFL*pB(cTMymHtCdl&-urg*6gcJQO_jS z?lFi2qkVaBHs}sQa_wh<2r}){!MWgT^?s}wXG{C456|xp511!Y6dtNiS6uEI!tS=_0pXQXo%8pO!!hP*AfxA^EpK?R}%6&0>v_<_Y{0r9lK2U#g8El6F6gyaT|6AA)m@W@N}v=wGetvZu=MB2Yz=Gr z6iO}0pMo%Y$h5T7w>DF z%Hn};G|)H~wIjN?T&8gUi>6KN4%q*eE}D)zdZKYqU*UxinLMw%#?_dJxv?&q&QD<1 zGrTo!A%`$6xlSfexTSFmYe;OYo2F+IPeiw`8jt;Wz=nG?o*D!pr<)qjmf@)VK5D#- zaK+_YYWieUCn3LzrmvVrw12&3Xf5k?wD~Sz;}ceRoYDk#?uOoXKbbOsJEDmiBbblsZ_9uHC1ZN+`Kf#%iWA zB(cUjnyJ&FF>fL>=~C6K&o@ zw8u*mo&F7Doucqe%jCgNHPOFa(YWZOSx_N{D06^jVVy)gz*Eh_7jQJA zTWb~tR6@lxQL|X+iFFxTnJi(UW`)p!xNoAyDsL>Er&+Pc5%Zt@HLFY+C?e}=*0gXU zwxzUYZKZnn@WfNIzD!N{fu;)YTQ%$V3_+5q(&ECjQ@)MS0Fi0-}_yiTm#4b7!_D^U3y z(_Gqup7&5+O*V)9-~FJ;e)AdWx0fd85?a@H=V-1}h(bO;Rdb^cE_m;)=Efm6OnEog z+;|s4!sb4jd&9h-v}HAqo#4=Ze$_ng;)p1_Ra4mP2fAh&O<{;DDyE;OG%uQc#yW{x z3M+5ayc{xw_`4L%%hWT_>Ta5sPlM1On5}u=#Tl)XDw+>gDBqhAarYe23-5SE^TYKU zqG)AJu|p)WE2Xs3AkcZG!hS;)-mjpQCSd=F$66IqIYDznt8FO~+k986w|7A8S*X?j zg0f!jt=0cVvU~QS);JC^=yqM1tgt|9cRvx$wyD|*PsbzaHQNaDEeO+AYKJjy)K*)0 z06gOucWq^BE-IjWZ51Ck;=zNpRb8v&f!AuQy+|N-v68mN<tWH|Tty74W&eXQp6oDmoOSCPvSg|p- z1~$OBS6Y|juBf0UYg_w|g9J-yTgO9^{>`*)UD2{B)kWKOC?stS*0#NDyI_H~eLZ-{ zqZ(~{{GIxW+P^npXg1#0cIXEk+#90p_$C31eRgR(J)2JKpD|julUOF6t&zz(*Vnq4 zu!DvCk$3RBs<`RS_SQo~wLJr!AxW*mYjz56`^ywAZIH;BbVPHfHT$3A(;?fp$nV8m$E>+M#sDcX<%aZ=l`nT>~pyXUXIT{1F_& zkr-Xm?q33j>*}aY-38IQBx_T@As>03u1#ByRoi>Kv7qR{91?4(k}3S`+NDp>9&7o6*i?)5#4o&wqd|MpV>6QM zA2Qk2rZV~D77C}oRrq#;_T+?5#9zl~PcK50ztmNG<`Z6EX}&h2{0L(Ak801!l3FK| zA6TP3{{v;lqf6Qg4Pj)rbXILY*GdfLn-`6&AzX|K2<2_9Kqd;MoS48Ys`b7vz&hNn@rT zxz=V%#E(6#V7i@Im6!l2>0c8_wg2Kce=@4-;A)CRf^r8J1npLMRo zv#7!?z>kv@HR@yl3uz&x8W~VI_ic7XP~3YyXXP} z;eq!SfMH04jJkk~(nzM$WeTb^nXK}4nf%&jT_9o+Vu>!WjU5SlJ1b0oCX;RZuJE>< zOl~dG1x~<&w4S1{KaR8g9`;!mSZr;CU>KvbxYi&cbArMfeRY=T)+DMH=q$;&!MP%t z%&(fxvIq7%=$+1z1qnO@^HKdjJER(L^oos6Mpa41-X?b{^gV| zXm}=csID%!6V^2L&EwJ zx)sZyBR*SnE7zb_y}M8se`_ypuuQl1?I%q92J6<@Go%|mW%BiNb?fqKqrB*-OTv;n z7Cc>-v^JImhq=0>V=ido-IK|uJ+bPN^PuGg{dLJjk5Far(CsZ-fCkHbT}lHy`C30+ zYP&fII#YFr^|15nqDx-;W&gJh#FqeMldgoV0{mT;-|b7ZpZX}YtM zFf@&>>CWcDez!c(WkyJ7sJ55Mdd$^jSz*SVzUi`TYyB-{6+VcTDX4qvt{nSCbbf~} z*H}PQ#iG06R*babSG?{>ROKp7(y20QDXFVkS6MA8*DihyVI*1diWGmM?Cdq1rV3Crf| zKGk^wM>k#fsU7^r)~UL$yJFGNNe$9{eOnRPd#Fr4b*8SU`cL#9e(HYD!<&4>SCfA5 zXhkpdJohj%GnHOimxk4ju6osw^ALHSUOO2#I+w54g+a^JQx$HmC6oEKSLm0d*Cp9u z`r@kInEVBwsrcE56mFbKZ`w5(g;cCep%l}be=^L)YxSi^pMVQ(t1nvuE_%dQg^P?b z`8=(@a0K2&+B{6dy0<{W+^=SPT%YB7POuUWMVz8-t$r}`kGOC@AdF_#ge|yscKm0 zQc2(Eow;kCl8-#lP0ap1_UgHkHY`yD03tS--RO_anzpS`fUfg5iJ_0PhL?Mt>B0H-OJFG zOP-)lnXwhY=(EC6PWpXgt7BQkX??05+4-t*`qc5uQ4tQ(r@m{4#f)?H2fHGPtzAwg zAKF--ehh8JMh*4H9FJoL$eOG_rOU&d`egm-Qy8lqMtz1GtRbRMX?*ZKA`I_1{0I!df~goVZBgtu&b|!BhXU#6+ZYgY`dexD(B~sQ>-88Ybu4 z>i>+g-Iy6DrCKQ_fxnOMqF1Dq|7E&M!1LOngFYehq`ej4{X?>)t*@M}``z79m>=%rsQP1;~B2Og6u_p~jnASWppRsM%>e zSYW6-_yD?prwk1*--F%XmnrO7sBr%%g&DmSp6w@-jlHQb(OqHwA%(Y(8mzVp@yUX` zgHM}oXrzJmuv@WAN-+8_T()4814f-#_5*tOl>X zixHLf%Va$cE1c!1aN~A`n{s9Hp)(Xde<_U2^6;8Af1>xT@(>LcvdKV=AYhYoeHmNbO-Lu;pStReh`9rE_2hKTsB za3I$V6I$gG@1J0p;G2tdyT~x%^kvLP1R5r9!w^jFWth^v9dzQYA@V{qqL$4Kvl?$C zp=w>j{In=^b^{Ibzl+F#<{4sC%MpGr8e)u2XeSObEVA7=uc;x{2lul+=wOKZ3tH?K zVTju|8~w_MGWooGg&V3HR`?^j{hVc3br_DS#Wcej;Wn`sdkky*Dj{v}WJq{sA?~+P zp=GdPqpJrTOq^lkLk!I$d&8!F*NN6nGHjY@8^TeB#9B|Vwxx<8af~bS|IHT-Ndvsm zOrL4kQTH(x58pBDm~;d#xUEdSw;lM2Sl~&8^OFp_mPZj^P{Xk6%^PBWzcwU)}% zVc1=x5f%~dRA|4;uxB80z+N{Edj}$4==@k=pXG)FNqDfn`8J{@RJyI<;K&e6^PM)N zSBC@Y_QH_feFstO37PCgf#L99u2`qEUEz?1hNGp%zzoY6j*memwBfDcL@YkVqZ@{E zz44~uA%=4&B9T9IHe@aiBtAXfkh!rD{!WIA6`LU~e`>f?aS!n|yA0Vu)&x9pM??0Q zK+H8~$P_O3GURlJsMZfRM;U7z$oOl%ui@_ginp ze8*11(PD5$OlFkjjIrB>J}QyCPR6rPc@diiQMstpV3F~&1j?WV3)D{w&nPGA<$UOy%-;i?U%_48yTzbT8?-=-B=SBWHnulHHT$jId)fL zZF@*=XRNW#vl-~v>Wp=s$AVpr4P)`3Yt_akRq=ukti~ouh#{thMyEQ7V{8k#t}WC6pt<&gSvD=;qk>7bSnc|jo%>i4K|J%j|%3<4P(e3 zWzrySNWb(r6#%RxS#Mf0aMi-gzwPb=ZCJ7JHwYPDR z@C51kXycNMPY_{ug+qoaJmMr%SXWIZ+qzsPAEfN(-?q!YMU|s*>3#|Mzb6^v+PuXi zdIjTZzq44Q7A{j%y*931dlo%x2jf~Z9LyT6G2!tLVqbq4w>#7%)@_J!XUT9x$EC*P z=2(U_Bg>dP8;Qrt2;-gvd-(X5#7aKD!v_brD zamTiSsHao-5C`D5Q2DA%J}BOJe&;8Y(J{uXJ5bWRO2&&b%b*{aER(q&H(pyRLbO)n z&BnzT!dPSeiblxoLX7v)PY@se&G+(8iDq(Hah=dA{ zO=VkV;d85}rgBEu>)g|(N}n+18?T$H?@T4(+ICZ|G6`sI&otE?_JjDw6TNubZ2Cv=4&z{$uLl3Qtx#*wo{n zEofH7nLO@cO6Yc5lUEPedAr{-`6p)bN`#~;CYrn}3B-q82Coy(t6=g`KSVL=YVz3t ziAK#=7|pFFpA)FVvmTiG%6~X$>iYvXSfeuauQ?2>bPT5c9iPHy>rF#VaabIaW*R#8 zGA7f;bP!xnpG3fnu$WOJ*T=BA0ninOL>Gx0IN8Xr?! z-DgC` zg<3CUs3{#o$^LOP9a>Tvj?3M2_&5F?C9Aa8bj;oZ6B!*$|BQQ!wQOxnXU3Jmn3+sx z3g_d%FQ)VAA80h}F`d^zi3Vy+nX8~g&ySk2Iz_>OB$~1-#bNPHvgvwcD}4P_+LYVb z10~l=Q=Ts*cd4%_zv^f75tf_o?Yc~yCYTBmF|@PdO@()!;Nz@~XG||@4S-#{nLgA) zuyMR#`qbJDL8+YS+aVu(<3H0>JR%jHkcy^1RiG&GuGjxb`0A>W)RkCe$%k zAMJ};(#hQ5d>Le3E6feILD^&Onj4-)Mpd$cxp94bqxkHVx$)#ZXprQYoA9edZ6}(W z9M6RR`1Q!#RLCX%tghLylnVF>pu*O|;&;*orQ3K5(f(zPiR`bL# zGg`E<<|!VZ(ZJN1r+#{Zw)`5ILV7Fnv>#B3rt8epFCu$xR?8gOJ_6nKbLN@FP>oFu z%(Dl36T3OXJhyKZnCIh*=DEEk)c-@w^MWx095%x||5q}y->>Evs*9m}XpRw#SU@q@ z9MeZacir8*DBd13z8}qtOT$XC3(Sj?P$>n@GB5t(imJOXZhWs=*6q#A%c@PolGy^8 z!p?FsS+!0Ix8GNIw7J5}4(4UE!_kn@E425N$$x~H;|@m?Exux2TX7iHhjurwoeNd3 zRMEU1t!h3X&%7ZYe=m8@()1F+TXrb+9>k=5-Rze>U%%0=X>f zX5RNWA9I5K<}?w7VE#*US`ONtTaTL$9^Ql0bagdzx`ZKr{KlN#=QF;0t#3Y+)(=_x zW%KFT2T0f)r|{qfh1r|T_%0J44RkQ)bf1m2!bi;4(P8F!cg?xgULs@-mC0ONnsdEe z;a#H4dG{})DF54hcN7F)Si$@>0x!^NmHC-d$C|`KH<(}k^#aqRYt8Q$w_tbAPTQK^Xo)uCF{nd-vn6RGfjsn-~-^(jh1$JR)p-fbFbs zhmoNZ9U?+){{@Cl3<(bP3;dU;>Z&2Z(w*YUWtK~IJ0g@B*=XUnL8@U%HbG5@!h3q+ zpCK6GOvBH)`V_)(-C&Zf|jz=rk*s`to)10;F?b8U@m(T$`Sd>CLN``f zvody0PT0X=!hcTIxdjDU9K4~lmiVhaLYepteS}5vH)Diy@i?Vqdc(d#8=-Njk*#LU z8hhBweR#XcE`$0ErKz?4bA?jgmIw#0(9j46S4%)>7%mhT-`iWTYxe(lQW@JxVYZVX z_WyZaZJq5VzD}MwUgiFE6PsalnBW)T7v|6@Ggoct-d%?*30U^8 zQ|!D$!y+6yga^QIfvZ{6CJbs0mm$WQpbQQ1gFY zSuG#!KUuzB6cl7fJ(@xo#DSNfH)!bDcX=4u9R z_HQxeUB5are%tkq*+fq#qI=fBVP82W#opOE2S)^?SDy+HvR{M^aCGZP2I#3fqYs0nA3k6n9KYIQ+9r>nN>RC;P_dxW!Rmj$;++I72D)@51O zAFO3dQIUP#?@lH|fK#bwdvcOV=6>JzzTe;TKF|Bkf%TtaRVYpu2i#rHbv?1Ma{Nv5 z`T}njbsEZ}^dvs!J=I(B_(!{UkDnet?fB_KuMy&s-K*K(ZIG^!@}sQj73sHZ&Y<*5 zc4Vt~u3{5M zr83rWP?}&r9~Pfd5E*pY9Yn;6%3)PS*a8xJ{TP$XWR0tskc>#<)quhX9&SY6kTU@0 zV4^z0E?ZVAKERH=3D6_If!#o*DB2kEin<%^a>yT!MezrX?e*)p4KxQH9Si_cRE|Zm zY|ikNM>~ROctSnu4-ewUrCpsry%7CPUSd;D zOePjVaM8R|&en1ZO4E6Eok2r`9~T%mKt$Yww1&NEkU}z?8y`z7#xCJ7ooEk&s*cx;l()r03ZDtQ{e;73?{dIW_1!e=`m{=AzRSwa{Iz4f}8!s*`hAmF-Y}jXGJD(LR+0EO; zdD6Tk0GUTDtfNSrlh*_~;0GrRvil0qpurFeioNySOL}U$Dg#yRBe5EQ%~e32$<koCpYhyY#^Jp|26) z?7YA4m6+;n+_gqMajvkv)m5T=5OBjQ+)?i-^#!`0f4mbmVL3VBJ3d@Mh&sN%r_V0A zk92-Y@IbRXS2(_JeE-&h%@bWuj-LH$#`1xfgmOR@jx>dx_s7S`Bn{25nDu*syO&|M9L@u@0wW zD<;27Jb||0tC`42Y#P`n$n3t=ma^Qg9OZduUjO?n3ptx-AZPs=XPgKHG*XN>qfd=S z>2HoUDlt^(hUq(X+YHEQTeegV($z`BZfjGg+~W`UZ8AqTfSXfx;T~&2+}~j!vYz19 zG})!oFL(q*!}atKEj<5D-oAXP>>gCz0hw+ZAz~WhTQxlvGHjqj0eL8<8m68hnD_V% zcg!$kuL`)+nY~oJdistpxe?f>C-_KfNg9To!K|st=CCr&aMv^tt;nmxTvUTl97wF0 zQAP^`0*JFafe2|3z-m!w;NpgGJ_|gnZdxh>(55=TWAJ_>8gmD1Y3;_Ebjx?xKM#xh zO2S*Tgz1+7)rwV`MwV2`7O|m3%K7O`5>wmnn36x;B?J4Wq$fr8@zX9xzYzMYYY%ah zt<3Q*9kKKHgpDK|J>??H3i@}4DeVNSAm8^}>f=*s1m&pmfwGeQCIlekk=Sx##(C=Q zp@@QsPRl%lBrBgfExlg{%uZ=nqgHN#;t0^fX%Td!U2gJtKq=9@4KJ7mHfmXG0tHM|v)oj5k8)oduAozIt= zfiG@id%RL%>L<^Le<3cm3XNE1kTBByw7|V(lmET-q~l%nmUYm_`~v33$B6h1R0D*t z#iMQ<%#e(xT>n5MDZPc+2 z)DRpVfuueLuzKWVY?)HWw{IPEd6=|0kyo$0@d^%t)As)yEg$W^f_khU1Wdj<5>|>f zu8RM@yYO70si}vLPx9krw&@vnoIY2`^Bb!L4PQQFH&oBU?bgoWc856vf=9@PiZ{L{JpHYNM4ZJNa7umvB z!1!{L=by9LP5uz+^z`m?fTG(1^{eU#)kyQ;fRCK3w37t2v3@{eX0wStLEC}Z*-N-~rI_5JVlCv`8K>PqI66qZ6Oj%Bn z6h5k9rwiQGC$H-WcK~6`>(c{X1MULSrrk{}sS79w&38Uc+T3KwsuP3?@J;j#1A6>k zud0Kt*78e7oR#AeQC0#{emBj*)|=YPq;b zT*#i>A(pYvpRg1p|M9uw6EdJ}$l?9iPEg8+vx7KJh?S}cs9MUS>>TFBgAdLGhZ zhz7&8gDTbz8$<6^-%!n4R@YU_0X1Pz`mA8J?u-of_&tcJsZ%>dtxZ}m05pN_-2ZdY z%Iy8p%H*!^ElM@NFU=8|vKPVXRj*}UrR=R&gg|4z5T1;W*~Q+9&4%M+N+Z!}nC{Kr)s3Sp7)yxhic9|518pp>vhm_~lZz_VQpQPV^(3u4@-N# z$|BQjt?U0|*J8(pzNh~5rswtxjyFbUx%cUbDdTLBX1Q4^emD~z7qAm=A|E?xNR_jl zLBB7&%DN>6)b%E;?AWmQAZv?Tite0d^b|4>9NUR~IY8SGHr+Zh$aRsRGfI)PR&J;_ zBF=DQLw%$%zafGsc!^O9BDx=WQ)uI`hmC$HR@@khg((q1`gv+NTi%x)ZuQ!z98{w` zWiOk-9b!C&sF*N=SemYVc?U;g2Im4$BCa~kTZjArWmq&B=^)TnN(aGvM1S3k_p~Su zM;ogXHT(51 zq>h%$HOl8FcdO2j+#J+=mor1t;vIjS#XHov+>Pvms&kVs#4QWi4M)Y#1Il$+gd z)_H|gakcr}HJ0^!7M{15kIT%*?tMEtGQJfyHnQ9QSG;Cnq507923XVn%wy`^tugTo z3Lr0>!ha$YKPCSA#Y!EbC{?5!zZ3nIs$61PQd(_GEHYuEsBYsiWR9Nv!q{0;uq|VEn<1{t(R78F$=Inm^z!re_&QPK@{W4 z(O8Y^&qxsN+B@l($~O?N3q3fX*(GIV-`^N7K==v7$|+|+RT1KRCWGt@KK6|H{*-{G z3}|tD%>C4M>ph>{`|BO4ewM8IzD*K7Pj-HP$w)UCHepw~ipyn~0i5O%ES+RdS40V` zdBPzL*bqM%2*o3apIX_B0?`=9Qe>*A0uB~WaEmaI;Aws{!bFf0^SfJkr5dyzDXc+1 zWv{6fmouRDQ^Uc>Ea0I`6yzzSkdZ)=B9uJ$_w(87xzbgs=W?aWYoTdgdrvB>%J(-|j05Fb;7#G%e$zaTFh{U^mM zSK6h3r?<@UKfb(s4^JGV)@I$FM4aoc(X%LMeT@za9W=+u_G4yZs{I%pElztPxH?3l zBXApeb&%@hx4t(&g@2TJzL=ccki&j?LMkT3!+pDcrf=#y!8bimKQ2&e%&F`=L@D@y zhm-_AbC$PFE)^NFl(3IV#JLyeQV5H&5eJx%$tX-Nf;fO^2EU zIt>NlW%k0cOPBjKoUBaZ%qBOh25RO=k|FDeg9KwZ&L%zKr>`yjIS(9!OejxFZ*I;U zjvGbCG+nY?ipPOBJbbnFk~EJdY@ePm%@YN#FbeA~RfbeXUZ7S+(Fb=4=sWB;z|(9= z@#QjBdY3dedFJKSsm3;`$ySr2zT-YT@p0y0mQ$Tt_eVHQjD?+XU=|W0Dzhh~c_YhJ zcUO5w!(i24Kis?Qk?ZUdC6x$IXxpIv@kt;`fo+cOJk(uJDYYzhf9o2jfz*gf@ly35 z)k=vLUYeWw7!apb*dMB`)yjS|MN26Y8&~ihLH6ucsdz#DrcWlecdG7xQGS znZYLzY7$aqYGkXlL$YFKgIDg}ooQ0i?T^CV%sDY>yL5{+*LVH!aea-iHq(6ex^N(j z&*I3y4TD%2EkNql?b4|__w}UG32rxiLL~{@A(U#it?j=bcc4jV;a6CO48>PwJRAR9 z2c>^F)X6kW;F&Q + AWidget - + version 版本 @@ -21,12 +21,17 @@ 关于 RetroShare - + About 关于 - + + Copy Info + + + + close 关闭 @@ -495,7 +500,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language 语言 @@ -535,24 +540,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -588,24 +597,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -635,8 +656,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -741,7 +767,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar 点击更改您的头像 @@ -749,7 +775,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -757,7 +783,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A 不适用 @@ -765,13 +791,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage RetroShare 带宽使用 - + Show Settings 显示设置 @@ -826,7 +852,7 @@ p, li { white-space: pre-wrap; } 取消 - + Since: 自从: @@ -836,6 +862,31 @@ p, li { white-space: pre-wrap; } 隐藏设置 + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -899,7 +950,7 @@ p, li { white-space: pre-wrap; } 已允许接收 - + TOTALS @@ -914,6 +965,49 @@ p, li { white-space: pre-wrap; } 表单 + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -942,14 +1036,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -963,17 +1049,32 @@ p, li { white-space: pre-wrap; } 更改昵称 - + Mute participant 忽略参加者 - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby 邀请好友加入此聊天室 - + Leave this lobby (Unsubscribe) 离开此聊天室(退订) @@ -988,7 +1089,7 @@ p, li { white-space: pre-wrap; } 选择要邀请的好友 - + Welcome to lobby %1 欢迎进入聊天室 %1 @@ -998,13 +1099,13 @@ p, li { white-space: pre-wrap; } 话题: %1 - + Lobby chat 聊天室聊天 - + Lobby management @@ -1036,7 +1137,7 @@ p, li { white-space: pre-wrap; } 您想退订此聊天室吗? - + Right click to mute/unmute participants<br/>Double click to address this person<br/> 右键单击可以取消/忽略发言者 <br/> 双击对此人说话 <br/> @@ -1051,12 +1152,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1102,7 +1203,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies 聊天室 @@ -1141,18 +1242,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies 聊天室 - - + + Name 名称 - + Count 数量 @@ -1173,23 +1274,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby 新建聊天室 - + [No topic provided] [主题未设置] - + Selected lobby info 所选聊天室信息 - + Private 私人 @@ -1198,13 +1299,18 @@ p, li { white-space: pre-wrap; } Public 公开 + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. 您尚未订阅此聊天室;双击聊天室名称可进入聊天。 - + Remove Auto Subscribe 取消自动订阅 @@ -1214,27 +1320,37 @@ p, li { white-space: pre-wrap; } 启用自动订阅 - + %1 invites you to chat lobby named %2 %1 邀请您进入聊天室 %2 - + Search Chat lobbies 搜索聊天室 - + Search Name 搜索名称 - + Subscribed 已订阅 - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1249,7 +1365,7 @@ p, li { white-space: pre-wrap; } - + Lobby Name: 聊天室名称: @@ -1268,6 +1384,11 @@ p, li { white-space: pre-wrap; } Type: 类型: + + + Security: + + Peers: @@ -1278,12 +1399,13 @@ p, li { white-space: pre-wrap; } + TextLabel 文本标签 - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. @@ -1292,7 +1414,7 @@ Double click lobbies to enter and chat. 双击进入聊天。 - + Private Subscribed Lobbies 订阅的私聊聊天室 @@ -1301,23 +1423,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies 订阅的公共聊天室 - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies 聊天室 - + Leave this lobby - + Enter this lobby @@ -1327,22 +1444,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1395,7 +1532,7 @@ Double click lobbies to enter and chat. 取消 - + Quick Message 快速消息 @@ -1404,12 +1541,37 @@ Double click lobbies to enter and chat. ChatPage - + General 常规 - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings 聊天设置 @@ -1434,7 +1596,12 @@ Double click lobbies to enter and chat. 启用自定义字号 - + + Minimum font size + + + + Enable bold 启用黑体 @@ -1548,7 +1715,7 @@ Double click lobbies to enter and chat. 私聊 - + Incoming 接收 @@ -1592,6 +1759,16 @@ Double click lobbies to enter and chat. System message 系统消息 + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1683,7 +1860,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1706,7 +1883,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat 群聊标准样式 @@ -1755,17 +1932,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close 关闭 - + Send 发送 - + Bold 粗体 @@ -1780,12 +1957,12 @@ Double click lobbies to enter and chat. 斜体 - + Attach a Picture 附加图片 - + Strike 删除线 @@ -1836,12 +2013,37 @@ Double click lobbies to enter and chat. 重置为默认字体 - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... 正在输入... - + Do you really want to physically delete the history? 您确认要删除聊天记录? @@ -1866,7 +2068,7 @@ Double click lobbies to enter and chat. 文本文件 (*.txt );; 所有文件 (*) - + appears to be Offline. 可能已下线。 @@ -1891,7 +2093,7 @@ Double click lobbies to enter and chat. 处于忙碌状态可能无法回复您的消息。 - + Find Case Sensitively @@ -1913,7 +2115,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1928,12 +2130,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1943,7 +2145,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1954,7 +2156,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1989,12 +2191,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -2004,7 +2206,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2162,7 +2364,12 @@ Double click lobbies to enter and chat. 详情 - + + Node info + + + + Peer Address 节点地址 @@ -2249,12 +2456,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2290,6 +2492,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2345,7 +2552,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2378,17 +2585,7 @@ Double click lobbies to enter and chat. 添加新好友 - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - 本向导将帮助您连入好友的 RetroShare 网络中。<br>有如下方法可用: - - - - &Enter the certificate manually - 手动输入好友证书(&E) - - - + &You get a certificate file from your friend 通过好友的证书文件(&Y) @@ -2398,19 +2595,7 @@ Double click lobbies to enter and chat. 将好友的好友加为好友(&M) - - &Enter RetroShare ID manually - 手动输入 RetroShare ID (&E) - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - 通过 Email 发送邀请(&S) -(对方将收到一封电子邮件其中包括如何下载使用 RetroShare 的说明) - - - + Text certificate 证书文本 @@ -2420,13 +2605,8 @@ Double click lobbies to enter and chat. 使用 PGP 证书的纯文本形式 - - The text below is your PGP certificate. You have to provide it to your friend - 下面的文本使您的 PGP 证书。您需要将其提供给您的好友。 - - - - + + Include signatures 包含签名 @@ -2447,11 +2627,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below - 请将您好友的 PGP 证书粘贴至下面的文本框中 + Please, paste your friend's Retroshare certificate into the box below + - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files 证书文件 @@ -2532,6 +2717,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email 通过邮件邀请好友 @@ -2557,7 +2782,7 @@ Double click lobbies to enter and chat. - + Friend request 好友请求 @@ -2571,61 +2796,102 @@ Double click lobbies to enter and chat. - + Peer details 节点详情 - - + + Name: 名称: - - + + Email: Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: 位置: - + - + Options 选项 - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: 添加至好友分组: - - + + Authenticate friend (Sign PGP Key) 为好友的 PGP 密钥签名 - - + + Add as friend to connect with 添加为可以建立连接的好友 - - + + To accept the Friend Request, click the Finish button. 点击完成可接受好友请求。 - + Sorry, some error appeared 抱歉,出现错误 @@ -2645,7 +2911,7 @@ Double click lobbies to enter and chat. 您的好友详情: - + Key validity: 密钥有效性: @@ -2701,12 +2967,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed 证书载入失败 - + Cannot get peer details of PGP key %1 无法获取PGP密钥 %1 的节点详情 @@ -2741,12 +3007,13 @@ Double click lobbies to enter and chat. 节点 ID - + + RetroShare Invitation RetroShare 邀请 - + Ultimate 绝对 @@ -2772,7 +3039,7 @@ Double click lobbies to enter and chat. - + You have a friend request from 您有一个好友请求来自 @@ -2787,7 +3054,7 @@ Double click lobbies to enter and chat. 节点 %1 在您的网络中不可用 - + Use new certificate format (safer, more robust) 使用新证书格式(更安全,更强大) @@ -2885,13 +3152,22 @@ Double click lobbies to enter and chat. *** 无 *** - + Use as direct source, when available 可用时,作为直连数据源。 - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others 批量互荐好友 @@ -2901,12 +3177,17 @@ Double click lobbies to enter and chat. 好友推荐 - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: 消息: - + Recommend friends 推荐好友 @@ -2926,17 +3207,12 @@ Double click lobbies to enter and chat. 请选择至少一个好友以接收。 - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring 将密钥添加到钥匙环中 - + This key is already in your keyring 密钥已存在于您的钥匙环中 @@ -2949,7 +3225,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2959,8 +3235,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2970,8 +3246,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2981,7 +3257,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2991,17 +3267,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3864,7 +4140,7 @@ p, li { white-space: pre-wrap; } 论坛发帖 - + Forum 论坛 @@ -3874,7 +4150,7 @@ p, li { white-space: pre-wrap; } 主题 - + Attach File 附加文件 @@ -3904,12 +4180,12 @@ p, li { white-space: pre-wrap; } 新建主题帖 - + No Forum 无论坛 - + In Reply to 回复 @@ -3947,12 +4223,12 @@ p, li { white-space: pre-wrap; } - + Send 发送 - + Forum Message @@ -3963,7 +4239,7 @@ Do you want to reject this message? - + Post as @@ -3998,8 +4274,8 @@ Do you want to reject this message? - Security policy: - 安全策略: + Visibility: + @@ -4012,7 +4288,22 @@ Do you want to reject this message? 非公开(仅基于邀请) - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. 选择群聊好友 @@ -4022,12 +4313,22 @@ Do you want to reject this message? 已邀请好友 - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: 联系人: - + Identity to use: @@ -4186,7 +4487,12 @@ Do you want to reject this message? DHT - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off DHT 关闭 @@ -4208,8 +4514,8 @@ Do you want to reject this message? - DHT Error - DHT 错误 + No peer found in DHT + @@ -4306,7 +4612,7 @@ Do you want to reject this message? DhtWindow - + Net Status 网络状态 @@ -4336,7 +4642,7 @@ Do you want to reject this message? 结点地址 - + Name 名称 @@ -4381,7 +4687,7 @@ Do you want to reject this message? RS Id - + Bucket @@ -4407,17 +4713,17 @@ Do you want to reject this message? - + Last Sent 上次发送 - + Last Recv 上次接收 - + Relay Mode 中继模式 @@ -4452,7 +4758,22 @@ Do you want to reject this message? 带宽 - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState 未知网络状态 @@ -4657,7 +4978,7 @@ Do you want to reject this message? 未知 - + RELAY END @@ -4691,19 +5012,24 @@ Do you want to reject this message? - + %1 secs ago %1 秒前 - + %1B/s %1B/s - + + Relays + + + + 0x%1 EX:0x%2 0x%1 EX:0x%2 @@ -4713,13 +5039,15 @@ Do you want to reject this message? 从未 - + + + DHT DHT - + Net Status: @@ -4789,12 +5117,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4930,7 +5279,7 @@ you plug it in. ExprParamElement - + to @@ -5035,7 +5384,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map 分块视图 @@ -5210,7 +5559,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories 好友目录 @@ -5286,90 +5635,40 @@ you plug it in. FriendList - - - Status - 状态 - - - - - + Last Contact 上次联系 - - - Avatar - 头像 - - - + Hide Offline Friends 隐藏离线好友 - - State - 状态 + + export friendlist + - Sort by State - 按状态排序 + export your friendlist including groups + - - Hide State - 隐藏状态 - - - - - Sort Descending Order - 按降序排列 - - - - - Sort Ascending Order - 按升序排列 - - - - Show Avatar Column - 显示头像列 - - - - Name - 名称 + + import friendlist + - Sort by Name - 按名称排序 - - - - Sort by last contact - 按最后联系时间排列 - - - - Show Last Contact Column - 显示最后联系时间列 - - - - Set root is Decorated - 根节点前显示展开符 + import your friendlist including groups + + - Set Root Decorated - 根节点前显示展开符 + Show State + @@ -5378,7 +5677,7 @@ you plug it in. 显示分组 - + Group 分组 @@ -5419,7 +5718,17 @@ you plug it in. 添加至分组 - + + Search + + + + + Sort by state + + + + Move to group 移动至分组 @@ -5449,40 +5758,103 @@ you plug it in. 全部折叠 - - + Available 可用 - + Do you want to remove this Friend? 您是否要删除此好友? - - Columns - + + + Done! + - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP IP - - Sort by IP - 按IP排序 - - - - Show IP Column - 显示IP列 - - - + Attempt to connect 尝试连接 @@ -5492,7 +5864,7 @@ you plug it in. 新建组 - + Display 显示 @@ -5502,12 +5874,7 @@ you plug it in. 粘贴证书链接 - - Sort by - 排序方式 - - - + Node @@ -5517,17 +5884,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5575,30 +5942,35 @@ you plug it in. 搜索 : - - All - 全部 + + Sort by state + - None - - - - Name 名称 - + Search Friends 搜索好友 + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message 编辑状态消息 @@ -5692,12 +6064,17 @@ you plug it in. 钥匙环 - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. RS 广而告之:此处的消息会发给当前连接的所有好友。 - + Network 网络 @@ -5708,12 +6085,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5726,7 +6098,7 @@ you plug it in. 新建配置 - + Name 名称 @@ -5779,7 +6151,7 @@ PGP要求填写此信息,但为了保持匿名,您可以填写假地址。密码(检查) - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5794,7 +6166,7 @@ PGP要求填写此信息,但为了保持匿名,您可以填写假地址。密码不符 - + Port 端口 @@ -5838,28 +6210,23 @@ PGP要求填写此信息,但为了保持匿名,您可以填写假地址。 - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5881,7 +6248,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5906,12 +6273,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5927,12 +6299,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5949,7 +6326,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6059,7 +6441,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6067,12 +6454,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6088,21 +6475,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6261,29 +6633,18 @@ p, li { white-space:pre-wrap;} <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-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"> -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:12pt;">当您的好友向您发送邀请后,请打开添加好友窗口。</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: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-size:12pt;">粘贴好友的 "ID 证书" 至窗口来添加他们为好友。</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> + - - Connect To Friends - 连接到好友 - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6294,26 +6655,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-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-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-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"> -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:12pt;">只需与好友同时在线,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: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-size:12pt;">您的客户端在能连接好友前,需要先接入 RetroShare 点对点网络。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">首次使用 RetroShare 时,这将花费 5-30 分钟的时间。</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: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-size:12pt;">当可以建立连接时,DHT 状态 (位于状态栏) 将变绿。</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: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-size:12pt;">几分钟后,NAT状态 (也位于状态栏) 将变黄或变绿。</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:12pt;">如果仍为红色 ,表示您的防火墙非常顽固, 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: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-size:12pt;">关于连接的更多问题请请参见帮助。</span></p></body></html> + - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> + @@ -6321,71 +6680,37 @@ p, li { white-space:pre-wrap;} <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-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"> -p, li { white-space:pre-wrap;} -</style></head><body style=" 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:12pt;">您可以通过打开外部端口改善 Retroshare 的网络性能。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">这将加快程序的连接速度,让更多的节点与您相连。 </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: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-size:12pt;">最简单的方式是启用您路由中的 UPnP 自动映射功能。</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:12pt;">由于各路由器的设置不尽相同,您需要知道您的路由器型号,通过Google搜索具体的设置说明。</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: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-size:12pt;">如果这些都不管用,不必担心,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: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-size:8pt;"></p></body></html> - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-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-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-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"> -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时遇到问题? </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) 请看 FAQ Wiki。虽然其中内容略显陈旧,但我们正在努力更新。</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) 查看在线论坛。提出您的问题,讨论程序功能。</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) 尝试 RetroShare 内的论坛功能 </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:12pt;"> - 这些论坛将在您与好友建立连接后上线。</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) 如果您仍有困难,请电邮联系我们。</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;">祝您 Retroshare 分享愉快。</span></p></body></html> + - + + Connect To Friends + 连接到好友 + + + + Advanced: Open Firewall Port + 高级:打开防火端口 + + + + Further Help and Support + 更多帮助与支持 + + + Open RS Website 访问 RS 网站 @@ -6478,82 +6803,104 @@ p, li { white-space: pre-wrap; } 路由状态统计 - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer 未知节点 + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - 目标 - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - 发送 - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - 点击可拖拽节点,通过鼠标滚轮或'+','-'键可缩放视图。 - - GroupChatToaster @@ -6733,7 +7080,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title 标题 @@ -6753,7 +7100,7 @@ p, li { white-space: pre-wrap; } 搜索描述 - + Sort by Name 按名称排序 @@ -6767,13 +7114,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post 按新贴文排序 + + + Sort by Posts + + Display 显示 - + You have admin rights @@ -6786,7 +7138,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6884,7 +7236,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels 频道 @@ -6895,17 +7247,22 @@ p, li { white-space: pre-wrap; } 创建频道 - + Enable Auto-Download 启用自动下载 - + My Channels 我的频道 - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels 订阅的频道 @@ -6920,13 +7277,29 @@ p, li { white-space: pre-wrap; } 其他频道 - + + Select channel download directory + + + + Disable Auto-Download 禁用自动下载 - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7267,7 +7640,7 @@ p, li { white-space: pre-wrap; } 未选择频道! - + Disable Auto-Download 禁用自动下载 @@ -7287,7 +7660,7 @@ p, li { white-space: pre-wrap; } - + Feeds 订阅 @@ -7297,7 +7670,7 @@ p, li { white-space: pre-wrap; } 文件 - + Subscribers @@ -7459,7 +7832,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum 新建论坛 @@ -7591,12 +7964,12 @@ before you can comment 表格 - + Start new Thread for Selected Forum 新建主题帖 - + Search forums 搜索论坛 @@ -7617,7 +7990,7 @@ before you can comment - + Title 标题 @@ -7630,13 +8003,18 @@ before you can comment - + Author 作者 - - + + Save image + + + + + Loading 正在载入 @@ -7666,7 +8044,7 @@ before you can comment 下一条未读 - + Search Title 搜索标题 @@ -7691,17 +8069,27 @@ before you can comment 搜索内容 - + No name 未命名 - + Reply 回复 + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread 新建主题帖 @@ -7739,7 +8127,7 @@ before you can comment 复制 RetroShare 链接 - + Hide 隐藏 @@ -7749,7 +8137,38 @@ before you can comment 展开 - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous 匿名 @@ -7769,29 +8188,55 @@ before you can comment [ ... 丢失消息 ... ] - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare Retroshare - + No Forum Selected! 未选择论坛! - + + + You cant reply to a non-existant Message 您无法回复一个不存在的消息。 + You cant reply to an Anonymous Author 您无法回复一个匿名作者 - + Original Message 原始贴文 @@ -7816,7 +8261,7 @@ before you can comment %1, %2 写道: - + Forum name @@ -7831,7 +8276,7 @@ before you can comment - + Description 描述 @@ -7841,12 +8286,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7862,7 +8307,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums 论坛 @@ -7892,11 +8342,6 @@ before you can comment Other Forums 其他论坛 - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7919,13 +8364,13 @@ before you can comment GxsGroupDialog - - + + Name 名称 - + Add Icon 添加图标 @@ -7940,7 +8385,7 @@ before you can comment 分享发帖密钥 - + check peers you would like to share private publish key with 选择您希望与之共享个人发帖密钥的节点 @@ -7950,36 +8395,36 @@ before you can comment 密钥共享给 - - + + Description 描述 - + Message Distribution 传播范围 - + Public 公开 - - + + Restricted to Group 仅限于小组 - - + + Only For Your Friends 仅限于好友 - + Publish Signatures 发布签名 @@ -8009,7 +8454,7 @@ before you can comment 个人签名 - + PGP Required 需要PGP @@ -8025,12 +8470,12 @@ before you can comment - + Comments 评论 - + Allow Comments 允许评论 @@ -8040,33 +8485,73 @@ before you can comment 无评论 - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: 联系人: - + Please add a Name 请添加名称 - + Load Group Logo 加载小组Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -8076,12 +8561,12 @@ before you can comment - + Set a descriptive description here - + Info 信息 @@ -8154,7 +8639,7 @@ before you can comment 打印预览 - + Unsubscribe 退订 @@ -8164,12 +8649,12 @@ before you can comment 订阅 - + Open in new tab 在新标签中打开 - + Show Details @@ -8194,12 +8679,12 @@ before you can comment 全部标为未读 - + AUTHD 仅签名文章 - + Share admin permissions @@ -8207,7 +8692,7 @@ before you can comment GxsIdChooser - + No Signature 无签名 @@ -8220,7 +8705,7 @@ before you can comment GxsIdDetails - + Loading 正在载入 @@ -8235,8 +8720,15 @@ before you can comment 无签名 - + + + + [Banned] + + + + Authentication @@ -8251,7 +8743,7 @@ before you can comment - + Identity&nbsp;name @@ -8266,7 +8758,7 @@ before you can comment - + [Unknown] @@ -8284,6 +8776,49 @@ before you can comment 未命名 + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8479,44 +9014,7 @@ before you can comment 关于 - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</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 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-weight:600;">RetroShare 是一款开源的、多平台可用的、</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-weight:600;">去中心化的、个人安全交流平台。</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-weight:600;">您可以与好友安全的共享文件,</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-weight:600;">利用PGP的Web-of-trust信任模型来认证好友,通过OpenSSL加密您的所有通信。</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-weight:600;">RetroShare 支持文件共享、聊天、邮件和频道订阅功能。</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-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; font-weight:600;">了解过多请看链接:</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;" 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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare 主页</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare 论坛</a></li> -<li style=" font-size:12pt; 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">Retroshare 项目页面</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare 团队博客</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare 开发者推特</a></li></ul></body></html> - - - + Authors 作者 @@ -8567,7 +9065,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8609,7 +9128,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8644,78 +9163,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation 信誉 - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - 节点 - - - - Edit Reputation - 编辑信誉 - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom - 自定义 - - - - Modify + Neutral - + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name 未知真实姓名*** @@ -8754,37 +9283,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID 新 ID - + + All 全部 - + + Reputation 信誉 - - - Todo - 待办 - - Search 搜索 - + Unknown real name 未知真实名称*** @@ -8794,72 +9344,29 @@ p, li { white-space: pre-wrap; } 匿名 ID - + Create new Identity 新建身份 - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - 节点 - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - 自定义 - - - - Modify - - - - + Edit identity @@ -8880,42 +9387,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8925,7 +9432,57 @@ p, li { white-space: pre-wrap; } 类型: - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8935,12 +9492,17 @@ p, li { white-space: pre-wrap; } 匿名 - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8956,7 +9518,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8971,7 +9533,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8981,15 +9578,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -9010,7 +9627,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -9025,7 +9647,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -9035,17 +9657,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -9055,7 +9667,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -9070,29 +9682,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -9102,7 +9702,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9145,8 +9745,8 @@ p, li { white-space: pre-wrap; } 新建身份 - - + + To be generated 等待生成 @@ -9154,7 +9754,7 @@ p, li { white-space: pre-wrap; } - + @@ -9164,13 +9764,13 @@ p, li { white-space: pre-wrap; } 不适用 - + Edit identity 编辑身份 - + Error getting key! 错误:密钥获取出错! @@ -9190,7 +9790,7 @@ p, li { white-space: pre-wrap; } 未知真实姓名*** - + Create New Identity 创建新身份 @@ -9245,7 +9845,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9313,7 +9913,7 @@ p, li { white-space: pre-wrap; } - + Copy 复制 @@ -9343,16 +9943,35 @@ p, li { white-space: pre-wrap; } 发送 + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File 打开文件 - + Open Folder 打开文件夹 @@ -9362,7 +9981,7 @@ p, li { white-space: pre-wrap; } 编辑共享权限 - + Checking... 正在校验... @@ -9411,7 +10030,7 @@ p, li { white-space: pre-wrap; } - + Options 选项 @@ -9445,12 +10064,12 @@ p, li { white-space: pre-wrap; } 快速入门向导 - + RetroShare %1 a secure decentralized communication platform RetroShare %1 ― 一个分布式安全通信平台 - + Unfinished 未完成 @@ -9488,7 +10107,12 @@ RetroShare 将暂停对此目录的访问。 提示 - + + Open Messenger + + + + Open Messages 打开邮件箱 @@ -9538,7 +10162,7 @@ RetroShare 将暂停对此目录的访问。 %1 条新消息 - + Down: %1 (kB/s) 下载: %1 (kB/s) @@ -9608,7 +10232,7 @@ RetroShare 将暂停对此目录的访问。 服务权限列表 - + Add 添加 @@ -9633,7 +10257,7 @@ RetroShare 将暂停对此目录的访问。 - + Really quit ? @@ -9642,38 +10266,17 @@ RetroShare 将暂停对此目录的访问。 MessageComposer - + Compose 写信 - - + Contacts 联系人 - - >> To - >> 发信人 - - - - >> Cc - >> 抄送 - - - - >> Bcc - >> 密送 - - - - >> Recommend - >> 推荐 - - - + Paragraph 段落 @@ -9754,7 +10357,7 @@ RetroShare 将暂停对此目录的访问。 下划线 - + Subject: 主题: @@ -9765,12 +10368,22 @@ RetroShare 将暂停对此目录的访问。 - + Tags 标签 - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9780,7 +10393,7 @@ RetroShare 将暂停对此目录的访问。 - + Recommended Files 推荐文件 @@ -9850,7 +10463,7 @@ RetroShare 将暂停对此目录的访问。 添加大段引用 - + Send To: 发送至: @@ -9875,47 +10488,22 @@ RetroShare 将暂停对此目录的访问。 两端对齐(&J) - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> 你好,<br>我向你推荐我的一个好友;如果你信任我,也可以信任他们。<br> @@ -9941,12 +10529,12 @@ RetroShare 将暂停对此目录的访问。 - + Save Message 保存邮件 - + Message has not been Sent. Do you want to save message to draft box? 邮件未发送。 @@ -9958,7 +10546,7 @@ Do you want to save message to draft box? 粘贴 RetroShare 链接 - + Add to "To" 添加至"收件人" @@ -9978,12 +10566,7 @@ Do you want to save message to draft box? 添加为推荐 - - Friend Details - 好友详情 - - - + Original Message 原始消息 @@ -9993,19 +10576,21 @@ Do you want to save message to draft box? 发件人 - + + To 收件人 - + + Cc 抄送 - + Sent 已发送 @@ -10047,12 +10632,13 @@ Do you want to save message to draft box? 请输入至少一个收件人。 - + + Bcc 密送 - + Unknown 未知 @@ -10162,7 +10748,12 @@ Do you want to save message to draft box? 格式(&F) - + + Details + + + + Open File... 打开文件... @@ -10210,12 +10801,7 @@ Do you want to save message ? 添加额外文件 - - Show: - 显示: - - - + Close 关闭 @@ -10225,32 +10811,57 @@ Do you want to save message ? 发件人: - - All - 全部 - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10273,7 +10884,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading 邮件阅读 @@ -10288,7 +10919,7 @@ Do you want to save message ? 打开消息于 - + Tags 标签 @@ -10328,7 +10959,7 @@ Do you want to save message ? 新窗口 - + Edit Tag 标记标签 @@ -10338,22 +10969,12 @@ Do you want to save message ? 邮件 - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - <html><head/><body><p align="justify">下面的链接允许网络中的其他用户通过隧道向您发送加密消息。为实现这一点,他们需要您的PGP公钥,他们可以通过RetroShare的探索系统获得。</p></body></html> - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images 载入内置图像 @@ -10634,7 +11255,7 @@ Do you want to save message ? MessagesDialog - + New Message 新信息 @@ -10701,24 +11322,24 @@ Do you want to save message ? - + Tags 标签 - - - + + + Inbox 收件箱 - - + + Outbox 待送箱 @@ -10730,14 +11351,14 @@ Do you want to save message ? - + Sent 已发送 - + Trash 回收站 @@ -10806,7 +11427,7 @@ Do you want to save message ? - + Reply to All 回复全部 @@ -10824,12 +11445,12 @@ Do you want to save message ? - + From 发件人 - + Date 日期 @@ -10857,12 +11478,12 @@ Do you want to save message ? - + Click to sort by from 点击按发件人排序 - + Click to sort by date 点击按日期排序 @@ -10917,7 +11538,12 @@ Do you want to save message ? 搜索附件 - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred 加星 @@ -10982,14 +11608,14 @@ Do you want to save message ? 清空回收站 - - + + Drafts 草稿箱 - + 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 gray star beside any message. 暂无加星邮件。加星令邮件更容易。为邮件加星标,请点击邮件旁的灰色星标。 @@ -11009,7 +11635,12 @@ Do you want to save message ? 点击按收件人排序 - + + This message goes to a distant person. + + + + @@ -11018,18 +11649,18 @@ Do you want to save message ? 总计: - + Messages 邮件 - + Click to sort by signature 点击按签名排序 - + This message was signed and the signature checks @@ -11039,15 +11670,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -11070,7 +11696,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link 粘贴 RetroShare 链接 @@ -11104,7 +11745,7 @@ Do you want to save message ? - + Expand 展开 @@ -11147,7 +11788,7 @@ Do you want to save message ? <strong>NAT:</strong> - + Network Status Unknown 网络状态未知 @@ -11191,26 +11832,6 @@ Do you want to save message ? Forwarded Port 已转发端口 - - - OK | RetroShare Server - OK | RetroShare 服务器 - - - - Internet connection - Internet 连接 - - - - No internet connection - 无 Internet 连接 - - - - No local network - 无本地网络 - NetworkDialog @@ -11324,7 +11945,7 @@ Do you want to save message ? 节点 ID - + Deny friend 拒绝好友 @@ -11388,7 +12009,7 @@ For security, your keyring was previously backed-up to file 无法创建备份文件。请检查您pgp文件夹的权限、磁盘可用空间等。 - + Personal signature 我已签名背书 @@ -11455,7 +12076,7 @@ Right-click and select 'make friend' to be able to connect. 我自己 - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. 钥匙环中的数据不一致。可能是程序错误。请联系开发人员。 @@ -11470,7 +12091,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11490,12 +12111,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11525,7 +12146,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11594,7 +12215,7 @@ Reported error: NewsFeed - + News Feed 事件中心 @@ -11613,18 +12234,13 @@ Reported error: This is a test. 这是一个测试。 - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed 事件中心 - + Newest on top @@ -11633,6 +12249,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11776,7 +12397,12 @@ Reported error: 闪动 - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left 左上 @@ -11800,11 +12426,6 @@ Reported error: Notify 提示 - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11854,7 +12475,7 @@ Reported error: NotifyQt - + PGP key passphrase PGP 密钥的密码 @@ -11894,7 +12515,7 @@ Reported error: 正在保存文件索引... - + Test 测试 @@ -11909,13 +12530,13 @@ Reported error: 未知标题 - - + + Encrypted message 加密消息 - + Please enter your PGP password for key @@ -11967,24 +12588,6 @@ Reported error: 低流量: 10% s默认流量,待实现功能:暂停所有文件传输 - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -12008,12 +12611,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -12048,39 +12661,51 @@ Reported error: - + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'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"> -<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;">对好友密钥的签名是对其信任的一种公开“背书”。此外只有经过签名的好友节点才能接收您的其他可信好友的信息。</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;">对好友密钥的签名无法撤销,请慎重使用此功能。</p></body></html> +</style></head><body style=" font-family:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + - + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key 签署PGP密钥 + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -12091,6 +12716,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures 包含签名 @@ -12146,7 +12776,7 @@ p, li { white-space: pre-wrap; } 您对此节点无信任。 - + This key has signed your own PGP key @@ -12320,12 +12950,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 好友: 0/0 - + Online Friends/Total Friends 在线好友/全部好友 @@ -12693,7 +13323,7 @@ p, li { white-space:pre-wrap;} - + Error: instance '%1'can't create a widget @@ -12754,19 +13384,19 @@ p, li { white-space:pre-wrap;} 允许所有插件 - - Loaded plugins - 已载入插件 - - - + Plugin look-up directories 插件查找目录 - - Hash rejected. Enable it manually and restart, if you need. - 散列值校验失败。如果需要使用可手动启用并重启程序。 + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] + @@ -12774,27 +13404,36 @@ p, li { white-space:pre-wrap;} 未提供 API 版本,请阅读插件开发手册。 - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. 未提供 SVN 版本。请阅读插件开发手册。 - + Loading error. 载入错误。 - + Missing symbol. Wrong version? 缺少符号,版本错误? - + No plugin object 无插件对象 - + Plugins is loaded. 插件已载入。 @@ -12804,22 +13443,7 @@ p, li { white-space:pre-wrap;} 未知状态。 - - Title unavailable - 无标题 - - - - Description unavailable - 无描述 - - - - Unknown version - 未知版本 - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12830,15 +13454,16 @@ malicious behavior of crafted plugins. + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + + Plugins 插件 - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - PopularityDefs @@ -12906,12 +13531,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. 与您聊天的节点已经终止了加密聊天隧道。您现在可以关闭此聊天窗口了。 - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. 关闭此窗口将结束会话,同时通知对方节点终止加密聊天通道。 @@ -12921,12 +13551,7 @@ malicious behavior of crafted plugins. 终止隧道? - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -13007,7 +13632,12 @@ malicious behavior of crafted plugins. 已发表 - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -13031,11 +13661,6 @@ malicious behavior of crafted plugins. Other Topics 其它主题 - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13290,7 +13915,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview RetroShare 邮件 - 打印预览 @@ -13638,7 +14263,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation 确认 @@ -13648,7 +14274,7 @@ p, li { white-space: pre-wrap; } 您要系统来处理此链接的打开吗? - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13675,7 +14301,12 @@ and open the Make Friend Wizard. 您确实要打开 %1 个链接? - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. 已处理 %1 共 %2 个 RetroShare 链接。 @@ -13842,7 +14473,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace 资源集合文件处理失败 - + Deny friend 拒绝好友 @@ -13862,7 +14493,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace 文件请求已取消 - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. 此版本的 RetroShare 正在使用 OpenPGP-SDK。因此没有使用系统中的共享PGP钥匙环,而是自有钥匙环,在所有RetroShare实例间共享。<br><br> 您似乎没有这种钥匙环,尽管现有 RetroShare 账户中引用了PGP密钥,也许您刚刚才升级至此新版本。 @@ -13897,7 +14528,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace 发生意外错误。请报告错误'RsInit::InitRetroShare unexpected return code %1'。 - + Multiple instances 多实例运行 @@ -13935,11 +14566,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... 等待隧道建立... - - - Secured tunnel established. Waiting for ACK... - 安全隧道已建立。正在等待 ACK ... - Secured tunnel is working. You can talk! @@ -13957,7 +14583,7 @@ Reported error is: %2 - + Click to send a private message to %1 (%2). @@ -14007,7 +14633,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -14017,7 +14643,7 @@ Reported error is: - + enabled @@ -14027,12 +14653,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -14047,42 +14673,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago %1 天前 - + Subject: @@ -14101,6 +14734,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -14112,6 +14751,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -14121,7 +14770,7 @@ Reported error is: 快速入门向导 - + <!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; } @@ -14159,21 +14808,23 @@ p, li { white-space:pre-wrap;} - - + + + Next > 下一步 > - - - - + + + + + Exit 退出 - + For best performance, RetroShare needs to know a little about your connection to the internet. 要获得最佳性能,RetroShare需要对您的网络连接有所了解。 @@ -14240,13 +14891,14 @@ p, li { white-space:pre-wrap;} - - + + + < Back <返回 - + <!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; } @@ -14271,7 +14923,7 @@ p, li { white-space:pre-wrap;} - + Network Wide 全网匿名可见 @@ -14296,7 +14948,27 @@ p, li { white-space:pre-wrap;} 自动共享接收文件目录(推荐) - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14408,7 +15080,7 @@ p, li { white-space:pre-wrap;} RSGraphWidget - + %1 KB %1 KB @@ -14444,7 +15116,7 @@ p, li { white-space:pre-wrap;} RSPermissionMatrixWidget - + Allowed by default @@ -14475,7 +15147,7 @@ p, li { white-space:pre-wrap;} - Switched Off + Globally switched Off @@ -14497,7 +15169,7 @@ p, li { white-space:pre-wrap;} RSettingsWin - + Error Saving Configuration on page @@ -14606,7 +15278,7 @@ p, li { white-space:pre-wrap;} - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14631,7 +15303,7 @@ p, li { white-space:pre-wrap;} RetroshareDirModel - + NEW @@ -14971,7 +15643,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? 图像过大不便传输。 @@ -14989,7 +15661,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. 重设所有保存的RetroShare设置。 @@ -15034,17 +15706,17 @@ Reducing image to %1x%2 pixels? 无法打开日志文件 "%1':%2 - + built-in 内建 - + Could not create data directory: %1 - + Revision @@ -15072,33 +15744,10 @@ Reducing image to %1x%2 pixels? RTT 统计 - - SFListDelegate - - - B - B - - - - KB - KB - - - - MB - MB - - - - GB - GB - - SearchDialog - + Enter a keyword here (at least 3 char long) 在此输入关键词(至少3个字符长) @@ -15280,12 +15929,12 @@ Reducing image to %1x%2 pixels? 下载所选项目 - + File Name 文件名称 - + Download 下载 @@ -15354,7 +16003,7 @@ Reducing image to %1x%2 pixels? 打开文件夹 - + Create Collection... @@ -15374,7 +16023,7 @@ Reducing image to %1x%2 pixels? 从集合文件中下载... - + Collection 资源集合 @@ -15617,12 +16266,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration 网络设置 - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) 自动 (UPnP) @@ -15637,7 +16296,7 @@ Reducing image to %1x%2 pixels? 手动端口转发 - + Public: DHT & Discovery 公开: DHT & 节点探索 @@ -15657,13 +16316,13 @@ Reducing image to %1x%2 pixels? 暗网: 无 - - + + Local Address 本地地址 - + External Address 公网地址 @@ -15673,28 +16332,28 @@ Reducing image to %1x%2 pixels? 动态域名 - + Port: 端口: - + Local network 本地网络 - + External ip address finder 公网 IP 探测服务 - + UPnP UPnP - + Known / Previous IPs: 已知/先前的 IP @@ -15720,13 +16379,13 @@ behind a firewall or a VPN. 允许 RetroShare 通过如下网站确定外网IP: - - + + kB/s kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15736,23 +16395,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15762,17 +16410,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15782,90 +16478,95 @@ HiddenServicePort 9191 127.0.0.1:9191 清除 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test 测试 - + Network 网络 - + IP Filters - + IP blacklist - + IP range - - - + + + Status 状态 - - + + Origin - - + + Reason - - + + Comment 评论*** - + IPs - + IP whitelist - + Manual input @@ -15890,12 +16591,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15918,32 +16725,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15973,99 +16781,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -16098,7 +16827,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions 服务权限 @@ -16113,13 +16842,13 @@ Check your ports! 权限 - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16383,7 +17112,7 @@ Select the Friends with which you want to Share your Channel. 下载 - + Copy retroshare Links to Clipboard 复制 RetroShare 链接至剪切板 @@ -16408,7 +17137,7 @@ Select the Friends with which you want to Share your Channel. 将链接添加到云端 - + RetroShare Link RetroShare 链接 @@ -16424,7 +17153,7 @@ Select the Friends with which you want to Share your Channel. 添加共享 - + Create Collection... @@ -16447,7 +17176,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16473,11 +17202,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16486,6 +17216,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16546,7 +17281,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile 载入配置文件 @@ -16790,12 +17525,12 @@ This choice can be reverted in settings. - + Connected 已连接 - + Unreachable 不可达 @@ -16811,18 +17546,18 @@ This choice can be reverted in settings. - + Trying TCP 正在尝试 TCP - - + + Trying UDP 正在尝试 UDP - + Connected: TCP 已连接: TCP @@ -16833,6 +17568,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown 已连接: 未知 @@ -16842,7 +17582,7 @@ This choice can be reverted in settings. DHT: 联系 - + TCP-in @@ -16852,7 +17592,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16862,7 +17602,7 @@ This choice can be reverted in settings. - + UDP @@ -16876,13 +17616,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -17101,7 +17851,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause 暂停 @@ -17150,7 +17900,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17286,16 +18036,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads 下载 + Uploads 上传 - + Name i.e: file name @@ -17491,25 +18243,25 @@ p, li { white-space: pre-wrap; } - + Slower 更慢 - - + + Average 平均 - - + + Faster 更快 - + Random 随机 @@ -17534,7 +18286,12 @@ p, li { white-space: pre-wrap; } 指定... - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... 队列位置... @@ -17560,39 +18317,39 @@ p, li { white-space: pre-wrap; } - + Failed 失败 - - + + Okay - - + + Waiting 等待中 - + Downloading 下载中 - + Complete 完成 - + Queued 排队中 @@ -17633,7 +18390,7 @@ RetroShare 将向数据源请求详细的校验 请耐心等待! - + Transferring 传输中 @@ -17643,7 +18400,7 @@ RetroShare 将向数据源请求详细的校验 上传中 - + Are you sure that you want to cancel and delete these files? 您确定要取消或删除这些文件吗? @@ -17701,7 +18458,7 @@ RetroShare 将向数据源请求详细的校验 输入新的有效文件名 - + Last Time Seen i.e: Last Time Receiced Data 上次发现 @@ -17807,7 +18564,7 @@ RetroShare 将向数据源请求详细的校验 显示上次发现列 - + Columns @@ -17817,7 +18574,7 @@ RetroShare 将向数据源请求详细的校验 文件传输 - + Path i.e: Where file is saved 路径 @@ -17833,12 +18590,7 @@ RetroShare 将向数据源请求详细的校验 显示路径栏 - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17848,7 +18600,7 @@ RetroShare 将向数据源请求详细的校验 - + Create Collection... @@ -17863,7 +18615,7 @@ RetroShare 将向数据源请求详细的校验 - + Collection 资源集合 @@ -17873,17 +18625,17 @@ RetroShare 将向数据源请求详细的校验 文件 - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17919,7 +18671,7 @@ RetroShare 将向数据源请求详细的校验 目录 - + Friends Directories 好友目录 @@ -17962,7 +18714,7 @@ RetroShare 将向数据源请求详细的校验 TurtleRouterDialog - + Search requests 搜索请求 @@ -18025,7 +18777,7 @@ RetroShare 将向数据源请求详细的校验 路由状态统计 - + Age in seconds 时间(秒) @@ -18040,7 +18792,17 @@ RetroShare 将向数据源请求详细的校验 总计 - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer 未知节点 @@ -18049,16 +18811,11 @@ RetroShare 将向数据源请求详细的校验 Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition 搜索请求分配情况 @@ -18257,10 +19014,20 @@ RetroShare 将向数据源请求详细的校验 - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18271,11 +19038,6 @@ RetroShare 将向数据源请求详细的校验 Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18465,7 +19227,7 @@ RetroShare 将向数据源请求详细的校验 搜索 - + My Groups 我的小组 @@ -18485,7 +19247,7 @@ RetroShare 将向数据源请求详细的校验 其他小组 - + Subscribe to Group 订阅小组 diff --git a/retroshare-gui/src/lang/retroshare_zh_TW.qm b/retroshare-gui/src/lang/retroshare_zh_TW.qm index b7895a353110968e8c7e3e402191932e65abafcd..548c7968fcfd0abb1725d0a0a3da62370cc6d974 100644 GIT binary patch delta 1651 zcmXZcTTC2P90u?Yc4l^$-DNNAGO$;cy&!G zN@z`Jwpd)HP1?o>TOgIR2~?{=XoEG4wJmCNqp4NeiVr5Oij`;-;~&16m*1I5=H#63 zd^6*17g`T`(;ot>3xPm@hC66k7}#_iF#Sb6XK9heaGv^XG;$w}?FSkz0@nMf?R6R) zrJ)|0dJ$-@1a=fxLm7Sji8>h(yD4(AJ zN_Pz2*3<1!at8qOvxY~gt%(-KsQ(TPY%uJkp)EABpC%7O`K}cxY@psgs@rK;7V)cW z!XlelHf_!0z`ouvM+^5+uZ@8syza=?k*4-f!bIj$8?A) zi!}ZX)Sc5v!`ikofa@2U*ar2TU4XX*>X@8w=}E&cX>2Xj^BsVaq;4Pe{79oCFdumr zh&Zrm=mM6n6+MsAqA41fT(%mBKZLr;380_}^?Rmd;_X!Jq_#QK4;9FQPSav*b}C;_ z+tJV`Rq_wfu$7jNqv7%lP|}E}hyIp4{Ae292iV5ZY)eRcW~uoKEx1Hotu$~8Et<@m zAEch=3y8oAtiIVUAD1A9U1DH%D!p}r%UFQ!<#<_ z!fR;R7QJkpP{}gTHI=QM)^dSc;o*lv%5D)pRS9}1D z-}pekPW?~NpiZO4i{))fu2KSwKAEjoBI%Hldrjgij{~kZXlbvi*GdbVRn+~N zS`peV@!X?UAA1XMuT$%~V?f?Hn%t#kHhwDi9kghG1_o)QnMPlsF%R{`uBl_Dejs&T zYtHk@Le^%N6g^#~^=Kw3r(vv}_wk+D@f$UA>Sw8MuQtD0QZlEg}6?zd#`oL zm5_XfsXk&$Oh|pA0sFmIW#ar7sHL4+4^Vp-b>!2M6!lNjVE2k?1h4Wzd4=H*_Qz%y zr1z)nTN?)?f%Vk;JuT^_rHj;GP9wk5#2if>wI6Ko%2#;Gq2K;f7Wx(SD30oiH)TV+ z9bKAtv;5&cSRMfSgU;HY#lk&_Bo{RQ(ZignPu23lg!`zG|?C93>}NOKHo z??AV#I0?hoiK>OrS?EYX*BMw?r8rH}s&*pjIF!3dip&#vB$Bq3 z@iuiqu>j?jizX=e2uXEc@O}(IQ#lNNO48|iBJ(AZ`gormYQ=}4|0GGnQ6dq7ru{JQ zaabsk>g_W`-sfpu=P0Fri{_q!W@p+2k;{&TKqo~8`-!p#XhZBWKX@yY8lbL}Hgsn5 zzUpCqJyjk#$}6jd;x%Y*fR1_SQTq9fR5?CEWV=AyJMVL(9JHe+(L$s%Qk6EyIj{_> zAB5T>XdHyD)%3K?FU)ko+!4h&YA89u>pPg`8nF_EG$KwFL_Q-7%!}4fYKXK|P(K4r zPSKrMKg0vy7u{(yk}z{Uw6B4l4p`8qI0b`~F!Uk}9~6B{&+$pQ3@u5RKM1Y4;)<2G zBDh1Oo_ms$uv%c$2a)MLDYDnkVfYe;#-!G@V_c8I zyx*a74tg&_-%rs05=;bENPSsv5EXgkstmrCLMP=zau#PwiQ*VEC!t-@Ka6@{R6cvN zj5A~aT5id|Ea$kXTA=zLn7;xRSfMYnXo3Q@Xb85bOh4b?lnz3D7j##vT2oydp&s>z zx9T6ki1U$v+)Hr91>6YeSV~`^#piRn-)qTtTb=qJ*XPmEDx9kUg ze&zwF9!|?=O7j~Ubl0H%8E9*PP8W2gpnEASd>#59)0L+F)>YH2mJtc12H z=%`dY3=1}~2_6tCMML;+U9!^5hxuc@b@m?5^hcOmqc1LM<6QV!AD8)mgBe;+7|MT5 z*Pnvcal^4Zj)?IU!^n}(c;)wC_6#(xGF;!nsq8J`&rH!~-eeN(9S&>%AM(7kL%pZ1 z`mN~2-3B$c6MtYxRT1CUR8Z5b;&S%deX(d`Z6vn8DI+~FbFc6Jeqv+1F`DjVL8pr7 W3(-AIv3TS5SZ#f@ssDy<+V>wj#JvLm diff --git a/retroshare-gui/src/lang/retroshare_zh_TW.ts b/retroshare-gui/src/lang/retroshare_zh_TW.ts index 8ee791a4a..81fadee2f 100644 --- a/retroshare-gui/src/lang/retroshare_zh_TW.ts +++ b/retroshare-gui/src/lang/retroshare_zh_TW.ts @@ -1,8 +1,8 @@ - + AWidget - + version @@ -21,12 +21,17 @@ RetroShare 使用愉快 - + About 關於 - + + Copy Info + + + + close 關閉 @@ -478,7 +483,7 @@ p, li { white-space: pre-wrap; } AppearancePage - + Language @@ -518,24 +523,28 @@ p, li { white-space: pre-wrap; } - - + + On Tool Bar - - + On List Item - + Where do you want to have the buttons for menu? - + + On List Ite&m + + + + Where do you want to have the buttons for the page? @@ -571,24 +580,36 @@ p, li { white-space: pre-wrap; } - + Icon Size = 8x8 - - + + Icon Size = 16x16 - - + + Icon Size = 24x24 - + + + Icon Size = 64x64 + + + + + + Icon Size = 128x128 + + + + Status Bar @@ -618,8 +639,13 @@ p, li { white-space: pre-wrap; } - - + + Disable SysTray ToolTip + + + + + Icon Size = 32x32 @@ -723,7 +749,7 @@ p, li { white-space: pre-wrap; } AvatarWidget - + Click to change your avatar @@ -731,7 +757,7 @@ p, li { white-space: pre-wrap; } BWGraphSource - + KB/s @@ -739,7 +765,7 @@ p, li { white-space: pre-wrap; } BWListDelegate - + N/A @@ -747,13 +773,13 @@ p, li { white-space: pre-wrap; } BandwidthGraph - + RetroShare Bandwidth Usage - + Show Settings 選項 @@ -808,7 +834,7 @@ p, li { white-space: pre-wrap; } 取消 - + Since: @@ -818,6 +844,31 @@ p, li { white-space: pre-wrap; } + + BandwidthStatsWidget + + + + Sum + + + + + + All + + + + + KB/s + + + + + Count + + + BwCtrlWindow @@ -881,7 +932,7 @@ p, li { white-space: pre-wrap; } - + TOTALS @@ -896,6 +947,49 @@ p, li { white-space: pre-wrap; } 表單 + + BwStatsWidget + + + Form + + + + + Friend: + + + + + Type: + + + + + Up + + + + + Down + + + + + Service: + + + + + Unit: + + + + + Log scale + + + ChannelPage @@ -924,14 +1018,6 @@ p, li { white-space: pre-wrap; } - - ChatDialog - - - Talking to - - - ChatLobbyDialog @@ -945,17 +1031,32 @@ p, li { white-space: pre-wrap; } - + Mute participant - + + Send Message + + + + + Sort by Name + + + + + Sort by Activity + + + + Invite friends to this lobby - + Leave this lobby (Unsubscribe) @@ -970,7 +1071,7 @@ p, li { white-space: pre-wrap; } - + Welcome to lobby %1 @@ -980,13 +1081,13 @@ p, li { white-space: pre-wrap; } - + Lobby chat - + Lobby management @@ -1018,7 +1119,7 @@ p, li { white-space: pre-wrap; } - + Right click to mute/unmute participants<br/>Double click to address this person<br/> @@ -1033,12 +1134,12 @@ p, li { white-space: pre-wrap; } - + Start private chat - + Decryption failed. @@ -1084,7 +1185,7 @@ p, li { white-space: pre-wrap; } ChatLobbyUserNotify - + Chat Lobbies @@ -1123,18 +1224,18 @@ p, li { white-space: pre-wrap; } ChatLobbyWidget - + Chat lobbies - - + + Name - + Count @@ -1155,23 +1256,23 @@ p, li { white-space: pre-wrap; } - + Create chat lobby - + [No topic provided] - + Selected lobby info - + Private @@ -1180,13 +1281,18 @@ p, li { white-space: pre-wrap; } Public + + + Anonymous IDs accepted + + You're not subscribed to this lobby; Double click-it to enter and chat. - + Remove Auto Subscribe @@ -1196,27 +1302,37 @@ p, li { white-space: pre-wrap; } - + %1 invites you to chat lobby named %2 - + Search Chat lobbies - + Search Name - + Subscribed - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=%2/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> + + + + + Create a non anonymous identity and enter this lobby + + + + Columns @@ -1231,7 +1347,7 @@ p, li { white-space: pre-wrap; } - + Lobby Name: @@ -1250,6 +1366,11 @@ p, li { white-space: pre-wrap; } Type: 類型 + + + Security: + + Peers: @@ -1260,19 +1381,20 @@ p, li { white-space: pre-wrap; } + TextLabel - + No lobby selected. Select lobbies at left to show details. Double click lobbies to enter and chat. - + Private Subscribed Lobbies @@ -1281,23 +1403,18 @@ Double click lobbies to enter and chat. Public Subscribed Lobbies - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Chat Lobbies</h1> <p>Chat lobbies are distributed chat rooms, and work pretty much like IRC. They allow you to talk anonymously with tons of people without the need to make friends.</p> <p>A chat lobby can be public (your friends see it) or private (your friends can't see it, unless you invite them with <img src=":/images/add_24x24.png" width=12/>). Once you have been invited to a private lobby, you will be able to see it when your friends are using it.</p> <p>The list at left shows chat lobbies your friends are participating in. You can either <ul> <li>Right click to create a new chat lobby</li> <li>Double click a chat lobby to enter, chat, and show it to your friends</li> </ul> Note: For the chat lobbies to work properly, your computer needs be on time. So check your system clock! </p> - - Chat Lobbies - + Leave this lobby - + Enter this lobby @@ -1307,22 +1424,42 @@ Double click lobbies to enter and chat. - + + Default identity is anonymous + + + + + You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it. + + + + + No anonymous IDs + + + + + You will need to create a non anonymous identity in order to join this chat lobby. + + + + You will need to create an identity in order to join chat lobbies. - + Choose an identity for this lobby: - + Create an identity and enter this lobby - + Show @@ -1375,7 +1512,7 @@ Double click lobbies to enter and chat. 取消 - + Quick Message @@ -1384,12 +1521,37 @@ Double click lobbies to enter and chat. ChatPage - + General - + + Distant Chat + + + + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant chat from + + + + Chat Settings @@ -1414,7 +1576,12 @@ Double click lobbies to enter and chat. - + + Minimum font size + + + + Enable bold @@ -1528,7 +1695,7 @@ Double click lobbies to enter and chat. - + Incoming @@ -1572,6 +1739,16 @@ Double click lobbies to enter and chat. System message + + + UserName + + + + + /me is sending a message with /me + + Chat @@ -1663,7 +1840,7 @@ Double click lobbies to enter and chat. - + Private chat invite from @@ -1686,7 +1863,7 @@ Double click lobbies to enter and chat. ChatStyle - + Standard style for group chat @@ -1735,17 +1912,17 @@ Double click lobbies to enter and chat. ChatWidget - + Close - + Send - + Bold @@ -1760,12 +1937,12 @@ Double click lobbies to enter and chat. - + Attach a Picture - + Strike @@ -1816,12 +1993,37 @@ Double click lobbies to enter and chat. - + + Quote + + + + + Quotes the selected text + + + + + Drop Placemark + + + + + Insert horizontal rule + + + + + Save image + + + + is typing... - + Do you really want to physically delete the history? @@ -1846,7 +2048,7 @@ Double click lobbies to enter and chat. - + appears to be Offline. @@ -1871,7 +2073,7 @@ Double click lobbies to enter and chat. - + Find Case Sensitively @@ -1893,7 +2095,7 @@ Double click lobbies to enter and chat. - + <b>Find Previous </b><br/><i>Ctrl+Shift+G</i> @@ -1908,12 +2110,12 @@ Double click lobbies to enter and chat. - + (Status) - + Set text font & color @@ -1923,7 +2125,7 @@ Double click lobbies to enter and chat. - + WARNING: Could take a long time on big history. @@ -1934,7 +2136,7 @@ Double click lobbies to enter and chat. - + <b>Mark this selected text</b><br><i>Ctrl+M</i> @@ -1969,12 +2171,12 @@ Double click lobbies to enter and chat. - + Type a message here - + Don't stop to color after @@ -1984,7 +2186,7 @@ Double click lobbies to enter and chat. - + Warning: @@ -2142,7 +2344,12 @@ Double click lobbies to enter and chat. - + + Node info + + + + Peer Address @@ -2229,12 +2436,7 @@ Double click lobbies to enter and chat. - - Location info - - - - + Node name : @@ -2270,6 +2472,11 @@ Double click lobbies to enter and chat. + <html><head/><body><p>This option allows you to automatically download a file that is recommended in an message coming from this node. This can be used for instance to send files between your own nodes.</p></body></html> + + + + Auto-download recommended files from this node @@ -2325,7 +2532,7 @@ Double click lobbies to enter and chat. - + <html><head/><body><p>This is the ID of the node's <span style=" font-weight:600;">OpenSSL</span> certifcate, which is signed by the above <span style=" font-weight:600;">PGP</span> key. </p></body></html> @@ -2358,17 +2565,7 @@ Double click lobbies to enter and chat. - - This wizard will help you to connect to your friend(s) to RetroShare network.<br>These ways are possible to do this: - - - - - &Enter the certificate manually - - - - + &You get a certificate file from your friend @@ -2378,18 +2575,7 @@ Double click lobbies to enter and chat. - - &Enter RetroShare ID manually - - - - - &Send an Invitation by Email - (She/He receives an email with instructions how to to download RetroShare) - - - - + Text certificate @@ -2399,13 +2585,8 @@ Double click lobbies to enter and chat. - - The text below is your PGP certificate. You have to provide it to your friend - - - - - + + Include signatures @@ -2426,11 +2607,16 @@ Double click lobbies to enter and chat. - Please, paste your friends PGP certificate into the box below + Please, paste your friend's Retroshare certificate into the box below - + + <html><head/><body><p>This box expects your friend's Retroshare certificate. WARNING: this is different from your friend's PGP key. Do not paste your friend's PGP key here (not even a part of it). It's not going to work.</p></body></html> + + + + Certificate files @@ -2511,6 +2697,46 @@ Double click lobbies to enter and chat. + RetroShare is better with Friends + + + + + Invite your Friends from other Networks to RetroShare. + + + + + GMail + + + + + Yahoo + + + + + Outlook + + + + + AOL + + + + + Yandex + + + + + Email + + + + Invite Friends by Email @@ -2536,7 +2762,7 @@ Double click lobbies to enter and chat. - + Friend request @@ -2550,61 +2776,102 @@ Double click lobbies to enter and chat. - + Peer details - - + + Name: 名稱: - - + + Email: - - + + Node: + + + + + Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add too many friends. You can add as many friends as you like, but more than 40 will probably require too much +resources. + + + + Location: - + - + Options 選項 - - + + This wizard will help you to connect to your friend(s) to RetroShare network.<br>Select how you would like to add a friend: + + + + + Enter the certificate manually + + + + + Enter RetroShare ID manually + + + + + &Send an Invitation by Web Mail Providers + + + + + &Send an Invitation by Email + (Your friend will receive an email with instructions how to to download RetroShare) + + + + + Recommend many friends to each other + + + + + Add friend to group: - - + + Authenticate friend (Sign PGP Key) - - + + Add as friend to connect with - - + + To accept the Friend Request, click the Finish button. - + Sorry, some error appeared @@ -2624,7 +2891,7 @@ Double click lobbies to enter and chat. - + Key validity: @@ -2680,12 +2947,12 @@ Double click lobbies to enter and chat. - + Certificate Load Failed - + Cannot get peer details of PGP key %1 @@ -2720,12 +2987,13 @@ Double click lobbies to enter and chat. - + + RetroShare Invitation - + Ultimate @@ -2751,7 +3019,7 @@ Double click lobbies to enter and chat. - + You have a friend request from @@ -2766,7 +3034,7 @@ Double click lobbies to enter and chat. - + Use new certificate format (safer, more robust) @@ -2864,13 +3132,22 @@ Double click lobbies to enter and chat. - + Use as direct source, when available - - + + IP-Addr: + + + + + IP-Address + + + + Recommend many friends to each others @@ -2880,12 +3157,17 @@ Double click lobbies to enter and chat. - + + The text below is your Retroshare certificate. You have to provide it to your friend + + + + Message: - + Recommend friends @@ -2905,17 +3187,12 @@ Double click lobbies to enter and chat. - - Please note that RetroShare will require excessive amounts of bandwidth, memory and CPU if you add to many friends. You can add as many friends as you like, but more than 40 will probably require too much resources. - - - - + Add key to keyring - + This key is already in your keyring @@ -2928,7 +3205,7 @@ even if you don't make friends. - + Certificate has wrong version number. Remember that v0.6 and v0.5 networks are incompatible. @@ -2938,8 +3215,8 @@ even if you don't make friends. - - + + Auto-download recommended files @@ -2949,8 +3226,8 @@ even if you don't make friends. - - + + Require whitelist clearance to connect @@ -2960,7 +3237,7 @@ even if you don't make friends. - + No IP in this certificate! @@ -2970,17 +3247,17 @@ even if you don't make friends. - + Added with certificate from %1 - + Paste Cert of your friend from Clipboard - + Certificate Load Failed:can't read from file %1 @@ -3837,7 +4114,7 @@ p, li { white-space: pre-wrap; } - + Forum 論壇 @@ -3847,7 +4124,7 @@ p, li { white-space: pre-wrap; } - + Attach File @@ -3877,12 +4154,12 @@ p, li { white-space: pre-wrap; } - + No Forum - + In Reply to @@ -3920,12 +4197,12 @@ p, li { white-space: pre-wrap; } - + Send - + Forum Message @@ -3936,7 +4213,7 @@ Do you want to reject this message? - + Post as @@ -3971,7 +4248,7 @@ Do you want to reject this message? - Security policy: + Visibility: @@ -3985,7 +4262,22 @@ Do you want to reject this message? - + + <html><head/><body><p>If you check this, only PGP-signed ids can be used to join and talk in this lobby. This limitation prevents anonymous spamming as it becomes possible for at least some people in the lobby to locate the spammer's node.</p></body></html> + + + + + require PGP-signed identities + + + + + Security: + + + + Select the Friends with which you want to group chat. @@ -3995,12 +4287,22 @@ Do you want to reject this message? - + + Put a sensible lobby name here + + + + + Set a descriptive topic here + + + + Contacts: - + Identity to use: @@ -4159,7 +4461,12 @@ Do you want to reject this message? - + + <p>Retroshare uses Bittorrent's DHT as a proxy for connexions. It does not "store" your IP in the DHT. Instead the DHT is used by your friends to reach you while processing standard DHT requests. The status bullet will turn green as soon as Retroshare gets a DHT response from one of your friends.</p> + + + + DHT Off @@ -4181,7 +4488,7 @@ Do you want to reject this message? - DHT Error + No peer found in DHT @@ -4279,7 +4586,7 @@ Do you want to reject this message? DhtWindow - + Net Status @@ -4309,7 +4616,7 @@ Do you want to reject this message? - + Name @@ -4354,7 +4661,7 @@ Do you want to reject this message? - + Bucket @@ -4380,17 +4687,17 @@ Do you want to reject this message? - + Last Sent - + Last Recv - + Relay Mode @@ -4425,7 +4732,22 @@ Do you want to reject this message? - + + IP + + + + + Search IP + + + + + Copy %1 to clipboard + + + + Unknown NetState @@ -4630,7 +4952,7 @@ Do you want to reject this message? 未知 - + RELAY END @@ -4664,19 +4986,24 @@ Do you want to reject this message? - + %1 secs ago - + %1B/s - + + Relays + + + + 0x%1 EX:0x%2 @@ -4686,13 +5013,15 @@ Do you want to reject this message? - + + + DHT - + Net Status: @@ -4762,12 +5091,33 @@ Do you want to reject this message? - + + Filter: + + + + + Search Network + + + + + + Peers + + + + + Relay + + + + DHT Graph - + Proxy VIA @@ -4900,7 +5250,7 @@ you plug it in. ExprParamElement - + to @@ -5005,7 +5355,7 @@ you plug it in. FileTransferInfoWidget - + Chunk map @@ -5180,7 +5530,7 @@ you plug it in. FlatStyle_RDM - + Friends Directories @@ -5256,89 +5606,39 @@ you plug it in. FriendList - - - Status - - - - - - + Last Contact - - - Avatar - - - - + Hide Offline Friends - - State + + export friendlist - Sort by State + export your friendlist including groups - - Hide State - - - - - - Sort Descending Order - - - - - - Sort Ascending Order - - - - - Show Avatar Column - - - - - Name + + import friendlist - Sort by Name - - - - - Sort by last contact - - - - - Show Last Contact Column - - - - - Set root is Decorated + import your friendlist including groups + - Set Root Decorated + Show State @@ -5348,7 +5648,7 @@ you plug it in. - + Group @@ -5389,7 +5689,17 @@ you plug it in. - + + Search + + + + + Sort by state + + + + Move to group @@ -5419,40 +5729,103 @@ you plug it in. - - + Available - + Do you want to remove this Friend? - - Columns + + + Done! - - - + + Your friendlist is stored at: + + + + + + +(keep in mind that the file is unencrypted!) + + + + + + Your friendlist was imported from: + + + + + + Done - but errors happened! + + + + + +at least one peer was not added + + + + + +at least one peer was not added to a group + + + + + Select file for importing yoour friendlist from + + + + + Select a file for exporting your friendlist to + + + + + XML File (*.xml);;All Files (*) + + + + + + + Error + + + + + Failed to get a file! + + + + + File is not writeable! + + + + + + File is not readable! + + + + + IP - - Sort by IP - - - - - Show IP Column - - - - + Attempt to connect @@ -5462,7 +5835,7 @@ you plug it in. - + Display @@ -5472,12 +5845,7 @@ you plug it in. - - Sort by - 排序方式 - - - + Node @@ -5487,17 +5855,17 @@ you plug it in. - + Do you want to remove this node? - + Friend nodes - + Send message to whole group @@ -5545,30 +5913,35 @@ you plug it in. - - All + + Sort by state - None - - - - Name - + Search Friends + + + Mark all + + + + + Mark none + + FriendsDialog - + Edit status message @@ -5662,12 +6035,17 @@ you plug it in. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> + + + + Retroshare broadcast chat: messages are sent to all connected friends. - + Network @@ -5678,12 +6056,7 @@ you plug it in. - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Network</h1> <p>The Network tab shows your friend Retroshare nodes: the neighbor Retroshare nodes that are connected to you. </p> <p>You can group nodes together to allow a finer level of information access, for instance to only allow some nodes to see some of your files.</p> <p>On the right, you will find 3 useful tabs: <ul> <li>Broadcast sends messages to all connected nodes at once</li> <li>Local network graph shows the network around you, based on discovery information</li> <li>Keyring contains node keys you collected, mostly forwarded to you by your friend nodes</li> </ul> </p> - - - - + Set your status message here. @@ -5696,7 +6069,7 @@ you plug it in. - + Name @@ -5748,7 +6121,7 @@ anonymous, you can use a fake email. - + <html><head/><body><p align="justify">Before proceeding, move your mouse around to help Retroshare collect as much randomness as possible. Filling the progressbar to 20% is needed, 100% is advised.</p></body></html> @@ -5763,7 +6136,7 @@ anonymous, you can use a fake email. - + Port @@ -5807,28 +6180,23 @@ anonymous, you can use a fake email. - - Please enter a valid address of the form: 31769173498.onion:7800 - - - - + Node field is required with a minimum of 3 characters - + Failed to generate your new certificate, maybe PGP password is wrong! - + You can create a new profile with this form. Alternatively you can use an existing profile. Just uncheck "Create a new profile" - + You can create and run Retroshare nodes on different computers using the same profile. To do so just export the selected profile, import it on the other computer and create a new node with it. @@ -5850,7 +6218,7 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Create a new profile @@ -5875,12 +6243,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + Use profile - + + hidden address + + + + Your profile is associated with a PGP key pair. RetroShare currently ignores DSA keys. @@ -5896,12 +6269,17 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + <html><head/><body><p>This can be a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion <br/>or an I2P address in the form: [52 characters].b32.i2p </p><p>In order to get one, you must configure either Tor or I2P to create a new hidden service / server tunnel. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Hidden Service configuration panel.</p></body></html> + + + + PGP key length - + Create new profile @@ -5918,7 +6296,12 @@ Alternatively you can use an existing profile. Just uncheck "Create a new p - + + [Required] Tor/I2P address - Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) + + + + [Required] This password protects your private PGP key. @@ -6028,7 +6411,12 @@ and use the import button to load it - + + Please enter a valid address of the form: 31769173498.onion:7800 or [52 characters].b32.i2p + + + + PGP key pair generation failure @@ -6036,12 +6424,12 @@ and use the import button to load it - + Profile generation failure - + Missing PGP certificate @@ -6057,21 +6445,6 @@ Fill in your PGP password when asked, to sign your new key. You can create a new profile with this form. - - - Tor address - - - - - <html><head/><body><p>This is a Tor Onion address of the form: xa76giaf6ifda7ri63i263.onion </p><p>In order to get one, you must configure Tor to create a new hidden service. If you do not yet have one, you can still go on, and make it right later in Retroshare's Options-&gt;Server-&gt;Tor configuration panel.</p></body></html> - - - - - [Required] Examples: xa76giaf6ifda7ri63i263.onion (obtained by you from Tor) - - GeneralPage @@ -6221,23 +6594,18 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">When your friends send you a their invitations, Click to open the Add Friends window.</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:12pt;">When your friends send you 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-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-size:12pt;">Cut and Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> +<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:12pt;">Paste your Friend's &quot;ID Certificates&quot; into the window and add them as friends.</span></p></body></html> - - Connect To Friends - - - - + <!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:12pt;">Be Online at the same time, and RetroShare will automatically connect you!</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">Be Online at the same time as your friends, 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-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-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-size:12pt;">This takes 5-30 minutes the first time you start up RetroShare</span></p> @@ -6251,8 +6619,20 @@ p, li { white-space: pre-wrap; } - - Advanced: Open 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-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-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-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-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-size:12pt;">As each router is different, you will need to find out your Router Model and search the Internet 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-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-size:12pt;">If none of this makes sense to you, 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-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-size:8pt;"></p></body></html> @@ -6261,35 +6641,13 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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-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-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-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-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-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-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-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-size:8pt;"></p></body></html> - - - - - Further Help and 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-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-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-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=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt;">1) Look at the FAQ Wiki. This is a bit old, we are 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-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-size:12pt;">2) check out the Online Forums. Ask questions and discuss features.</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: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-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-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-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-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-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-size:12pt;">4) If you are still stuck. Email us.</span></p> @@ -6298,7 +6656,22 @@ p, li { white-space: pre-wrap; } - + + Connect To Friends + + + + + Advanced: Open Firewall Port + + + + + Further Help and Support + + + + Open RS Website @@ -6391,82 +6764,104 @@ p, li { white-space: pre-wrap; } - + + GroupBox + + + + + ID + + + + + Identity Name + + + + + Destinaton + + + + + Data status + + + + + Tunnel status + + + + + Data size + + + + + Data hash + + + + + Received + + + + + Send + + + + + Branching factor + + + + + Details + + + + Unknown Peer + + + Pending packets + + + + + Unknown + + GlobalRouterStatisticsWidget - - Pending packets - - - - + Managed keys - + Routing matrix ( - - Id + + [Unknown identity] - - Destination - - - - - Data status - - - - - Tunnel status - - - - - Data size - - - - - Data hash - - - - - Received - - - - - Send - - - - + : Service ID = - - GraphWidget - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - GroupChatToaster @@ -6646,7 +7041,7 @@ p, li { white-space: pre-wrap; } GroupTreeWidget - + Title 標題 @@ -6666,7 +7061,7 @@ p, li { white-space: pre-wrap; } - + Sort by Name @@ -6680,13 +7075,18 @@ p, li { white-space: pre-wrap; } Sort by Last Post + + + Sort by Posts + + Display - + You have admin rights @@ -6699,7 +7099,7 @@ p, li { white-space: pre-wrap; } GuiExprElement - + and @@ -6797,7 +7197,7 @@ p, li { white-space: pre-wrap; } GxsChannelDialog - + Channels @@ -6808,17 +7208,22 @@ p, li { white-space: pre-wrap; } - + Enable Auto-Download - + My Channels - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + + + Subscribed Channels @@ -6833,13 +7238,29 @@ p, li { white-space: pre-wrap; } - + + Select channel download directory + + + + Disable Auto-Download - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Channels</h1> <p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> <p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to your friends. This promotes good channels in the network.</p> <p>Only the channel's creator can post on that channel. Other peers in the network can only read from it, unless the channel is private. You can however share the posting rights or the reading rights with friend Retroshare nodes.</p> <p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed. Enable "Allow Comments" if you want to let users comment on your posts.</p> <p>Channel posts get deleted after %1 months.</p> + + Set download directory + + + + + + [Default directory] + + + + + Specify... @@ -7180,7 +7601,7 @@ p, li { white-space: pre-wrap; } - + Disable Auto-Download @@ -7200,7 +7621,7 @@ p, li { white-space: pre-wrap; } - + Feeds 訂閱 @@ -7210,7 +7631,7 @@ p, li { white-space: pre-wrap; } - + Subscribers @@ -7368,7 +7789,7 @@ before you can comment GxsForumGroupDialog - + Create New Forum @@ -7500,12 +7921,12 @@ before you can comment 表單 - + Start new Thread for Selected Forum - + Search forums 搜索論壇 @@ -7526,7 +7947,7 @@ before you can comment - + Title 標題 @@ -7539,13 +7960,18 @@ before you can comment - + Author 作者 - - + + Save image + + + + + Loading @@ -7575,7 +8001,7 @@ before you can comment - + Search Title 搜索標題 @@ -7600,17 +8026,27 @@ before you can comment - + No name 未命名 - + Reply + Ban this author + + + + + This will block/hide messages from this person, and notify neighbor nodes. + + + + Start New Thread @@ -7648,7 +8084,7 @@ before you can comment - + Hide 隱藏 @@ -7658,7 +8094,38 @@ before you can comment 展開 - + + This message was obtained from %1 + + + + + [Banned] + + + + + Anonymous IDs reputation threshold set to 0.4 + + + + + Message routing info kept for 10 days + + + + + + Anti-spam + + + + + [ ... Redacted message ... ] + + + + Anonymous @@ -7678,29 +8145,55 @@ before you can comment - - + + <p><font color="#ff0000"><b>The author of this message (with ID %1) is banned.</b> + + + + + <UL><li><b><font color="#ff0000">Messages from this author are not forwarded. </font></b></li> + + + + + <li><b><font color="#ff0000">Messages from this author are replaced by this text. </font></b></li></ul> + + + + + <p><b><font color="#ff0000">You can force the visibility and forwarding of messages by setting a different opinion for that Id in People's tab.</font></b></p> + + + + + + + + RetroShare - + No Forum Selected! - + + + You cant reply to a non-existant Message + You cant reply to an Anonymous Author - + Original Message @@ -7725,7 +8218,7 @@ before you can comment - + Forum name @@ -7740,7 +8233,7 @@ before you can comment - + Description @@ -7750,12 +8243,12 @@ before you can comment - + <p>Subscribing to the forum will gather available posts from your subscribed friends, and make the forum visible to all other friends.</p><p>Afterwards you can unsubscribe from the context menu of the forum list at left.</p> - + Reply with private message @@ -7771,7 +8264,12 @@ before you can comment GxsForumsDialog - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> + + + + Forums 論壇 @@ -7801,11 +8299,6 @@ before you can comment Other Forums - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Forums</h1> <p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> <p>You see forums your friends are subscribed to, and you forward subscribed forums to your friends. This automatically promotes interesting forums in the network.</p> <p>Forum messages get deleted after %1 months.</p> - - GxsForumsFillThread @@ -7828,13 +8321,13 @@ before you can comment GxsGroupDialog - - + + Name - + Add Icon @@ -7849,7 +8342,7 @@ before you can comment - + check peers you would like to share private publish key with @@ -7859,36 +8352,36 @@ before you can comment - - + + Description - + Message Distribution - + Public - - + + Restricted to Group - - + + Only For Your Friends - + Publish Signatures @@ -7918,7 +8411,7 @@ before you can comment - + PGP Required @@ -7934,12 +8427,12 @@ before you can comment - + Comments - + Allow Comments @@ -7949,33 +8442,73 @@ before you can comment - + + Spam-protection + + + + + <html><head/><body><p>This makes the media increase the reputation threshold to 0.4 for anonymous ids, while keeping it to 0.0 for PGP-linked ids. Therefore, anonymous ids can still post, if their local reputation score is above that threshold.</p></body></html> + + + + + Favor PGP-signed ids + + + + + <html><head/><body><p align="justify">This feature allows Retroshare to locally keep a record of who forwarded each message to you, for the last 10 days. Although useless if alone (and already available whatsoever) this information can be used by a group of collaborative friends to easily locate the source of spams. To be used with care, since it significantly decreases the anonymity of message posts.</p></body></html> + + + + + Keep track of posts + + + + + Anti spam + + + + + PGP-signed ids + + + + + Track of Posts + + + + Contacts: - + Please add a Name - + Load Group Logo - + Submit Group Changes - + Failed to Prepare Group MetaData - please Review - + Will be used to send feedback @@ -7985,12 +8518,12 @@ before you can comment - + Set a descriptive description here - + Info @@ -8063,7 +8596,7 @@ before you can comment - + Unsubscribe @@ -8073,12 +8606,12 @@ before you can comment - + Open in new tab 在新標簽中打開 - + Show Details @@ -8103,12 +8636,12 @@ before you can comment - + AUTHD - + Share admin permissions @@ -8116,7 +8649,7 @@ before you can comment GxsIdChooser - + No Signature @@ -8129,7 +8662,7 @@ before you can comment GxsIdDetails - + Loading @@ -8144,8 +8677,15 @@ before you can comment - + + + + [Banned] + + + + Authentication @@ -8160,7 +8700,7 @@ before you can comment - + Identity&nbsp;name @@ -8175,7 +8715,7 @@ before you can comment - + [Unknown] @@ -8193,6 +8733,49 @@ before you can comment 未命名 + + GxsTunnelsDialog + + + Authenticated tunnels: + + + + + Tunnel ID: %1 + + + + + from: %1 + + + + + to: %1 + + + + + status: %1 + + + + + total sent: %1 bytes + + + + + total recv: %1 bytes + + + + + Unknown Peer + + + HashBox @@ -8388,28 +8971,7 @@ before you can comment 關於 - - <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> -<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> -<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> -<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> -<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twiter</a></li></ul></body></html> - - - - + Authors @@ -8456,7 +9018,28 @@ p, li { white-space: pre-wrap; } - + + <!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-weight:600;">RetroShare is an 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-weight:600;">private and secure decentralized 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-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-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-weight:600;">RetroShare provides file sharing, 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-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; font-weight:600;">Useful 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-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=" font-size:12pt; text-decoration: underline; color:#0000ff;">Retroshare Webpage</span></a></li> +<li style=" font-size:12pt; 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">Retroshare Wiki</a></li> +<li style=" font-size:12pt; 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">RetroShare's Forum</a></li> +<li style=" font-size:12pt; 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">Retroshare Project Page</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Team Blog</a></li> +<li style=" font-size:12pt; text-decoration: underline; color:#0000ff;" 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://retroshare.sourceforge.net">RetroShare Dev Twitter</a></li></ul></body></html> + + + + Libraries @@ -8498,7 +9081,7 @@ p, li { white-space: pre-wrap; } IdDetailsDialog - + Person Details @@ -8533,78 +9116,88 @@ p, li { white-space: pre-wrap; } - + + Last used: + + + + Your Avatar Click here to change your avatar - + Reputation - - Overall + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> - - Implicit - - - - - Opinion - - - - - Peers - - - - - Edit Reputation - - - - - Tweak Opinion - - - - - Accept (+100) + + Your opinion: - Positive (+10) + Neighbor nodes: - Negative (-10) + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself,</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and is shared among friends. A final score is calculated according to a formula that accounts your own opinion and your friends' opinions about someone:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> S = own_opinion * a + friends_opinion * (1-a)</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The factor 'a' depends on the type of ID. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- anonymous IDs: </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- PGP-signed IDs by unknown PGP keys: a=</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity:</p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; -0.5: Posts are not stored, nor forwarded </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.2: Posts are hidden, but still transmitted</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">S &lt; 0.0: </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall rating is computed in such a way that it is not possible for a single person to deterministically change someone's status at neighbor nodes.</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;"><br /></p></body></html> - - Ban (-100) + + Negative - Custom + Neutral - - Modify + + Positive - + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + Unknown real name @@ -8643,37 +9236,58 @@ p, li { white-space: pre-wrap; } Anonymous identity + + + +50 Known PGP + + + + + +10 UnKnown PGP + + + + + +5 Anon Id + + + + + OK + + + + + Banned + + IdDialog - + New ID - + + All - + + Reputation - - - Todo - - - Search - + Unknown real name @@ -8683,72 +9297,29 @@ p, li { white-space: pre-wrap; } - + Create new Identity - - Overall + + Persons - - Implicit + + <!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:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Your own opinion about an identity rules the visibility of that identity for yourself and your friend nodes. Your own opinion is shared among friends and used to compute a reputation score: If your opinion about an identity is neutral, the reputation score is the average of your friend's opinions. If not, your own opinion gives the score.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The overall score is used in chat lobbies, forums and channels to decide on the actions to take for each specific identity. When the overall score is lower than -0.6, the identity is banned, which prevents all messages and forums/channels authored by this identity to be forwarded, both ways. Some forums also have special anti-spam flags that require a higher reputation level, making them more sensitive to bad opinions. Banned identities gradually lose their activity and eventually disappear (after 30 days). </p> +<p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></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;"><br /></p></body></html> - - Opinion - - - - - Peers - - - - - Edit reputation - - - - - Tweak Opinion - - - - - Accept (+100) - - - - - Positive (+10) - - - - - Negative (-10) - - - - - Ban (-100) - - - - - Custom - - - - - Modify - - - - + Edit identity @@ -8769,42 +9340,42 @@ p, li { white-space: pre-wrap; } - - Identity name - - - - + Owner node ID : - + Identity name : - + + () + + + + Identity ID - + Send message - + Identity info - + Identity ID : - + Owner node name : @@ -8814,7 +9385,57 @@ p, li { white-space: pre-wrap; } 類型 - + + Send Invite + + + + + <html><head/><body><p>Average opinion of neighbor nodes about this identity. Negative is bad,</p><p>positive is good. Zero is neutral.</p></body></html> + + + + + Your opinion: + + + + + Neighbor nodes: + + + + + Negative + + + + + Neutral + + + + + Positive + + + + + <html><head/><body><p>Overall reputation score, accounting for yours and your friends'.</p><p>Negative is bad, positive is good. Zero is neutral. If the score is too low,</p><p>the identity is flagged as bad, and will be filtered out in forums, chat lobbies,</p><p>channels, etc.</p></body></html> + + + + + Overall: + + + + + Contacts + + + + Owned by you @@ -8824,12 +9445,17 @@ p, li { white-space: pre-wrap; } - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + ID - + + Search ID + + + + This identity is owned by you @@ -8845,7 +9471,7 @@ p, li { white-space: pre-wrap; } - + Identity owned by you, linked to your Retroshare node @@ -8860,7 +9486,42 @@ p, li { white-space: pre-wrap; } - + + OK + + + + + Banned + + + + + Add to Contacts + + + + + Remove from Contacts + + + + + Set positive opinion + + + + + Set neutral opinion + + + + + Set negative opinion + + + + Distant chat cannot work @@ -8870,15 +9531,35 @@ p, li { white-space: pre-wrap; } - - - + + Hi,<br>I want to be friends with you on RetroShare.<br> + + + + + You have a friend invite + + + + + Respond now: + + + + + Thanks, <br> + + + + + + People - + Your Avatar Click here to change your avatar @@ -8899,7 +9580,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Identities</h1> <p>In this tab you can create/edit pseudo-anonymous identities. </p> <p>Identities are used to securely identify your data: sign forum and channel posts, and receive feedback using Retroshare built-in email system, post comments after channel posts, etc.</p> <p> Identities can optionally be signed by your Retroshare node's certificate. Signed identities are easier to trust but are easily linked to your node's IP address. </p> <p> Anonymous identities allow you to anonymously interact with other users. They cannot be spoofed, but noone can prove who really owns a given identity. </p> + + + + Linked to a friend Retroshare node @@ -8914,7 +9600,7 @@ p, li { white-space: pre-wrap; } - + Chat with this person @@ -8924,17 +9610,7 @@ p, li { white-space: pre-wrap; } - - Send message to this person - - - - - Columns - - - - + Distant chat refused with this person. @@ -8944,7 +9620,7 @@ p, li { white-space: pre-wrap; } - + +50 Known PGP @@ -8959,29 +9635,17 @@ p, li { white-space: pre-wrap; } - + Do you really want to delete this identity? - + Owned by - - - Show - - - - - - column - - - - + Node name: @@ -8991,7 +9655,7 @@ p, li { white-space: pre-wrap; } - + Really delete? @@ -9034,8 +9698,8 @@ p, li { white-space: pre-wrap; } - - + + To be generated @@ -9043,7 +9707,7 @@ p, li { white-space: pre-wrap; } - + @@ -9053,13 +9717,13 @@ p, li { white-space: pre-wrap; } - + Edit identity - + Error getting key! @@ -9079,7 +9743,7 @@ p, li { white-space: pre-wrap; } - + Create New Identity @@ -9134,7 +9798,7 @@ p, li { white-space: pre-wrap; } - + The nickname is too short. Please input at least %1 characters. @@ -9202,7 +9866,7 @@ p, li { white-space: pre-wrap; } - + Copy 複製 @@ -9232,16 +9896,35 @@ p, li { white-space: pre-wrap; } + + ImageUtil + + + + Save image + + + + + Cannot save the image, invalid filename + + + + + Not an image + + + LocalSharedFilesDialog - + Open File - + Open Folder @@ -9251,7 +9934,7 @@ p, li { white-space: pre-wrap; } - + Checking... @@ -9300,7 +9983,7 @@ p, li { white-space: pre-wrap; } - + Options 選項 @@ -9334,12 +10017,12 @@ p, li { white-space: pre-wrap; } - + RetroShare %1 a secure decentralized communication platform - + Unfinished @@ -9373,7 +10056,12 @@ p, li { white-space: pre-wrap; } - + + Open Messenger + + + + Open Messages @@ -9423,7 +10111,7 @@ p, li { white-space: pre-wrap; } - + Down: %1 (kB/s) @@ -9493,7 +10181,7 @@ p, li { white-space: pre-wrap; } - + Add 添加 @@ -9518,7 +10206,7 @@ p, li { white-space: pre-wrap; } - + Really quit ? @@ -9527,38 +10215,17 @@ p, li { white-space: pre-wrap; } MessageComposer - + Compose - - + Contacts - - >> To - - - - - >> Cc - - - - - >> Bcc - - - - - >> Recommend - - - - + Paragraph @@ -9639,7 +10306,7 @@ p, li { white-space: pre-wrap; } - + Subject: @@ -9650,12 +10317,22 @@ p, li { white-space: pre-wrap; } - + Tags - + + Address list: + + + + + Recommend this friend + + + + Set Text color @@ -9665,7 +10342,7 @@ p, li { white-space: pre-wrap; } - + Recommended Files @@ -9735,7 +10412,7 @@ p, li { white-space: pre-wrap; } - + Send To: @@ -9760,47 +10437,22 @@ p, li { white-space: pre-wrap; } - - Bullet List (Disc) + + All addresses (mixed) - Bullet List (Circle) + All people - - Bullet List (Square) + + My contacts - - Ordered List (Decimal) - - - - - Ordered List (Alpha lower) - - - - - Ordered List (Alpha upper) - - - - - Ordered List (Roman lower - - - - - Ordered List (Roman upper) - - - - + Hello,<br>I recommend a good friend of mine; you can trust them too when you trust me. <br> @@ -9826,12 +10478,12 @@ p, li { white-space: pre-wrap; } - + Save Message - + Message has not been Sent. Do you want to save message to draft box? @@ -9842,7 +10494,7 @@ Do you want to save message to draft box? - + Add to "To" @@ -9862,12 +10514,7 @@ Do you want to save message to draft box? - - Friend Details - - - - + Original Message @@ -9877,19 +10524,21 @@ Do you want to save message to draft box? 來自 - + + To - + + Cc - + Sent @@ -9931,12 +10580,13 @@ Do you want to save message to draft box? - + + Bcc - + Unknown 未知 @@ -10046,7 +10696,12 @@ Do you want to save message to draft box? - + + Details + + + + Open File... @@ -10093,12 +10748,7 @@ Do you want to save message ? - - Show: - - - - + Close @@ -10108,32 +10758,57 @@ Do you want to save message ? 從: - - All - - - - + Friend Nodes - - Person Details + + Bullet list (disc) - - Distant peer identities + + Bullet list (circle) - + + Bullet list (square) + + + + + Ordered list (decimal) + + + + + Ordered list (alpha lower) + + + + + Ordered list (alpha upper) + + + + + Ordered list (roman lower) + + + + + Ordered list (roman upper) + + + + Thanks, <br> - + Distant identity: @@ -10156,7 +10831,27 @@ Do you want to save message ? MessagePage - + + Everyone + + + + + Contacts + + + + + Nobody + + + + + Accept encrypted distant messages from + + + + Reading @@ -10171,7 +10866,7 @@ Do you want to save message ? - + Tags @@ -10211,7 +10906,7 @@ Do you want to save message ? - + Edit Tag @@ -10221,22 +10916,12 @@ Do you want to save message ? - + Distant messages: - - <html><head/><body><p align="justify">The link below allows people in the network to send encrypted messages to you, using tunnels. To do that, they need your public PGP key, which they will get using the Retroshare discovery system. </p></body></html> - - - - - Accept encrypted distant messages from everyone - - - - + Load embedded images @@ -10517,7 +11202,7 @@ Do you want to save message ? MessagesDialog - + New Message @@ -10584,24 +11269,24 @@ Do you want to save message ? - + Tags - - - + + + Inbox - - + + Outbox @@ -10613,14 +11298,14 @@ Do you want to save message ? - + Sent - + Trash @@ -10689,7 +11374,7 @@ Do you want to save message ? - + Reply to All @@ -10707,12 +11392,12 @@ Do you want to save message ? - + From 來自 - + Date 日期 @@ -10740,12 +11425,12 @@ Do you want to save message ? - + Click to sort by from - + Click to sort by date @@ -10800,7 +11485,12 @@ Do you want to save message ? - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and signed, and are relayed by intermediate nodes until they reach their final destination. </p> <p>Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> + + + + Starred @@ -10865,14 +11555,14 @@ Do you want to save message ? - - + + Drafts - + 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 gray star beside any message. @@ -10892,7 +11582,12 @@ Do you want to save message ? - + + This message goes to a distant person. + + + + @@ -10901,18 +11596,18 @@ Do you want to save message ? - + Messages - + Click to sort by signature - + This message was signed and the signature checks @@ -10922,15 +11617,10 @@ Do you want to save message ? - + This message comes from a distant person. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Messages</h1> <p>Retroshare has its own internal email system. You can send/receive emails to/from connected friend nodes.</p> <p>It is also possible to send messages to other people's Identities using the global routing system. These messages are always encrypted and are relayed by intermediate nodes until they reach their final destination. </p> <p>It is recommended to cryptographically sign distant messages, as a proof of your identity, using the <img width="16" src=":/images/stock_signature_ok.png"/> button in the message composer window. Distant messages stay into your Outbox until an acknowledgement of receipt has been received.</p> <p>Generally, you may use messages to recommend files to your friends by pasting file links, or recommend friend nodes to other friend nodes, in order to strenghten your network, or send feedback to a channel's owner.</p> - - MessengerWindow @@ -10953,7 +11643,22 @@ Do you want to save message ? MimeTextEdit - + + Paste as plain text + + + + + Spoiler + + + + + Select text to hide, then push this button + + + + Paste RetroShare Link @@ -10987,7 +11692,7 @@ Do you want to save message ? - + Expand 展開 @@ -11030,7 +11735,7 @@ Do you want to save message ? - + Network Status Unknown @@ -11074,26 +11779,6 @@ Do you want to save message ? Forwarded Port - - - OK | RetroShare Server - - - - - Internet connection - - - - - No internet connection - - - - - No local network - - NetworkDialog @@ -11207,7 +11892,7 @@ Do you want to save message ? - + Deny friend @@ -11265,7 +11950,7 @@ For security, your keyring was previously backed-up to file - + Personal signature @@ -11331,7 +12016,7 @@ Right-click and select 'make friend' to be able to connect. - + Data inconsistency in the keyring. This is most probably a bug. Please contact the developers. @@ -11346,7 +12031,7 @@ Right-click and select 'make friend' to be able to connect. - + Trust level @@ -11366,12 +12051,12 @@ Right-click and select 'make friend' to be able to connect. - + Make friend... - + Did peer authenticate you @@ -11401,7 +12086,7 @@ Right-click and select 'make friend' to be able to connect. - + Key removal has failed. Your keyring remains intact. Reported error: @@ -11470,7 +12155,7 @@ Reported error: NewsFeed - + News Feed @@ -11489,18 +12174,13 @@ Reported error: This is a test. - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> - - News feed - + Newest on top @@ -11509,6 +12189,11 @@ Reported error: Oldest on top + + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;News Feed</h1> <p>The News Feed displays the last events on your network, sorted by the time you received them. This gives you a summary of the activity of your friends. You can configure which events to show by pressing on <b>Options</b>. </p> <p>The various events shown are: <ul> <li>Connection attempts (useful to make friends with new people and control who's trying to reach you)</li> <li>Channel and Forum posts</li> <li>New Channels and Forums you can subscribe to</li> <li>Private messages from your friends</li> </ul> </p> + + NotifyPage @@ -11652,7 +12337,12 @@ Reported error: - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> + + + + Top Left @@ -11676,11 +12366,6 @@ Reported error: Notify - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Notify</h1> <p>Retroshare will notify you about what happens in your network. Depending on your usage, you may want to enable or disable some of the notifications. This page is designed for that!</p> - - Disable All Toasters @@ -11730,7 +12415,7 @@ Reported error: NotifyQt - + PGP key passphrase @@ -11770,7 +12455,7 @@ Reported error: - + Test 測試 @@ -11785,13 +12470,13 @@ Reported error: - - + + Encrypted message - + Please enter your PGP password for key @@ -11840,24 +12525,6 @@ Reported error: - - OutQueueStatisticsWidget - - - Outqueue statistics - - - - - By priority: - - - - - By service : - - - PGPKeyDialog @@ -11881,12 +12548,22 @@ Reported error: - + + <html><head/><body><p>The PGP key fingerprint is a---supposedly unforgeable---characteristics of the PGP key. In order to make sure that you're dealing with the right key, compare the fingerprints.</p></body></html> + + + + Trust level: - + + <html><head/><body><p>The trust level is an optional and local parameter that you can set in order to remember your option about a given PGP key. It is not used whatsoever to authorize connections. </p></body></html> + + + + Unset @@ -11921,33 +12598,51 @@ Reported error: - - <!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> -<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> + + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. The signatures below cryptographically attest that owners of the listed keys recognise the current PGP key as authentic.</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:'Sans'; 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-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign this PGP key + <html><head/><body><p><span style=" font-size:10pt;">Signing a friend's key is a way to express your trust into this friend, to your other friends. It helps them to decide whether to allow connections from that key based on your own trust. Signing a key is absolutely optional and cannot be undone, so do it wisely.</span></p></body></html> + + + + Sign PGP key + <html><head/><body><p>Click here if you want to refuse connections to nodes authenticated by this key.</p></body></html> + + + + Deny connections + <html><head/><body><p>Click this if you want your node to accept connecting to Retroshare nodes authenticated by this PGP key. This is done automatically when exchanging your Retroshare certificate with someone. In order to make friends, it is better to exchange certificates than accept connections from a given key, since the certificate also contain useful connection information (IP, DNS, SSL ids, etc).</p></body></html> + + + + Accept connections @@ -11958,6 +12653,11 @@ p, li { white-space: pre-wrap; } + <html><head/><body><p>This button will toggle the inclusion of signatures in the ascii display of the PGP key. See the comments about signatures in the other tab. </p></body></html> + + + + Include signatures @@ -12012,7 +12712,7 @@ p, li { white-space: pre-wrap; } - + This key has signed your own PGP key @@ -12186,12 +12886,12 @@ p, li { white-space: pre-wrap; } PeerStatus - + Friends: 0/0 - + Online Friends/Total Friends @@ -12543,7 +13243,7 @@ p, li { white-space: pre-wrap; } - + Error: instance '%1'can't create a widget @@ -12604,18 +13304,18 @@ p, li { white-space: pre-wrap; } - - Loaded plugins - - - - + Plugin look-up directories - - Hash rejected. Enable it manually and restart, if you need. + + Plugin disabled. Click the enable button and restart Retroshare + + + + + [disabled] @@ -12624,27 +13324,36 @@ p, li { white-space: pre-wrap; } - + + + + + + [loading problem] + + + + No SVN number supplied. Please read plugin development manual. - + Loading error. - + Missing symbol. Wrong version? - + No plugin object - + Plugins is loaded. @@ -12654,22 +13363,7 @@ p, li { white-space: pre-wrap; } - - Title unavailable - - - - - Description unavailable - - - - - Unknown version - - - - + Check this for developing plugins. They will not be checked for the hash. However, in normal times, checking the hash protects you from @@ -12677,13 +13371,14 @@ malicious behavior of crafted plugins. - - Plugins + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Plugins</h1> <p>Plugins are loaded from the directories listed in the bottom list.</p> <p>For security reasons, accepted plugins load automatically until the main Retroshare executable or the plugin library changes. In such a case, the user needs to confirm them again. After the program is started, you can enable a plugin manually by clicking on the "Enable" button and then restart Retroshare.</p> <p>If you want to develop your own plugins, contact the developpers team they will be happy to help you out!</p> + + + Plugins @@ -12753,12 +13448,17 @@ malicious behavior of crafted plugins. PopupDistantChatDialog - + + Chat remotely closed. Please close this window. + + + + The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now. - + Closing this window will end the conversation, notify the peer and remove the encrypted tunnel. @@ -12768,12 +13468,7 @@ malicious behavior of crafted plugins. - - Hash Error. No tunnel. - - - - + Can't send message, because there is no tunnel. @@ -12854,7 +13549,12 @@ malicious behavior of crafted plugins. - + + <h1><img width="32" src=":/icons/help_64.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> + + + + Create Topic @@ -12878,11 +13578,6 @@ malicious behavior of crafted plugins. Other Topics - - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;Posted</h1> <p>The posted service allows you to share internet links, that spread among Retroshare nodes like forums and channels</p> <p>Links can be commented by subscribed users. A promotion system also gives the opportunity to enlight important links.</p> <p>There is no restriction on which links are shared. Be careful when clicking on them.</p> <p>Posted links get deleted after %1 months.</p> - - PostedGroupDialog @@ -13137,7 +13832,7 @@ malicious behavior of crafted plugins. PrintPreview - + RetroShare Message - Print Preview @@ -13481,7 +14176,8 @@ p, li { white-space: pre-wrap; } QObject - + + Confirmation @@ -13491,7 +14187,7 @@ p, li { white-space: pre-wrap; } - + Click to add this RetroShare cert to your PGP keyring and open the Make Friend Wizard. @@ -13518,7 +14214,12 @@ and open the Make Friend Wizard. - + + This file already exists. Do you want to open it ? + + + + %1 of %2 RetroShare link processed. @@ -13684,7 +14385,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Deny friend @@ -13704,7 +14405,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + 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 PGP keys are mentioned by existing RetroShare accounts, probably because you just changed to this new version of the software. @@ -13735,7 +14436,7 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace - + Multiple instances @@ -13769,11 +14470,6 @@ Characters <b>",|,/,\,&lt;,&gt;,*,?</b> will be replace Tunnel is pending... - - - Secured tunnel established. Waiting for ACK... - - Secured tunnel is working. You can talk! @@ -13788,7 +14484,7 @@ Reported error is: - + Click to send a private message to %1 (%2). @@ -13838,7 +14534,7 @@ Reported error is: - + You appear to have nodes associated to DSA keys: @@ -13848,7 +14544,7 @@ Reported error is: - + enabled @@ -13858,12 +14554,12 @@ Reported error is: - + Join chat lobby - + Move IP %1 to whitelist @@ -13878,42 +14574,49 @@ Reported error is: - + + %1 seconds ago + %1 minute ago + %1 minutes ago + %1 hour ago + %1 hours ago + %1 day ago + %1 days ago - + Subject: @@ -13932,6 +14635,12 @@ Reported error is: Id: + + + +Security: no anonymous IDs + + @@ -13943,6 +14652,16 @@ Reported error is: The following has not been added to your download list, because you already have it: + + + Error + + + + + unable to parse XML file! + + QuickStartWizard @@ -13952,7 +14671,7 @@ Reported error is: - + <!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; } @@ -13974,21 +14693,23 @@ p, li { white-space: pre-wrap; } - - + + + Next > - - - - + + + + + Exit - + For best performance, RetroShare needs to know a little about your connection to the internet. @@ -14055,13 +14776,14 @@ p, li { white-space: pre-wrap; } - - + + + < Back - + <!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; } @@ -14079,7 +14801,7 @@ p, li { white-space: pre-wrap; } - + Network Wide @@ -14104,7 +14826,27 @@ p, li { white-space: pre-wrap; } - + + RetroShare Page Display Style + + + + + Where do you want to have the buttons for the page? + + + + + ToolBar View + + + + + List View + + + + <!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; } @@ -14203,7 +14945,7 @@ p, li { white-space: pre-wrap; } RSGraphWidget - + %1 KB @@ -14239,7 +14981,7 @@ p, li { white-space: pre-wrap; } RSPermissionMatrixWidget - + Allowed by default @@ -14270,7 +15012,7 @@ p, li { white-space: pre-wrap; } - Switched Off + Globally switched Off @@ -14292,7 +15034,7 @@ p, li { white-space: pre-wrap; } RSettingsWin - + Error Saving Configuration on page @@ -14401,7 +15143,7 @@ p, li { white-space: pre-wrap; } - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Relays</h1> <p>By activating relays, you allow your Retroshare node to act as a bridge between Retroshare users who cannot connect directly, e.g. because they're firewalled.</p> <p>You may choose to act as a relay by checking <i>enable relay connections</i>, or simply benefit from other peers acting as relay, by checking <i>use relay servers</i>. For the former, you may specify the bandwidth allocated when acting as a relay for friends of you, for friends of your friends, or anyone in the Retroshare network.</p> <p>In any case, a Retroshare node acting as a relay cannot see the relayed traffic, since it is encrypted and authenticated by the two relayed nodes.</p> @@ -14426,7 +15168,7 @@ p, li { white-space: pre-wrap; } RetroshareDirModel - + NEW @@ -14762,7 +15504,7 @@ If you believe it is correct, remove the corresponding line from the file and re RsHtml - + Image is oversized for transmission. Reducing image to %1x%2 pixels? @@ -14779,7 +15521,7 @@ Reducing image to %1x%2 pixels? Rshare - + Resets ALL stored RetroShare settings. @@ -14824,17 +15566,17 @@ Reducing image to %1x%2 pixels? - + built-in - + Could not create data directory: %1 - + Revision @@ -14862,33 +15604,10 @@ Reducing image to %1x%2 pixels? RTT 統計 - - SFListDelegate - - - B - - - - - KB - - - - - MB - - - - - GB - - - SearchDialog - + Enter a keyword here (at least 3 char long) @@ -15069,12 +15788,12 @@ Reducing image to %1x%2 pixels? - + File Name - + Download 下載 @@ -15143,7 +15862,7 @@ Reducing image to %1x%2 pixels? - + Create Collection... @@ -15163,7 +15882,7 @@ Reducing image to %1x%2 pixels? - + Collection @@ -15406,12 +16125,22 @@ Reducing image to %1x%2 pixels? ServerPage - + Network Configuration - + + Network Mode + + + + + Nat + + + + Automatic (UPnP) @@ -15426,7 +16155,7 @@ Reducing image to %1x%2 pixels? - + Public: DHT & Discovery @@ -15446,13 +16175,13 @@ Reducing image to %1x%2 pixels? - - + + Local Address - + External Address @@ -15462,28 +16191,28 @@ Reducing image to %1x%2 pixels? - + Port: - + Local network - + External ip address finder - + UPnP - + Known / Previous IPs: @@ -15506,13 +16235,13 @@ behind a firewall or a VPN. - - + + kB/s - + Acceptable ports range from 10 to 65535. Normally Ports below 1024 are reserved by your system. @@ -15522,23 +16251,12 @@ behind a firewall or a VPN. - + Onion Address - - Expected torrc Port Configuration: - - - - - HiddenServiceDir </your/path/to/hidden/directory/service> -HiddenServicePort 9191 127.0.0.1:9191 - - - - + Discovery On (recommended) @@ -15548,17 +16266,65 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden - See Config + + + + + I2P Address + + + + + I2P incoming ok + + + + + Points at: + + + + + Tor incoming ok + + + + + incoming ok + + + + + Proxy seems to work. - + + I2P proxy is not enabled + + + + + You are reachable through the hidden service. + + + + + The proxy is not enabled or broken. +Are all services up and running fine?? +Also check your ports! + + + + [Hidden mode] - + <html><head/><body><p>This clears the list of known addresses. This action is useful if for some reason your address list contains an invalid/irrelevant/expired address that you want to avoid passing to your friends as a contact address.</p></body></html> @@ -15568,90 +16334,95 @@ HiddenServicePort 9191 127.0.0.1:9191 - + Download limit (KB/s) - + <html><head/><body><p>This download limit covers the whole application. However, in some situations, such as when transfering many small files at once, the estimated bandwidth becomes unreliable and the total value reported by Retroshare might exceed that limit. </p></body></html> - + Upload limit (KB/s) - + <html><head/><body><p>The upload limit covers the entire software. Too small an upload limit might eventually block low priority services (forums, channels). A minimum recommended value is 50KB/s. </p></body></html> - + + <html><head/><body><p>This button simulates a SSL connection to your hidden address using the corresponding proxy. If your hidden node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several &quot;security warning&quot; about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it, which you should interpret as a sign of good communication.</p></body></html> + + + + Test 測試 - + Network - + IP Filters - + IP blacklist - + IP range - - - + + + Status - - + + Origin - - + + Reason - - + + Comment - + IPs - + IP whitelist - + Manual input @@ -15676,12 +16447,118 @@ HiddenServicePort 9191 127.0.0.1:9191 - + + Hidden Service Configuration + + + + + Outgoing Connections + + + + + <html><head/><body><p>This is the port of the Tor Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though Tor. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though Tor. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P Socks Proxy + + + + + <html><head/><body><p>This is the port of the I2P Socks proxy. Your Retroshare node can use this port to connect to</p><p>Hidden nodes. The led at right turns green when this port is active on your computer. </p><p>This does not mean however that your Retroshare traffic transits though I2P. It does only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + <html><head/><body><p>This led is green when the port listen on the left is active on your computer. It does not</p><p>mean that your Retroshare traffic transits though I2P. It will do so only if </p><p>you connect to Hidden nodes, or if you are running a Hidden node yourself.</p></body></html> + + + + + I2P outgoing Okay + + + + + Tor Socks Proxy default: 127.0.0.1:9050. Set in torrc config and update here. + +I2P Socks Proxy: see http://127.0.0.1:7657/i2ptunnelmgr for setting up a client tunnel: +Tunnel Wizard -> Client Tunnel -> SOCKS 4/4a/5 -> enter a name -> leave 'Outproxies' empty -> enter port (memorize!) [you may also want to set the reachability to 127.0.0.1] -> check 'Auto Start' -> finish! +Now enter the address (e.g. 127.0.0.1) and the port you've picked before for the I2P Proxy. + +You can connect to Hidden Nodes, even if you are running a standard Node, so why not setup Tor and/or I2P? + + + + + Incoming Service Connections + + + + + + Service Address + + + + + <html><head/><body><p>This is your hidden address. It should look like <span style=" font-weight:600;">[something].onion</span> or <span style=" font-weight:600;">[something].b32.i2p. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span>. For I2P: Setup a server tunnel ( http://127.0.0.1:7657/i2ptunnelmgr ) and copy it's base32 address when it is started (should end with .b32.i2p)</p></body></html> + + + + + <html><head/><body><p>This is the local address to which the hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> + + + + + <html><head/><body><p>This led turns green only if you launch an active test using the above button. </p><p>When it does, it means that your hidden node can be reached from anywhere, using the Tor (resp. I2P) </p><p>network. Congratulations!</p></body></html> + + + + + incoming ok + + + + + Expected Configuration: + + + + + Please fill in a service address + + + + + To Receive Connections, you must first setup a Tor/I2P Hidden Service. +For Tor: See torrc and documentation for HOWTO details. +For I2P: See http://127.0.0.1:7657/i2ptunnelmgr for setting up a server tunnel: +Tunnel Wizard -> Server Tunnel -> Standard -> enter a name -> enter the address and port your RS is using (see Local Address above) -> check 'Auto Start' -> finish! + +Once this is done, paste the Onion/I2P (Base32) Address in the box above. +This is your external address on the Tor/I2P network. +Finally make sure that the Ports match the configuration. + +If you have issues connecting over Tor check the Tor logs too. + + + + IP Range - + Reported by DHT for IP masquerading @@ -15704,32 +16581,33 @@ HiddenServicePort 9191 127.0.0.1:9191 - + <html><head/><body><p>White listed IPs are gathered from the following sources: IPs coming inside a manually exchanged certificate, IP ranges entered by you in this window, or in the security feed items.</p><p>The default behavior for Retroshare is to (1) always allow connection to peers with IP in the whitelist, even if that IP is also blacklisted; (2) optionally require IPs to be in the whitelist. You can change this behavior for each peer in the &quot;Details&quot; window of each Retroshare node. </p></body></html> - + <html><head/><body><p>The DHT allows you to answer connection requests from your friends using BitTorrent's DHT. It greatly improves the connectivity. No information is actually stored in the DHT. It is only used as a proxy system to get in touch with other Retroshare nodes.</p><p>The Discovery service sends node name and ids of your trusted contacts to connected peers, to help them choose new friends. The friendship is never automatic however, and both peers still need to trust each other to allow connection. </p></body></html> - + + <html><head/><body><p>The bullet turns green as soon as Retroshare manages to get your own IP from the websites listed below, if you enabled that action. Retroshare will also use other means to find out your own IP.</p></body></html> - + <html><head/><body><p>This list gets automatically filled with information gathered at multiple sources: masquerading peers reported by the DHT, IP ranges entered by you, and IP ranges reported by your friends. Default settings should protect you against large scale traffic relaying.</p><p>Automatically guessing masquerading IPs can put your friends IPs in the blacklist. In this case, use the context menu to whitelist them.</p></body></html> - + activate IP filtering - + <html><head/><body><p>This is very drastic, be careful. Since masquerading IPs might be actual real IPs, this option might cause disconnection, and will probably force you to add your friends' IPs into the whitelist.</p></body></html> @@ -15759,99 +16637,20 @@ HiddenServicePort 9191 127.0.0.1:9191 - - <html><head/><body><p>This Retroshare node is running in &quot;Hidden Mode&quot;. That means it can only be reached though the Tor network.</p><p>As such, some network options are disabled.</p></body></html> - - - - - Tor Configuration - - - - - Outgoing Tor Connections - - - - + Tor Socks Proxy - + Tor outgoing Okay - - Tor Socks Proxy default: 127.0.01:9050. Set in torrc config and update here. - -You can connect to Hidden Nodes, even if you -are running a standard Node, so why not setup Tor? - - - - - Incoming Tor Connections - - - - - <html><head/><body><p>This button simulates a SSL connection to your Tor address using the Tor proxy. If your Tor node is reachable, it should cause a SSL handshake error, which RS will interpret as a valid connection state. This operation might also cause several "security warning" about connections from your local host IP (127.0.0.1) in the News Feed if you enabled it,</p></body></html> - - - - - <html><head/><body><p>This is your onion address. It should look like <span style=" font-weight:600;">[something].onion. </span>If you configured a hidden service with Tor, the onion address is generated automatically by Tor. You can get it in e.g. <span style=" font-weight:600;">/var/lib/tor/[service name]/hostname</span></p></body></html> - - - - - <html><head/><body><p>This is the local address to which the Tor hidden service points at your localhost. Most of the time, <span style=" font-weight:600;">127.0.0.1</span> is the right answer.</p></body></html> - - - - - Tor incoming ok - - - - - To Receive Connections, you must first setup a Tor Hidden Service. -See Tor documentation for HOWTO details. - -Once this is done, paste the Onion Address in the box above. -This is your external address on the Tor network. -Finally make sure that the Ports match the Tor configuration. - -If you have issues connecting over Tor check the Tor logs too. - - - - - Hidden - See Tor Config - - - - + Tor proxy is not enabled - - - - You are reachable through Tor. - - - - - - Tor proxy is not enabled or broken. -Are you running a Tor hidden service? -Check your ports! - - ServicePermissionDialog @@ -15884,7 +16683,7 @@ Check your ports! ServicePermissionsPage - + ServicePermissions @@ -15899,13 +16698,13 @@ Check your ports! - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both needs to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allow to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> + + hide offline - - hide offline + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Permissions</h1> <p>Permissions allow you to control which services are available to which friends.</p> <p>Each interruptor shows two lights, indicating whether you or your friend has enabled that service. Both need to be ON (showing <img height=20 src=":/images/switch11.png"/>) to let information transfer for a specific service/friend combination.</p> <p>For each service, the global switch <img height=20 src=":/images/global_switch_on.png"> / <img height=20 src=":/images/global_switch_off.png"> allows you to turn a service ON/OFF for all friends at once.</p> <p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also stop all anonymous transfer, distant chat and distant messaging.</p> @@ -16169,7 +16968,7 @@ Select the Friends with which you want to Share your Channel. 下載 - + Copy retroshare Links to Clipboard @@ -16194,7 +16993,7 @@ Select the Friends with which you want to Share your Channel. - + RetroShare Link @@ -16210,7 +17009,7 @@ Select the Friends with which you want to Share your Channel. - + Create Collection... @@ -16233,7 +17032,7 @@ Select the Friends with which you want to Share your Channel. SoundManager - + Friend @@ -16259,11 +17058,12 @@ Select the Friends with which you want to Share your Channel. + Message arrived - + Download @@ -16272,6 +17072,11 @@ Select the Friends with which you want to Share your Channel. Download complete + + + Lobby + + SoundPage @@ -16332,7 +17137,7 @@ Select the Friends with which you want to Share your Channel. SplashScreen - + Load profile @@ -16574,12 +17379,12 @@ This choice can be reverted in settings. - + Connected - + Unreachable @@ -16595,18 +17400,18 @@ This choice can be reverted in settings. - + Trying TCP - - + + Trying UDP - + Connected: TCP @@ -16617,6 +17422,11 @@ This choice can be reverted in settings. + Connected: I2P + + + + Connected: Unknown @@ -16626,7 +17436,7 @@ This choice can be reverted in settings. - + TCP-in @@ -16636,7 +17446,7 @@ This choice can be reverted in settings. - + inbound connection @@ -16646,7 +17456,7 @@ This choice can be reverted in settings. - + UDP @@ -16660,13 +17470,23 @@ This choice can be reverted in settings. Tor-out + + + I2P-in + + + + + I2P-out + + unkown - + Connected: Tor @@ -16875,7 +17695,7 @@ p, li { white-space: pre-wrap; } TBoard - + Pause @@ -16924,7 +17744,7 @@ p, li { white-space: pre-wrap; } ToasterDisable - + All Toasters are disabled @@ -17057,16 +17877,18 @@ p, li { white-space: pre-wrap; } TransfersDialog + Downloads + Uploads - + Name i.e: file name @@ -17262,25 +18084,25 @@ p, li { white-space: pre-wrap; } - + Slower - - + + Average - - + + Faster - + Random @@ -17305,7 +18127,12 @@ p, li { white-space: pre-wrap; } - + + <h1><img width="%1" src=":/icons/help_64.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=%2 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> + + + + Move in Queue... @@ -17331,39 +18158,39 @@ p, li { white-space: pre-wrap; } - + Failed - - + + Okay - - + + Waiting - + Downloading 下載中 - + Complete - + Queued @@ -17397,7 +18224,7 @@ Try to be patient! - + Transferring @@ -17407,7 +18234,7 @@ Try to be patient! - + Are you sure that you want to cancel and delete these files? @@ -17465,7 +18292,7 @@ Try to be patient! - + Last Time Seen i.e: Last Time Receiced Data @@ -17571,7 +18398,7 @@ Try to be patient! - + Columns @@ -17581,7 +18408,7 @@ Try to be patient! - + Path i.e: Where file is saved @@ -17597,12 +18424,7 @@ Try to be patient! - - <h1><img width="32" src=":/images/64px_help.png">&nbsp;&nbsp;File Transfer</h1> <p>Retroshare brings two ways of transferring files: direct transfers from your friends, and distant anonymous tunnelled transfers. In addition, file transfer is multi-source and allows swarming (you can be a source while downloading)</p> <p>You can share files using the <img src=":/images/directoryadd_24x24_shadow.png" width=16 /> icon from the left side bar. These files will be listed in the My Files tab. You can decide for each friend group whether they can or not see these files in their Friends Files tab</p> <p>The search tab reports files from your friends' file lists, and distant files that can be reached anonymously using the multi-hop tunnelling system.</p> - - - - + Could not delete preview file @@ -17612,7 +18434,7 @@ Try to be patient! - + Create Collection... @@ -17627,7 +18449,7 @@ Try to be patient! - + Collection @@ -17637,17 +18459,17 @@ Try to be patient! - + Anonymous tunnel 0x - + Show file list transfers - + version: @@ -17683,7 +18505,7 @@ Try to be patient! - + Friends Directories @@ -17726,7 +18548,7 @@ Try to be patient! TurtleRouterDialog - + Search requests @@ -17789,7 +18611,7 @@ Try to be patient! - + Age in seconds @@ -17804,7 +18626,17 @@ Try to be patient! - + + Anonymous tunnels + + + + + Authenticated tunnels + + + + Unknown Peer @@ -17813,16 +18645,11 @@ Try to be patient! Turtle Router - - - Tunnel Requests - - TurtleRouterStatisticsWidget - + Search requests repartition @@ -18021,10 +18848,20 @@ Try to be patient! - + + <h1><img width="24" src=":/icons/help_64.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows you to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> + + + + Webinterface not enabled + + + The webinterface is not enabled. Enable it in Settings -> Webinterface. + + failed to start Webinterface @@ -18035,11 +18872,6 @@ Try to be patient! Webinterface - - - <h1><img width="24" src=":/images/64px_help.png">&nbsp;&nbsp;Webinterface</h1> <p>The webinterface allows to control Retroshare from the browser. Multiple devices can share control over one Retroshare instance. So you could start a conversation on a tablet computer and later use a desktop computer to continue it.</p> <p>Warning: don't expose the webinterface to the internet, because there is no access control and no encryption. If you want to use the webinterface over the internet, use a SSH tunnel or a proxy to secure the connection.</p> - - WikiAddDialog @@ -18229,7 +19061,7 @@ Try to be patient! - + My Groups @@ -18249,7 +19081,7 @@ Try to be patient! - + Subscribe to Group From 4a8edee615d763e4b8e874841a7f27349fefca5c Mon Sep 17 00:00:00 2001 From: csoler Date: Sat, 6 Feb 2016 12:01:39 -0500 Subject: [PATCH 20/23] reverted commits 1843a5460d7fba276378e9e866a5f0228d056b64 and 48d7c576622a03c857499b8ea318fa5534ef5164 for the release, since they dont fit the GUI style and cause problems, until they are made right --- .../src/gui/qss/stylesheet/Standard.qss | 19 ---- .../src/gui/statusbar/OpModeStatus.cpp | 89 +++---------------- .../src/gui/statusbar/OpModeStatus.h | 23 +---- retroshare-gui/src/qss/blacknight.qss | 20 +---- retroshare-gui/src/qss/blue.qss | 19 ---- retroshare-gui/src/qss/groove.qss | 21 ----- retroshare-gui/src/qss/orangesurfer.qss | 19 ---- retroshare-gui/src/qss/qdarkstyle.qss | 19 ---- retroshare-gui/src/qss/qlive.qss | 19 ---- retroshare-gui/src/qss/redscorpion.qss | 19 ---- retroshare-gui/src/qss/silver.qss | 19 ---- retroshare-gui/src/qss/silvergrey.qss | 19 ---- retroshare-gui/src/qss/uus.qss | 19 ---- retroshare-gui/src/qss/wx.qss | 19 ---- retroshare-gui/src/qss/yaba.qss | 19 ---- retroshare-gui/src/qss/yeah.qss | 19 ---- 16 files changed, 12 insertions(+), 369 deletions(-) diff --git a/retroshare-gui/src/gui/qss/stylesheet/Standard.qss b/retroshare-gui/src/gui/qss/stylesheet/Standard.qss index 05a9b6e94..9fa5593d5 100644 --- a/retroshare-gui/src/gui/qss/stylesheet/Standard.qss +++ b/retroshare-gui/src/gui/qss/stylesheet/Standard.qss @@ -662,22 +662,3 @@ IdEditDialog QLabel#info_label background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2); } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp b/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp index e7f7eab13..96934c5bf 100644 --- a/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp +++ b/retroshare-gui/src/gui/statusbar/OpModeStatus.cpp @@ -15,7 +15,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. ****************************************************************/ @@ -23,35 +23,26 @@ #include #include "gui/statusbar/OpModeStatus.h" -#include "gui/settings/rsharesettings.h" - #include - #include OpModeStatus::OpModeStatus(QWidget *parent) - : QComboBox(parent) + : QComboBox(parent) { - onUpdate = false; /* add the options */ addItem(tr("Normal Mode"), RS_OPMODE_FULL); - setItemData(0, opMode_Full_Color, Qt::BackgroundRole); addItem(tr("No Anon D/L"), RS_OPMODE_NOTURTLE); - setItemData(1, opMode_NoTurtle_Color, Qt::BackgroundRole); addItem(tr("Gaming Mode"), RS_OPMODE_GAMING); - setItemData(2, opMode_Gaming_Color, Qt::BackgroundRole); addItem(tr("Low Traffic"), RS_OPMODE_MINIMAL); - setItemData(3, opMode_Minimal_Color, Qt::BackgroundRole); connect(this, SIGNAL(activated( int )), this, SLOT(setOpMode())); - setCurrentIndex(Settings->valueFromGroup("StatusBar", "OpMode", QVariant(0)).toInt()); - setOpMode(); setToolTip(tr("Use this DropList to quickly change Retroshare's behaviour\n No Anon D/L: switches off file forwarding\n Gaming Mode: 25% standard traffic and TODO: reduced popups\n Low Traffic: 10% standard traffic and TODO: pauses all file-transfers")); setFocusPolicy(Qt::ClickFocus); } + void OpModeStatus::getOpMode() { int opMode = rsConfig->getOperatingMode(); @@ -60,26 +51,17 @@ void OpModeStatus::getOpMode() default: case RS_OPMODE_FULL: setCurrentIndex(0); - setProperty("opMode", "Full"); - break; + break; case RS_OPMODE_NOTURTLE: setCurrentIndex(1); - setProperty("opMode", "NoTurtle"); - break; + break; case RS_OPMODE_GAMING: setCurrentIndex(2); - setProperty("opMode", "Gaming"); - break; + break; case RS_OPMODE_MINIMAL: setCurrentIndex(3); - setProperty("opMode", "Minimal"); - break; + break; } - onUpdate = true; - style()->unpolish(this); - style()->polish(this); - update(); - onUpdate = false; } void OpModeStatus::setOpMode() @@ -87,65 +69,14 @@ void OpModeStatus::setOpMode() std::cerr << "OpModeStatus::setOpMode()"; std::cerr << std::endl; - int idx = currentIndex(); - QVariant var = itemData(idx); - uint32_t opMode = var.toUInt(); + int idx = currentIndex(); + QVariant var = itemData(idx); + uint32_t opMode = var.toUInt(); rsConfig->setOperatingMode(opMode); // reload to be safe. getOpMode(); - Settings->setValueToGroup("StatusBar", "OpMode", idx); } -QColor OpModeStatus::getOpMode_Full_Color() const -{ - return opMode_Full_Color; -} -void OpModeStatus::setOpMode_Full_Color( QColor c ) -{ - opMode_Full_Color = c; - setItemData(0, opMode_Full_Color, Qt::BackgroundRole); - if (!onUpdate) - getOpMode(); -} - -QColor OpModeStatus::getOpMode_NoTurtle_Color() const -{ - return opMode_NoTurtle_Color; -} - -void OpModeStatus::setOpMode_NoTurtle_Color( QColor c ) -{ - opMode_NoTurtle_Color = c; - setItemData(1, opMode_NoTurtle_Color, Qt::BackgroundRole); - if (!onUpdate) - getOpMode(); -} - -QColor OpModeStatus::getOpMode_Gaming_Color() const -{ - return opMode_Gaming_Color; -} - -void OpModeStatus::setOpMode_Gaming_Color( QColor c ) -{ - opMode_Gaming_Color = c; - setItemData(2, opMode_Gaming_Color, Qt::BackgroundRole); - if (!onUpdate) - getOpMode(); -} - -QColor OpModeStatus::getOpMode_Minimal_Color() const -{ - return opMode_Minimal_Color; -} - -void OpModeStatus::setOpMode_Minimal_Color( QColor c ) -{ - opMode_Minimal_Color = c; - setItemData(3, opMode_Minimal_Color, Qt::BackgroundRole); - if (!onUpdate) - getOpMode(); -} diff --git a/retroshare-gui/src/gui/statusbar/OpModeStatus.h b/retroshare-gui/src/gui/statusbar/OpModeStatus.h index 43156be1f..6e84aea3a 100644 --- a/retroshare-gui/src/gui/statusbar/OpModeStatus.h +++ b/retroshare-gui/src/gui/statusbar/OpModeStatus.h @@ -26,37 +26,16 @@ class OpModeStatus : public QComboBox { Q_OBJECT - Q_PROPERTY(QColor opMode_Full_Color READ getOpMode_Full_Color WRITE setOpMode_Full_Color DESIGNABLE true) - Q_PROPERTY(QColor opMode_NoTurtle_Color READ getOpMode_NoTurtle_Color WRITE setOpMode_NoTurtle_Color DESIGNABLE true) - Q_PROPERTY(QColor opMode_Gaming_Color READ getOpMode_Gaming_Color WRITE setOpMode_Gaming_Color DESIGNABLE true) - Q_PROPERTY(QColor opMode_Minimal_Color READ getOpMode_Minimal_Color WRITE setOpMode_Minimal_Color DESIGNABLE true) public: OpModeStatus(QWidget *parent = 0); - QColor getOpMode_Full_Color() const; - void setOpMode_Full_Color( QColor c ); - - QColor getOpMode_NoTurtle_Color() const; - void setOpMode_NoTurtle_Color( QColor c ); - - QColor getOpMode_Gaming_Color() const; - void setOpMode_Gaming_Color( QColor c ); - - QColor getOpMode_Minimal_Color() const; - void setOpMode_Minimal_Color( QColor c ); - private slots: - void setOpMode(); + void setOpMode(); private: void getOpMode(); - QColor opMode_Full_Color; - QColor opMode_NoTurtle_Color; - QColor opMode_Gaming_Color; - QColor opMode_Minimal_Color; - bool onUpdate; }; #endif diff --git a/retroshare-gui/src/qss/blacknight.qss b/retroshare-gui/src/qss/blacknight.qss index 4a454c54e..286183dfc 100644 --- a/retroshare-gui/src/qss/blacknight.qss +++ b/retroshare-gui/src/qss/blacknight.qss @@ -273,22 +273,4 @@ QTextEdit { color: white; } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #007000; - qproperty-opMode_NoTurtle_Color: #000070; - qproperty-opMode_Gaming_Color: #707000; - qproperty-opMode_Minimal_Color: #700000; -} -OpModeStatus[opMode="Full"] { - background: #007000; -} -OpModeStatus[opMode="NoTurtle"] { - background: #000070; -} -OpModeStatus[opMode="Gaming"] { - background: #707000; -} -OpModeStatus[opMode="Minimal"] { - background: #700000; -} + diff --git a/retroshare-gui/src/qss/blue.qss b/retroshare-gui/src/qss/blue.qss index 792a1dc4d..35e5bc7e7 100644 --- a/retroshare-gui/src/qss/blue.qss +++ b/retroshare-gui/src/qss/blue.qss @@ -173,22 +173,3 @@ QSplitter#splitter{ } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/groove.qss b/retroshare-gui/src/qss/groove.qss index e4e5a6e97..3071eccca 100644 --- a/retroshare-gui/src/qss/groove.qss +++ b/retroshare-gui/src/qss/groove.qss @@ -65,24 +65,3 @@ QTreeWidget::item:selected { /* when user selects item using mouse or keyboard * } -Q - -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/orangesurfer.qss b/retroshare-gui/src/qss/orangesurfer.qss index a178238b9..84ae1c4fd 100644 --- a/retroshare-gui/src/qss/orangesurfer.qss +++ b/retroshare-gui/src/qss/orangesurfer.qss @@ -206,22 +206,3 @@ QLabel#fromText{ } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/qdarkstyle.qss b/retroshare-gui/src/qss/qdarkstyle.qss index 74ad6abc8..f5fb9f1de 100644 --- a/retroshare-gui/src/qss/qdarkstyle.qss +++ b/retroshare-gui/src/qss/qdarkstyle.qss @@ -1058,22 +1058,3 @@ QStatusBar::item { border-radius: 3px; } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #007000; - qproperty-opMode_NoTurtle_Color: #000070; - qproperty-opMode_Gaming_Color: #707000; - qproperty-opMode_Minimal_Color: #700000; -} -OpModeStatus[opMode="Full"] { - background: #007000; -} -OpModeStatus[opMode="NoTurtle"] { - background: #000070; -} -OpModeStatus[opMode="Gaming"] { - background: #707000; -} -OpModeStatus[opMode="Minimal"] { - background: #700000; -} diff --git a/retroshare-gui/src/qss/qlive.qss b/retroshare-gui/src/qss/qlive.qss index ca1cbd0ea..b5e7a45a8 100644 --- a/retroshare-gui/src/qss/qlive.qss +++ b/retroshare-gui/src/qss/qlive.qss @@ -116,22 +116,3 @@ QStatusBar{ border-image: url(qss/qlive/qb.png); } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/redscorpion.qss b/retroshare-gui/src/qss/redscorpion.qss index 014535305..4946745ca 100644 --- a/retroshare-gui/src/qss/redscorpion.qss +++ b/retroshare-gui/src/qss/redscorpion.qss @@ -288,22 +288,3 @@ QLabel#threadTitle{ color: black; } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/silver.qss b/retroshare-gui/src/qss/silver.qss index ca061984f..3d8d30909 100644 --- a/retroshare-gui/src/qss/silver.qss +++ b/retroshare-gui/src/qss/silver.qss @@ -136,22 +136,3 @@ QLabel#fromText{ } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/silvergrey.qss b/retroshare-gui/src/qss/silvergrey.qss index e13908b40..cfaf959e8 100644 --- a/retroshare-gui/src/qss/silvergrey.qss +++ b/retroshare-gui/src/qss/silvergrey.qss @@ -163,22 +163,3 @@ QLabel#fromText{ } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/uus.qss b/retroshare-gui/src/qss/uus.qss index b452e65e1..3827ac94e 100644 --- a/retroshare-gui/src/qss/uus.qss +++ b/retroshare-gui/src/qss/uus.qss @@ -302,22 +302,3 @@ QStatusBar { } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/wx.qss b/retroshare-gui/src/qss/wx.qss index c836e61b8..b214c6766 100644 --- a/retroshare-gui/src/qss/wx.qss +++ b/retroshare-gui/src/qss/wx.qss @@ -86,22 +86,3 @@ QLabel#fromText{ } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/yaba.qss b/retroshare-gui/src/qss/yaba.qss index dd8f4877d..a9b1e80db 100644 --- a/retroshare-gui/src/qss/yaba.qss +++ b/retroshare-gui/src/qss/yaba.qss @@ -206,22 +206,3 @@ QToolBar#chattoolBar{ } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} diff --git a/retroshare-gui/src/qss/yeah.qss b/retroshare-gui/src/qss/yeah.qss index 9c7925660..e625c1867 100644 --- a/retroshare-gui/src/qss/yeah.qss +++ b/retroshare-gui/src/qss/yeah.qss @@ -169,22 +169,3 @@ QLabel#fromText{ } -/* OpModeStatus need to be at end to overload other values*/ -OpModeStatus { - qproperty-opMode_Full_Color: #CCFFCC; - qproperty-opMode_NoTurtle_Color: #CCCCFF; - qproperty-opMode_Gaming_Color: #FFFFCC; - qproperty-opMode_Minimal_Color: #FFCCCC; -} -OpModeStatus[opMode="Full"] { - background: #CCFFCC; -} -OpModeStatus[opMode="NoTurtle"] { - background: #CCCCFF; -} -OpModeStatus[opMode="Gaming"] { - background: #FFFFCC; -} -OpModeStatus[opMode="Minimal"] { - background: #FFCCCC; -} From 7ded128b3a50796e90ff48795d679a482e54938f Mon Sep 17 00:00:00 2001 From: thunder2 Date: Sat, 6 Feb 2016 19:18:22 +0100 Subject: [PATCH 21/23] Update rsversion.in --- build_scripts/Windows/make_installer.bat | 9 +-------- libretroshare/src/retroshare/rsversion.in | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/build_scripts/Windows/make_installer.bat b/build_scripts/Windows/make_installer.bat index 42b3776e9..556680da8 100644 --- a/build_scripts/Windows/make_installer.bat +++ b/build_scripts/Windows/make_installer.bat @@ -33,14 +33,7 @@ if errorlevel 1 goto exit if "%Revision%"=="" ( echo. - echo Version not found in - echo %VersionFile% - goto exit -) -if "%BuildAdd%"=="" ( - echo. - echo Version not found in - echo %VersionFile% + echo Version not found goto exit ) diff --git a/libretroshare/src/retroshare/rsversion.in b/libretroshare/src/retroshare/rsversion.in index cf3521ed2..96ab52c89 100644 --- a/libretroshare/src/retroshare/rsversion.in +++ b/libretroshare/src/retroshare/rsversion.in @@ -1,7 +1,7 @@ #define RS_MAJOR_VERSION 0 #define RS_MINOR_VERSION 6 #define RS_BUILD_NUMBER 0 -#define RS_BUILD_NUMBER_ADD "x" // <-- do we need this? +#define RS_BUILD_NUMBER_ADD "" // The revision number should be the 4 first bytes of the git revision hash, which is obtained using: // git log --pretty="%H" | head -1 | cut -c1-8 From 4033f35fa9c7d40b877f295fad356004fd2af930 Mon Sep 17 00:00:00 2001 From: defnax Date: Mon, 8 Feb 2016 21:34:45 +0100 Subject: [PATCH 22/23] update todo --- TODO.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TODO.txt b/TODO.txt index f2f829d91..2285edbdc 100644 --- a/TODO.txt +++ b/TODO.txt @@ -55,6 +55,7 @@ GXS VOIP H [ ] use proper video encoding. What we have now is decent for video, but sound should be prioritized. Experiments with QtAV seem to work nicely. Finish and integrate! + M [ ] Deactivate Voip Buttons, when Friend has no Voip plugin enabled. M [ ] Implement Voice for Video Chat M [ ] Improve Voice and Video Quality M [ ] Video Quality/Resolution Settings (High, Medium, Low) HD, HQ, SD ) @@ -70,6 +71,7 @@ VOIP Messages H [X] make the mail system re-send failed emails notified by the global router. This is hard because it needs a proper management of duplicate messages E [X] add flags to allow distant messaging from contact list only / everyone / noone / only signed ids. + M [ ] add Signature feature to rs messages Chat E [X] add flags to allow distant chat from contact list only / everyone / noone / only signed ids. From 3ebb8c6ce8674db21a458be137020db9d1f2e0ad Mon Sep 17 00:00:00 2001 From: Phenom Date: Fri, 12 Feb 2016 17:54:35 +0100 Subject: [PATCH 23/23] Fix GenCertDialog on Mac stay on. Only call processEvent() if hasPendingEvents(). If no events are available, this function will wait until more are available and return after processing newly available events. --- retroshare-gui/src/gui/GenCertDialog.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/retroshare-gui/src/gui/GenCertDialog.cpp b/retroshare-gui/src/gui/GenCertDialog.cpp index bf7ac2c14..ab96e434f 100644 --- a/retroshare-gui/src/gui/GenCertDialog.cpp +++ b/retroshare-gui/src/gui/GenCertDialog.cpp @@ -532,7 +532,9 @@ void GenCertDialog::genPerson() setCursor(Qt::WaitCursor) ; QCoreApplication::processEvents(); - while(QAbstractEventDispatcher::instance()->processEvents(QEventLoop::AllEvents)) ; + QAbstractEventDispatcher* ed = QAbstractEventDispatcher::instance(); + if (ed->hasPendingEvents()) + while(ed->processEvents(QEventLoop::AllEvents)); std::string email_str = "" ; RsAccounts::GeneratePGPCertificate(